diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2012-12-19 22:32:59 +0000 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2012-12-19 22:32:59 +0000 |
commit | f0129da38572e5cc5b633b7b4cc003808c56ba30 (patch) | |
tree | 9fb29bbd184387efbb6f8c24645bdc450c377092 | |
parent | dc0542f8099067476370949b39e726ec4e4ae4fc (diff) | |
download | rails-f0129da38572e5cc5b633b7b4cc003808c56ba30.tar.gz rails-f0129da38572e5cc5b633b7b4cc003808c56ba30.tar.bz2 rails-f0129da38572e5cc5b633b7b4cc003808c56ba30.zip |
Remove the actual extension file as well [ci skip]
-rw-r--r-- | actionpack/lib/action_dispatch/journey/core-ext/hash.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/actionpack/lib/action_dispatch/journey/core-ext/hash.rb b/actionpack/lib/action_dispatch/journey/core-ext/hash.rb deleted file mode 100644 index fad5cdaa63..0000000000 --- a/actionpack/lib/action_dispatch/journey/core-ext/hash.rb +++ /dev/null @@ -1,11 +0,0 @@ -# :stopdoc: -if RUBY_VERSION < '1.9' -class Hash - def keep_if - each do |k,v| - delete(k) unless yield(k,v) - end - end -end -end -# :startdoc: |