couchrest_model/lib/couchrest/model/dirty.rb

40 lines
966 B
Ruby
Raw Normal View History

# encoding: utf-8
I18n.load_path << File.join(
File.dirname(__FILE__), "validations", "locale", "en.yml"
)
module CouchRest
module Model
# This applies to both Model::Base and Model::CastedModel
module Dirty
extend ActiveSupport::Concern
included do
include ActiveModel::Dirty
end
def couchrest_attribute_will_change!(attr)
return if attr.nil?
self.send("#{attr}_will_change!")
2011-03-01 12:36:42 +01:00
couchrest_parent_will_change!
end
def couchrest_parent_will_change!
@casted_by.couchrest_attribute_will_change!(casted_by_attribute) if @casted_by
end
private
# return the attribute name this object is referenced by in the parent
def casted_by_attribute
2011-03-01 12:36:42 +01:00
return @casted_by_attribute if @casted_by_attribute_set
attr = @casted_by.attributes
2011-03-01 12:36:42 +01:00
@casted_by_attribute = attr.keys.detect { |k| attr[k] == self }
end
end
end
end