2005-02-15 11:21:56 -05:00
|
|
|
#--
|
|
|
|
# Copyright (c) 2005 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.
|
|
|
|
#++
|
|
|
|
|
2007-10-10 19:01:41 -04:00
|
|
|
require 'active_support/vendor'
|
2007-10-06 21:07:00 -04:00
|
|
|
require 'active_support/basic_object'
|
2005-03-06 07:20:53 -05:00
|
|
|
require 'active_support/inflector'
|
2008-01-18 21:44:45 -05:00
|
|
|
require 'active_support/callbacks'
|
2005-03-06 07:20:53 -05:00
|
|
|
|
2005-02-15 11:21:56 -05:00
|
|
|
require 'active_support/core_ext'
|
2007-09-24 23:47:37 -04:00
|
|
|
|
|
|
|
require 'active_support/buffered_logger'
|
|
|
|
|
2008-01-03 16:05:12 -05:00
|
|
|
require 'active_support/gzip'
|
|
|
|
require 'active_support/cache'
|
|
|
|
|
2005-02-15 11:21:56 -05:00
|
|
|
require 'active_support/dependencies'
|
2006-07-26 20:10:06 -04:00
|
|
|
require 'active_support/deprecation'
|
2005-02-23 10:13:03 -05:00
|
|
|
|
2008-05-14 13:48:37 -04:00
|
|
|
require 'active_support/ordered_hash'
|
2005-09-30 03:07:44 -04:00
|
|
|
require 'active_support/ordered_options'
|
2005-12-15 15:03:23 -05:00
|
|
|
require 'active_support/option_merger'
|
2005-09-30 03:07:44 -04:00
|
|
|
|
2008-07-14 20:50:32 -04:00
|
|
|
require 'active_support/memoizable'
|
2008-06-04 16:06:32 -04:00
|
|
|
require 'active_support/string_inquirer'
|
2008-06-03 18:44:56 -04:00
|
|
|
|
2005-12-26 22:11:03 -05:00
|
|
|
require 'active_support/values/time_zone'
|
2007-01-15 01:54:50 -05:00
|
|
|
require 'active_support/duration'
|
2005-12-26 22:11:03 -05:00
|
|
|
|
2006-08-29 04:24:04 -04:00
|
|
|
require 'active_support/json'
|
2006-10-03 19:45:32 -04:00
|
|
|
|
|
|
|
require 'active_support/multibyte'
|
2007-05-01 17:02:37 -04:00
|
|
|
|
2007-12-18 16:14:07 -05:00
|
|
|
require 'active_support/base64'
|
2008-01-22 20:56:22 -05:00
|
|
|
|
|
|
|
require 'active_support/time_with_zone'
|
2008-06-21 05:27:19 -04:00
|
|
|
|
2008-08-27 06:42:08 -04:00
|
|
|
require 'active_support/secure_random'
|
|
|
|
|
2008-08-27 04:36:00 -04:00
|
|
|
I18n.load_translations File.dirname(__FILE__) + '/active_support/locale/en-US.yml'
|
2008-06-03 14:32:53 -04:00
|
|
|
|
|
|
|
Inflector = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Inflector', 'ActiveSupport::Inflector')
|
|
|
|
Dependencies = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Dependencies', 'ActiveSupport::Dependencies')
|
|
|
|
TimeZone = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('TimeZone', 'ActiveSupport::TimeZone')
|