# File lib/dm-core/resource.rb, line 615 def dirty_attributes dirty_attributes = {} original_attributes.each_key do |property| next unless property.respond_to?(:value) dirty_attributes[property] = property.dump(property.get!(self)) end dirty_attributes end