aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-05-23 23:23:27 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-05-23 23:23:27 +0530
commit8ae3ed3f6cd6ead9759522d9d7ef37aac5bda92d (patch)
tree88357f057b9724bb5bbcb7ffcb5834e6bc241cd4 /activesupport
parent2fdddcee6fbc9f588285d8e5670303ffb533f170 (diff)
downloadrails-8ae3ed3f6cd6ead9759522d9d7ef37aac5bda92d.tar.gz
rails-8ae3ed3f6cd6ead9759522d9d7ef37aac5bda92d.tar.bz2
rails-8ae3ed3f6cd6ead9759522d9d7ef37aac5bda92d.zip
[ci skip] Remove Duration#=== when we drop support for 2.0.0-p353
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/duration.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/duration.rb b/activesupport/lib/active_support/duration.rb
index 09eb732ef7..0ae641d05b 100644
--- a/activesupport/lib/active_support/duration.rb
+++ b/activesupport/lib/active_support/duration.rb
@@ -105,8 +105,7 @@ module ActiveSupport
# We define it as a workaround to Ruby 2.0.0-p353 bug.
# For more information, check rails/rails#13055.
- # It should be dropped once a new Ruby patch-level
- # release after 2.0.0-p353 happens.
+ # Remove it when we drop support for 2.0.0-p353.
def ===(other) #:nodoc:
value === other
end