rails--rails/activerecord/lib/active_record.rb

102 lines
4.3 KiB
Ruby
Raw Normal View History

#--
2009-01-18 05:28:21 +00:00
# Copyright (c) 2004-2009 David Heinemeier Hansson
#
# 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.
#++
activesupport_path = "#{File.dirname(__FILE__)}/../../activesupport/lib"
$:.unshift(activesupport_path) if File.directory?(activesupport_path)
2009-05-02 22:16:12 +00:00
require 'active_support'
arel_path = "#{File.dirname(__FILE__)}/../../arel/lib"
$:.unshift(arel_path) if File.directory?(arel_path)
2009-04-23 16:54:00 +00:00
require 'arel'
begin
require 'active_model'
rescue LoadError
$:.unshift "#{File.dirname(__FILE__)}/../../activemodel/lib"
require 'active_model'
end
2008-11-24 17:14:24 +00:00
module ActiveRecord
2009-07-25 15:03:58 +00:00
# TODO: Review explicit loads to see if they will automatically be handled by the initializer.
2008-11-24 17:14:24 +00:00
def self.load_all!
[Base, DynamicFinderMatch, ConnectionAdapters::AbstractAdapter]
end
2008-12-10 19:01:04 +00:00
autoload :VERSION, 'active_record/version'
autoload :ActiveRecordError, 'active_record/base'
autoload :ConnectionNotEstablished, 'active_record/base'
2008-11-24 17:14:24 +00:00
autoload :Aggregations, 'active_record/aggregations'
autoload :AssociationPreload, 'active_record/association_preload'
autoload :Associations, 'active_record/associations'
autoload :AttributeMethods, 'active_record/attribute_methods'
autoload :AutosaveAssociation, 'active_record/autosave_association'
autoload :Relation, 'active_record/relation'
2008-11-24 17:14:24 +00:00
autoload :Base, 'active_record/base'
autoload :Batches, 'active_record/batches'
2008-11-24 17:14:24 +00:00
autoload :Calculations, 'active_record/calculations'
autoload :Callbacks, 'active_record/callbacks'
autoload :DynamicFinderMatch, 'active_record/dynamic_finder_match'
autoload :DynamicScopeMatch, 'active_record/dynamic_scope_match'
2008-11-24 17:14:24 +00:00
autoload :Migration, 'active_record/migration'
2008-11-24 18:30:04 +00:00
autoload :Migrator, 'active_record/migration'
2008-11-24 17:14:24 +00:00
autoload :NamedScope, 'active_record/named_scope'
autoload :NestedAttributes, 'active_record/nested_attributes'
autoload :Observer, 'active_record/observer'
2008-11-24 17:14:24 +00:00
autoload :QueryCache, 'active_record/query_cache'
autoload :Reflection, 'active_record/reflection'
autoload :Schema, 'active_record/schema'
autoload :SchemaDumper, 'active_record/schema_dumper'
autoload :Serialization, 'active_record/serialization'
2008-12-15 22:33:31 +00:00
autoload :SessionStore, 'active_record/session_store'
autoload :StateMachine, 'active_record/state_machine'
2008-11-24 17:14:24 +00:00
autoload :TestCase, 'active_record/test_case'
autoload :Timestamp, 'active_record/timestamp'
autoload :Transactions, 'active_record/transactions'
autoload :Validator, 'active_record/validator'
2008-11-24 17:14:24 +00:00
autoload :Validations, 'active_record/validations'
2009-07-24 05:25:27 +00:00
module AttributeMethods
autoload :BeforeTypeCast, 'active_record/attribute_methods/before_type_cast'
autoload :Dirty, 'active_record/attribute_methods/dirty'
2009-07-30 22:49:14 +00:00
autoload :PrimaryKey, 'active_record/attribute_methods/primary_key'
2009-07-24 05:25:27 +00:00
autoload :Query, 'active_record/attribute_methods/query'
autoload :Read, 'active_record/attribute_methods/read'
autoload :TimeZoneConversion, 'active_record/attribute_methods/time_zone_conversion'
autoload :Write, 'active_record/attribute_methods/write'
end
2008-11-24 17:14:24 +00:00
module Locking
autoload :Optimistic, 'active_record/locking/optimistic'
autoload :Pessimistic, 'active_record/locking/pessimistic'
end
2008-11-24 17:14:24 +00:00
module ConnectionAdapters
autoload :AbstractAdapter, 'active_record/connection_adapters/abstract_adapter'
end
end
2008-06-19 14:25:27 +00:00
Arel::Table.engine = Arel::Sql::Engine.new(ActiveRecord::Base)
I18n.load_path << File.dirname(__FILE__) + '/active_record/locale/en.yml'