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

Add missing requires inside AV

This commit is contained in:
Łukasz Strzałkowski 2013-07-30 02:24:31 +02:00
parent d7d3e34172
commit 3f2ac795b8
4 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,10 @@ require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/ordered_options'
require 'action_view/log_subscriber'
require 'action_view/helpers'
require 'action_view/context'
require 'action_view/template'
require 'action_view/lookup_context'
module ActionView #:nodoc:
# = Action View Base

View file

@ -1,3 +1,5 @@
require 'action_view/record_identifier'
module ActionView
# = Action View Record Tag Helpers
module Helpers

View file

@ -1,6 +1,6 @@
require "action_view/rendering"
require "active_support/core_ext/module/remove_method"
module ActionView
# Layouts reverse the common pattern of including shared headers and footers in many templates to isolate changes in
# repeated setups. The inclusion pattern has pages that look like this:

View file

@ -1,3 +1,4 @@
require "action_view/view_paths"
module ActionView
# This is a class to fix I18n global state. Whenever you provide I18n.locale during a request,