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:
parent
d7d3e34172
commit
3f2ac795b8
4 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
require 'action_view/record_identifier'
|
||||
|
||||
module ActionView
|
||||
# = Action View Record Tag Helpers
|
||||
module Helpers
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue