Sha256: 80a5eebb6a21576746787be9ec57df99eb2e107dce9a7f4a942344e84d3e3bfa
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
module Draper module AutomaticDelegation extend ActiveSupport::Concern # Delegates missing instance methods to the source object. def method_missing(method, *args, &block) return super unless delegatable?(method) self.class.delegate method send(method, *args, &block) end # Checks if the decorator responds to an instance method, or is able to # proxy it to the source object. def respond_to_missing?(method, include_private = false) super || delegatable?(method) end # @private def delegatable?(method) source.respond_to?(method) end module ClassMethods # Proxies missing class methods to the source class. def method_missing(method, *args, &block) return super unless delegatable?(method) source_class.send(method, *args, &block) end # Checks if the decorator responds to a class method, or is able to proxy # it to the source class. def respond_to_missing?(method, include_private = false) super || delegatable?(method) end # @private def delegatable?(method) source_class? && source_class.respond_to?(method) end # @private # Avoids reloading the model class when ActiveSupport clears autoloaded # dependencies in development mode. def before_remove_const end end included do private :delegatable? private_class_method :delegatable? end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
draper-1.2.0 | lib/draper/automatic_delegation.rb |
jamesgolick-draper-1.1.1a | lib/draper/automatic_delegation.rb |