1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_view.rb

93 lines
2.7 KiB
Ruby
Raw Normal View History

#--
2011-12-31 15:27:47 -05:00
# Copyright (c) 2004-2012 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.
#++
require 'active_support'
require 'active_support/rails'
require 'action_pack'
module ActionView
extend ActiveSupport::Autoload
2009-12-22 18:27:37 -05:00
eager_autoload do
autoload :AssetPaths
autoload :Base
2009-12-22 18:27:37 -05:00
autoload :Context
autoload :CompiledTemplates, "action_view/context"
2009-12-22 18:27:37 -05:00
autoload :Helpers
autoload :LookupContext
autoload :PathSet
autoload :RecordIdentifier
autoload :RoutingUrlFor
autoload :Template
autoload_under "renderer" do
2011-05-01 04:33:30 -04:00
autoload :Renderer
autoload :AbstractRenderer
autoload :PartialRenderer
autoload :TemplateRenderer
autoload :StreamingTemplateRenderer
end
autoload_at "action_view/template/resolver" do
autoload :Resolver
autoload :PathResolver
autoload :FileSystemResolver
2011-05-09 09:10:19 -04:00
autoload :OptimizedFileSystemResolver
autoload :FallbackFileSystemResolver
end
2009-12-22 18:27:37 -05:00
autoload_at "action_view/buffers" do
autoload :OutputBuffer
autoload :StreamingBuffer
end
autoload_at "action_view/flows" do
autoload :OutputFlow
autoload :StreamingFlow
end
autoload_at "action_view/template/error" do
autoload :MissingTemplate
autoload :ActionViewError
autoload :EncodingError
autoload :TemplateError
autoload :WrongEncodingError
end
end
2010-01-04 16:59:23 -05:00
autoload :TestCase
ENCODING_FLAG = '#.*coding[:=]\s*(\S+)[ \t]*'
def self.eager_load!
super
ActionView::Template.eager_load!
end
end
require 'active_support/core_ext/string/output_safety'
2012-05-10 19:48:23 -04:00
ActiveSupport.on_load(:i18n) do
I18n.load_path << "#{File.dirname(__FILE__)}/action_view/locale/en.yml"
end