2005-02-15 16:21:56 +00:00
|
|
|
#--
|
2011-05-09 18:12:26 +00:00
|
|
|
# Copyright (c) 2005-2011 David Heinemeier Hansson
|
2005-02-15 16:21:56 +00: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.
|
|
|
|
#++
|
|
|
|
|
2011-05-23 11:02:06 +00:00
|
|
|
require 'securerandom'
|
|
|
|
|
2008-11-24 00:11:32 +00:00
|
|
|
module ActiveSupport
|
2009-05-21 00:11:41 +00:00
|
|
|
class << self
|
|
|
|
attr_accessor :load_all_hooks
|
|
|
|
def on_load_all(&hook) load_all_hooks << hook end
|
|
|
|
def load_all!; load_all_hooks.each { |hook| hook.call } end
|
|
|
|
end
|
|
|
|
self.load_all_hooks = []
|
|
|
|
|
|
|
|
on_load_all do
|
2011-05-23 11:02:06 +00:00
|
|
|
[Dependencies, Deprecation, Gzip, MessageVerifier, Multibyte]
|
2008-11-24 17:35:21 +00:00
|
|
|
end
|
2008-11-24 00:11:32 +00:00
|
|
|
end
|
|
|
|
|
2009-12-03 17:06:01 +00:00
|
|
|
require "active_support/dependencies/autoload"
|
2010-10-10 23:11:04 +00:00
|
|
|
require "active_support/version"
|
2011-12-20 02:41:37 +00:00
|
|
|
require "active_support/logger"
|
2009-12-03 17:06:01 +00:00
|
|
|
|
|
|
|
module ActiveSupport
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2011-12-22 08:35:22 +00:00
|
|
|
autoload :Concern
|
2010-06-20 11:26:42 +00:00
|
|
|
autoload :DescendantsTracker
|
|
|
|
autoload :FileUpdateChecker
|
2010-06-24 11:23:43 +00:00
|
|
|
autoload :LogSubscriber
|
|
|
|
autoload :Notifications
|
2010-06-20 11:26:42 +00:00
|
|
|
|
2009-12-22 23:27:37 +00:00
|
|
|
# TODO: Narrow this list down
|
|
|
|
eager_autoload do
|
|
|
|
autoload :BacktraceCleaner
|
|
|
|
autoload :Base64
|
|
|
|
autoload :BasicObject
|
|
|
|
autoload :Benchmarkable
|
|
|
|
autoload :Cache
|
|
|
|
autoload :Callbacks
|
|
|
|
autoload :Configurable
|
|
|
|
autoload :Deprecation
|
|
|
|
autoload :Gzip
|
|
|
|
autoload :Inflector
|
2010-03-07 14:24:30 +00:00
|
|
|
autoload :JSON
|
2009-12-22 23:27:37 +00:00
|
|
|
autoload :MessageEncryptor
|
|
|
|
autoload :MessageVerifier
|
|
|
|
autoload :Multibyte
|
|
|
|
autoload :OptionMerger
|
|
|
|
autoload :OrderedHash
|
|
|
|
autoload :OrderedOptions
|
|
|
|
autoload :Rescuable
|
|
|
|
autoload :StringInquirer
|
2011-10-19 17:59:33 +00:00
|
|
|
autoload :TaggedLogging
|
2009-12-22 23:27:37 +00:00
|
|
|
autoload :XmlMini
|
|
|
|
end
|
2010-01-04 22:22:39 +00:00
|
|
|
|
For performance reasons, you can no longer call html_safe! on Strings. Instead, all Strings are always not html_safe?. Instead, you can get a SafeBuffer from a String by calling #html_safe, which will SafeBuffer.new(self).
* Additionally, instead of doing concat("</form>".html_safe), you can do
safe_concat("</form>"), which will skip both the flag set, and the flag
check.
* For the first pass, I converted virtually all #html_safe!s to #html_safe,
and the tests pass. A further optimization would be to try to use
#safe_concat as much as possible, reducing the performance impact if
we know up front that a String is safe.
2010-02-01 03:17:42 +00:00
|
|
|
autoload :SafeBuffer, "active_support/core_ext/string/output_safety"
|
2010-01-04 22:22:39 +00:00
|
|
|
autoload :TestCase
|
2009-12-03 17:06:01 +00:00
|
|
|
end
|
2010-03-07 14:24:30 +00:00
|
|
|
|
|
|
|
autoload :I18n, "active_support/i18n"
|