module ActiveRecord::Core::ClassMethods
Public Instance Methods
# File activerecord/lib/active_record/core.rb, line 228 def ===(object) object.is_a?(self) end
Overwrite the default class equality method to provide support for association proxies.
# File activerecord/lib/active_record/core.rb, line 112 def allocate define_attribute_methods super end
 Calls superclass method 
  # File activerecord/lib/active_record/core.rb, line 203
def generated_association_methods
  @generated_association_methods ||= begin
    mod = const_set(:GeneratedAssociationMethods, Module.new)
    include mod
    mod
  end
end # File activerecord/lib/active_record/core.rb, line 212
def inspect
  if self == Base
    super
  elsif abstract_class?
    "#{super}(abstract)"
  elsif !connected?
    "#{super} (call '#{super}.connection' to establish a connection)"
  elsif table_exists?
    attr_list = columns.map { |c| "#{c.name}: #{c.type}" } * ', '
    "#{super}(#{attr_list})"
  else
    "#{super}(Table doesn't exist)"
  end
end Returns a string like 'Post(id:integer, title:string, body:text)'
 Calls superclass method 
  
    © 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.