2004-11-23 20:04:44 -05:00
|
|
|
#--
|
2011-12-31 15:27:47 -05:00
|
|
|
# Copyright (c) 2004-2012 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'
|
2010-04-14 05:30:02 -04:00
|
|
|
require 'active_support/i18n'
|
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'
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Aggregations
|
|
|
|
autoload :Associations
|
|
|
|
autoload :AttributeMethods
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :AttributeAssignment
|
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
|
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-02 07:32:18 -05:00
|
|
|
autoload :Explain
|
2011-12-15 14:46:30 -05:00
|
|
|
autoload :Delegation
|
2009-12-30 02:58:26 -05:00
|
|
|
end
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Base
|
|
|
|
autoload :Callbacks
|
2011-12-18 16:42:09 -05:00
|
|
|
autoload :Core
|
2010-05-08 19:06:05 -04:00
|
|
|
autoload :CounterCache
|
2011-12-28 13:07:08 -05:00
|
|
|
autoload :ConnectionHandling
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :DynamicMatchers
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :DynamicFinderMatch
|
|
|
|
autoload :DynamicScopeMatch
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Explain
|
|
|
|
autoload :IdentityMap
|
|
|
|
autoload :Inheritance
|
|
|
|
autoload :Integration
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Migration
|
|
|
|
autoload :Migrator, 'active_record/migration'
|
2011-12-18 16:42:09 -05:00
|
|
|
autoload :Model
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :ModelSchema
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :NestedAttributes
|
|
|
|
autoload :Observer
|
2010-05-08 19:06:05 -04:00
|
|
|
autoload :Persistence
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :QueryCache
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Querying
|
|
|
|
autoload :ReadonlyAttributes
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Reflection
|
2011-08-16 10:01:18 -04:00
|
|
|
autoload :Result
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Sanitization
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Schema
|
|
|
|
autoload :SchemaDumper
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Scoping
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Serialization
|
|
|
|
autoload :SessionStore
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Store
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Timestamp
|
|
|
|
autoload :Transactions
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :Translation
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Validations
|
|
|
|
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'
|
|
|
|
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
|
|
|
|
|
2010-01-04 17:50:01 -05:00
|
|
|
autoload :TestCase
|
|
|
|
autoload :TestFixtures, 'active_record/fixtures'
|
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
|
|
|
|
2010-04-14 05:01:55 -04:00
|
|
|
I18n.load_path << File.dirname(__FILE__) + '/active_record/locale/en.yml'
|