2004-11-23 20:04:44 -05:00
|
|
|
#--
|
2014-12-31 02:34:14 -05:00
|
|
|
# Copyright (c) 2004-2015 David Heinemeier Hansson
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2009-10-14 22:15:33 -04:00
|
|
|
require 'active_support'
|
2012-08-02 12:07:20 -04:00
|
|
|
require 'active_support/rails'
|
2009-10-14 22:15:33 -04:00
|
|
|
require 'active_model'
|
2010-04-14 05:01:55 -04:00
|
|
|
require 'arel'
|
2009-10-14 22:05:06 -04:00
|
|
|
|
2010-10-10 19:11:04 -04:00
|
|
|
require 'active_record/version'
|
2014-06-22 17:38:55 -04:00
|
|
|
require 'active_record/attribute_set'
|
2010-10-10 19:11:04 -04:00
|
|
|
|
2008-11-24 12:14:24 -05:00
|
|
|
module ActiveRecord
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2014-06-07 15:46:22 -04:00
|
|
|
autoload :Attribute
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Base
|
|
|
|
autoload :Callbacks
|
|
|
|
autoload :Core
|
|
|
|
autoload :ConnectionHandling
|
2013-04-05 02:21:48 -04:00
|
|
|
autoload :CounterCache
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :DynamicMatchers
|
2013-11-02 15:01:31 -04:00
|
|
|
autoload :Enum
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Explain
|
|
|
|
autoload :Inheritance
|
|
|
|
autoload :Integration
|
2015-03-10 13:35:09 -04:00
|
|
|
autoload :LegacyYamlAdapter
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Migration
|
|
|
|
autoload :Migrator, 'active_record/migration'
|
|
|
|
autoload :ModelSchema
|
|
|
|
autoload :NestedAttributes
|
2013-11-05 07:44:16 -05:00
|
|
|
autoload :NoTouching
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Persistence
|
|
|
|
autoload :QueryCache
|
|
|
|
autoload :Querying
|
|
|
|
autoload :ReadonlyAttributes
|
|
|
|
autoload :Reflection
|
2013-04-09 16:29:36 -04:00
|
|
|
autoload :RuntimeRegistry
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Sanitization
|
|
|
|
autoload :Schema
|
|
|
|
autoload :SchemaDumper
|
|
|
|
autoload :SchemaMigration
|
|
|
|
autoload :Scoping
|
|
|
|
autoload :Serialization
|
2013-04-10 10:40:01 -04:00
|
|
|
autoload :StatementCache
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Store
|
2015-02-18 17:55:48 -05:00
|
|
|
autoload :Suppressor
|
2014-12-26 17:17:10 -05:00
|
|
|
autoload :TableMetadata
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Timestamp
|
|
|
|
autoload :Transactions
|
|
|
|
autoload :Translation
|
|
|
|
autoload :Validations
|
2014-12-28 17:24:10 -05:00
|
|
|
autoload :SecureToken
|
2012-08-02 20:43:26 -04:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
2010-03-07 09:24:30 -05:00
|
|
|
autoload :ActiveRecordError, 'active_record/errors'
|
|
|
|
autoload :ConnectionNotEstablished, 'active_record/errors'
|
2011-07-22 08:13:30 -04:00
|
|
|
autoload :ConnectionAdapters, 'active_record/connection_adapters/abstract_adapter'
|
2011-08-16 10:01:18 -04:00
|
|
|
|
2012-07-27 17:21:29 -04:00
|
|
|
autoload :Aggregations
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Associations
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :AttributeAssignment
|
2013-04-05 02:21:48 -04:00
|
|
|
autoload :AttributeMethods
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :AutosaveAssociation
|
2009-12-30 02:58:26 -05:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Relation
|
2013-04-25 16:37:44 -04:00
|
|
|
autoload :AssociationRelation
|
2012-01-30 15:36:47 -05:00
|
|
|
autoload :NullRelation
|
2009-12-30 02:58:26 -05:00
|
|
|
|
|
|
|
autoload_under 'relation' do
|
|
|
|
autoload :QueryMethods
|
|
|
|
autoload :FinderMethods
|
2010-01-19 11:45:35 -05:00
|
|
|
autoload :Calculations
|
2009-12-31 16:44:19 -05:00
|
|
|
autoload :PredicateBuilder
|
2010-01-03 08:27:57 -05:00
|
|
|
autoload :SpawnMethods
|
2010-02-12 11:53:51 -05:00
|
|
|
autoload :Batches
|
2011-12-15 14:46:30 -05:00
|
|
|
autoload :Delegation
|
2009-12-30 02:58:26 -05:00
|
|
|
end
|
|
|
|
|
2011-08-16 10:01:18 -04:00
|
|
|
autoload :Result
|
2009-12-22 18:27:37 -05:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-02-01 12:34:21 -05:00
|
|
|
module Coders
|
|
|
|
autoload :YAMLColumn, 'active_record/coders/yaml_column'
|
2014-07-15 11:43:18 -04:00
|
|
|
autoload :JSON, 'active_record/coders/json'
|
2011-02-01 12:34:21 -05:00
|
|
|
end
|
|
|
|
|
2009-07-24 01:25:27 -04:00
|
|
|
module AttributeMethods
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
|
|
|
autoload :BeforeTypeCast
|
|
|
|
autoload :Dirty
|
|
|
|
autoload :PrimaryKey
|
|
|
|
autoload :Query
|
|
|
|
autoload :Read
|
|
|
|
autoload :TimeZoneConversion
|
|
|
|
autoload :Write
|
2011-11-30 10:52:09 -05:00
|
|
|
autoload :Serialization
|
2009-12-22 18:27:37 -05:00
|
|
|
end
|
2009-07-24 01:25:27 -04:00
|
|
|
end
|
|
|
|
|
2008-11-24 12:14:24 -05:00
|
|
|
module Locking
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
2009-12-16 12:56:51 -05:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
|
|
|
autoload :Optimistic
|
|
|
|
autoload :Pessimistic
|
|
|
|
end
|
2008-11-24 12:14:24 -05:00
|
|
|
end
|
2005-05-02 03:04:20 -04:00
|
|
|
|
2008-11-24 12:14:24 -05:00
|
|
|
module ConnectionAdapters
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
2009-12-16 12:56:51 -05:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
|
|
|
autoload :AbstractAdapter
|
2010-03-07 09:24:30 -05:00
|
|
|
autoload :ConnectionManagement, "active_record/connection_adapters/abstract/connection_pool"
|
2009-12-22 18:27:37 -05:00
|
|
|
end
|
2008-11-24 12:14:24 -05:00
|
|
|
end
|
2010-01-04 17:50:01 -05:00
|
|
|
|
2011-12-15 15:35:04 -05:00
|
|
|
module Scoping
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
eager_autoload do
|
|
|
|
autoload :Named
|
|
|
|
autoload :Default
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-16 19:44:29 -04:00
|
|
|
module Tasks
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
autoload :DatabaseTasks
|
2012-06-17 07:43:24 -04:00
|
|
|
autoload :SQLiteDatabaseTasks, 'active_record/tasks/sqlite_database_tasks'
|
|
|
|
autoload :MySQLDatabaseTasks, 'active_record/tasks/mysql_database_tasks'
|
2012-06-17 08:03:32 -04:00
|
|
|
autoload :PostgreSQLDatabaseTasks,
|
|
|
|
'active_record/tasks/postgresql_database_tasks'
|
2012-06-16 19:44:29 -04:00
|
|
|
end
|
|
|
|
|
2010-01-04 17:50:01 -05:00
|
|
|
autoload :TestFixtures, 'active_record/fixtures'
|
2012-08-01 14:54:22 -04:00
|
|
|
|
|
|
|
def self.eager_load!
|
|
|
|
super
|
|
|
|
ActiveRecord::Locking.eager_load!
|
|
|
|
ActiveRecord::Scoping.eager_load!
|
|
|
|
ActiveRecord::Associations.eager_load!
|
|
|
|
ActiveRecord::AttributeMethods.eager_load!
|
|
|
|
ActiveRecord::ConnectionAdapters.eager_load!
|
|
|
|
end
|
2010-03-29 20:08:08 -04:00
|
|
|
end
|
2010-03-07 09:24:30 -05:00
|
|
|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-09-30 19:28:12 -04:00
|
|
|
Arel::Table.engine = self
|
2008-11-24 12:14:24 -05:00
|
|
|
end
|
2008-06-19 10:25:27 -04:00
|
|
|
|
2012-05-10 19:48:23 -04:00
|
|
|
ActiveSupport.on_load(:i18n) do
|
|
|
|
I18n.load_path << File.dirname(__FILE__) + '/active_record/locale/en.yml'
|
|
|
|
end
|