aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/ruby
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-11-09 21:23:19 +0100
committerXavier Noria <fxn@hashref.com>2009-11-09 22:16:51 +0100
commitf8e713f488bba264ba73251b56ad56385b8ed824 (patch)
tree6896e592230e2ad54daf1ff4115868d494638687 /activesupport/lib/active_support/ruby
parent1979e9c8553f4d7905822fdcc99e52d179e78c3c (diff)
downloadrails-f8e713f488bba264ba73251b56ad56385b8ed824.tar.gz
rails-f8e713f488bba264ba73251b56ad56385b8ed824.tar.bz2
rails-f8e713f488bba264ba73251b56ad56385b8ed824.zip
Object#tap is not needed for Ruby >= 1.8.7
Diffstat (limited to 'activesupport/lib/active_support/ruby')
-rw-r--r--activesupport/lib/active_support/ruby/shim.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/ruby/shim.rb b/activesupport/lib/active_support/ruby/shim.rb
index 43e7ffc938..1f47c04826 100644
--- a/activesupport/lib/active_support/ruby/shim.rb
+++ b/activesupport/lib/active_support/ruby/shim.rb
@@ -5,7 +5,6 @@
# DateTime to_date, to_datetime, xmlschema
# Enumerable group_by, each_with_object, none?
# Integer even?, odd?
-# Object tap
# Process Process.daemon
# REXML security fix
# String ord
@@ -15,7 +14,6 @@ require 'active_support/core_ext/date/calculations'
require 'active_support/core_ext/date_time/conversions'
require 'active_support/core_ext/enumerable'
require 'active_support/core_ext/integer/even_odd'
-require 'active_support/core_ext/object/tap'
require 'active_support/core_ext/process/daemon'
require 'active_support/core_ext/string/conversions'
require 'active_support/core_ext/rexml'