Module: ActiveRecord::Core::ClassMethods

Defined in:
lib/active_record/core.rb

Instance Method Summary collapse

Instance Method Details

#===(object) ⇒ Object

Overwrite the default class equality method to provide support for association proxies.



125
126
127
# File 'lib/active_record/core.rb', line 125

def ===(object)
  object.is_a?(self)
end

#arel_engineObject

Returns the Arel engine.



139
140
141
142
143
144
145
146
147
# File 'lib/active_record/core.rb', line 139

def arel_engine
  @arel_engine ||= begin
    if Base == self || connection_handler.retrieve_connection_pool(self)
      self
    else
      superclass.arel_engine
    end
  end
end

#arel_tableObject

Returns an instance of Arel::Table loaded with the current table name.

class Post < ActiveRecord::Base
  scope :published_and_commented, -> { published.and(self.arel_table[:comments_count].gt(0)) }
end


134
135
136
# File 'lib/active_record/core.rb', line 134

def arel_table
  @arel_table ||= Arel::Table.new(table_name, arel_engine)
end

#generated_feature_methodsObject



100
101
102
103
104
105
106
# File 'lib/active_record/core.rb', line 100

def generated_feature_methods
  @generated_feature_methods ||= begin
    mod = const_set(:GeneratedFeatureMethods, Module.new)
    include mod
    mod
  end
end

#initialize_generated_modulesObject



94
95
96
97
98
# File 'lib/active_record/core.rb', line 94

def initialize_generated_modules
  super

  generated_feature_methods
end

#inspectObject

Returns a string like ‘Post(id:integer, title:string, body:text)’



109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'lib/active_record/core.rb', line 109

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