Sha256: d5230ed45d3e9fc507872833872a757b4278cb063e2b4f5a2e07173a15734d31
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
module Valle class Hooks class << self ## # Runs all the hooks, required for this gem # def init ActiveSupport.on_load(:active_record) do Valle::Hooks.extend_inherited_method if Valle.enabled? end end ## # Extends the functionality of inherited method # def extend_inherited_method ActiveRecord::Base.class_eval do class << self def inherited_with_valle_validators(subclass) inherited_without_valle_validators(subclass) if Valle::Hooks.can_add_validators?(subclass, self) Valle::Hooks.add_validators(subclass) end end alias_method_chain :inherited, :valle_validators end end end ## # Adds validators to subclass # # @param [ActiveRecord::Base] subclass the AR::Base child class # @note ActiveRecord::Validations should be defined at this point # def add_validators(subclass) Valle::Manager.add_validators(subclass) end ## # Check whenether we should add validators to subclass # # @param [ActiveRecord::Base] subclass the AR::Base child class # @param [ActiveRecord::Base] inherited_from_class the AR::Base parent class # @note ActiveRecord::Validations should be defined at this point # def can_add_validators?(subclass, inherited_from_class) Valle.can_process_model?(subclass.model_name) && inherited_from_class == ActiveRecord::Base && subclass.table_exists? && (defined?(ActiveRecord::SchemaMigration) && subclass != ActiveRecord::SchemaMigration) # skip AR::SchemaMigration (AR >= 4.X) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
valle-0.2.2 | lib/valle/hooks.rb |