2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
#--
|
2018-01-01 02:13:14 -05:00
|
|
|
# Copyright (c) 2004-2018 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.
|
|
|
|
#++
|
|
|
|
|
2016-08-06 12:24:04 -04:00
|
|
|
require "active_support"
|
|
|
|
require "active_support/rails"
|
|
|
|
require "active_model"
|
|
|
|
require "arel"
|
2017-10-19 12:45:07 -04:00
|
|
|
require "yaml"
|
2009-10-14 22:05:06 -04:00
|
|
|
|
2017-10-21 09:17:03 -04:00
|
|
|
require "active_record/version"
|
2017-10-19 12:45:07 -04:00
|
|
|
require "active_model/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
|
|
|
|
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
|
2015-08-14 12:31:33 -04:00
|
|
|
autoload :InternalMetadata
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Explain
|
|
|
|
autoload :Inheritance
|
|
|
|
autoload :Integration
|
|
|
|
autoload :Migration
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :Migrator, "active_record/migration"
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :ModelSchema
|
|
|
|
autoload :NestedAttributes
|
2013-11-05 07:44:16 -05:00
|
|
|
autoload :NoTouching
|
2015-03-13 13:14:55 -04:00
|
|
|
autoload :TouchLater
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Persistence
|
|
|
|
autoload :QueryCache
|
|
|
|
autoload :Querying
|
2015-07-14 18:47:16 -04:00
|
|
|
autoload :CollectionCacheKey
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :ReadonlyAttributes
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :RecordInvalid, "active_record/validations"
|
2012-08-02 20:43:26 -04:00
|
|
|
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
|
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
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :ActiveRecordError, "active_record/errors"
|
|
|
|
autoload :ConnectionNotEstablished, "active_record/errors"
|
|
|
|
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
|
|
|
|
2017-01-31 00:19:51 -05:00
|
|
|
autoload :LegacyYamlAdapter
|
|
|
|
|
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
|
|
|
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload_under "relation" do
|
2009-12-30 02:58:26 -05:00
|
|
|
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
|
2016-08-15 17:12:08 -04:00
|
|
|
autoload :TableMetadata
|
2017-11-10 16:43:54 -05:00
|
|
|
autoload :Type
|
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
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :YAMLColumn, "active_record/coders/yaml_column"
|
|
|
|
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
|
|
|
|
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
|
2016-08-06 12:24:04 -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,
|
2016-08-06 12:24:04 -04:00
|
|
|
"active_record/tasks/postgresql_database_tasks"
|
2012-06-16 19:44:29 -04:00
|
|
|
end
|
|
|
|
|
2017-12-20 16:59:41 -05:00
|
|
|
autoload :TestDatabases, "active_record/test_databases"
|
2016-08-06 12:24:04 -04: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
|
2017-05-15 10:17:28 -04:00
|
|
|
I18n.load_path << File.expand_path("active_record/locale/en.yml", __dir__)
|
2012-05-10 19:48:23 -04:00
|
|
|
end
|
2017-10-19 12:45:07 -04:00
|
|
|
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::AttributeSet"] = "ActiveModel::AttributeSet"
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::Attribute::FromDatabase"] = "ActiveModel::Attribute::FromDatabase"
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::LazyAttributeHash"] = "ActiveModel::LazyAttributeHash"
|