diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2016-04-02 10:02:59 -0400 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2016-04-02 10:02:59 -0400 |
commit | aa2cafbad6f9de01086a993af6cfc0ddd34ec1cd (patch) | |
tree | 45c2283247cd9bf978c1c373646dac4cad841c69 /activesupport/lib | |
parent | 442207387e626d69154f942651c5fbd8d573f2c6 (diff) | |
parent | e0deec2e68c7db74a9c8ed25d8e7eb178d30e6ca (diff) | |
download | rails-aa2cafbad6f9de01086a993af6cfc0ddd34ec1cd.tar.gz rails-aa2cafbad6f9de01086a993af6cfc0ddd34ec1cd.tar.bz2 rails-aa2cafbad6f9de01086a993af6cfc0ddd34ec1cd.zip |
Merge pull request #24398 from yui-knk/remove_not_need_include
Remove not needed including
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/date_time.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/date_time/zones.rb | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time.rb b/activesupport/lib/active_support/core_ext/date_time.rb index bcb228b09a..5450533935 100644 --- a/activesupport/lib/active_support/core_ext/date_time.rb +++ b/activesupport/lib/active_support/core_ext/date_time.rb @@ -2,4 +2,3 @@ require 'active_support/core_ext/date_time/acts_like' require 'active_support/core_ext/date_time/blank' require 'active_support/core_ext/date_time/calculations' require 'active_support/core_ext/date_time/conversions' -require 'active_support/core_ext/date_time/zones' diff --git a/activesupport/lib/active_support/core_ext/date_time/zones.rb b/activesupport/lib/active_support/core_ext/date_time/zones.rb deleted file mode 100644 index c39f358395..0000000000 --- a/activesupport/lib/active_support/core_ext/date_time/zones.rb +++ /dev/null @@ -1,6 +0,0 @@ -require 'date' -require 'active_support/core_ext/date_and_time/zones' - -class DateTime - include DateAndTime::Zones -end |