diff options
author | Eugene Kenny <elkenny@gmail.com> | 2017-04-28 10:18:55 -0700 |
---|---|---|
committer | Eugene Kenny <elkenny@gmail.com> | 2017-04-28 10:18:55 -0700 |
commit | 001fc80d8784670277af3b9dd3d22f16cbf965f9 (patch) | |
tree | 06446798b249f23ef9f9eb9d61594f630d3eaef9 | |
parent | a9e5457d8cdd1a67a7c6f34a433a9e18057b4222 (diff) | |
download | rails-001fc80d8784670277af3b9dd3d22f16cbf965f9.tar.gz rails-001fc80d8784670277af3b9dd3d22f16cbf965f9.tar.bz2 rails-001fc80d8784670277af3b9dd3d22f16cbf965f9.zip |
Add missing require for `remove_possible_method`
https://github.com/rails/rails/commit/505537082849d912e8e29819655b80a573e93c0c
added a call to `remove_possible_method`, but didn't require the file
that defines it.
-rw-r--r-- | activesupport/lib/active_support/core_ext/date_time/compatibility.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/compatibility.rb b/activesupport/lib/active_support/core_ext/date_time/compatibility.rb index eb8b8b2c65..870391aeaa 100644 --- a/activesupport/lib/active_support/core_ext/date_time/compatibility.rb +++ b/activesupport/lib/active_support/core_ext/date_time/compatibility.rb @@ -1,4 +1,5 @@ require "active_support/core_ext/date_and_time/compatibility" +require "active_support/core_ext/module/remove_method" class DateTime include DateAndTime::Compatibility |