method

method_defined?

method_defined?(method, inherit = true)
private

No documentation available.

# File activerecord/lib/active_record/autosave_association.rb, line 161
              def method_defined?(method, inherit = true)
                if inherit
                  super(method)
                else
                  instance_methods(false).include?(method.to_sym)
                end
              end