aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-12-19 22:32:59 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2012-12-19 22:32:59 +0000
commitf0129da38572e5cc5b633b7b4cc003808c56ba30 (patch)
tree9fb29bbd184387efbb6f8c24645bdc450c377092
parentdc0542f8099067476370949b39e726ec4e4ae4fc (diff)
downloadrails-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.rb11
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: