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

Remove require 'active_support' from individual modules

Let users require `active_support` before loading any ActiveSupport modules
http://guides.rubyonrails.org/active_support_core_extensions.html
This commit is contained in:
deeeki 2014-05-27 11:08:10 +09:00
parent 0bdfb4d166
commit 1686c9a5f6
3 changed files with 0 additions and 4 deletions

View file

@ -1,4 +1,3 @@
require "active_support"
require "active_support/file_update_checker"
require "active_support/core_ext/array/wrap"

View file

@ -1,4 +1,3 @@
require "active_support"
require "active_support/i18n_railtie"
module ActiveSupport

View file

@ -1,5 +1,3 @@
require 'active_support'
module ActiveSupport
autoload :Duration, 'active_support/duration'
autoload :TimeWithZone, 'active_support/time_with_zone'