aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/array
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-05-06 11:12:54 -0700
committerPiotr Sarnacki <drogus@gmail.com>2012-05-06 11:13:15 -0700
commit98553a5574a37f96b90acb8dcfa64b4c15a93de4 (patch)
tree35376bda7598367b037df9abdece206e1bdf8d82 /activesupport/lib/active_support/core_ext/array
parent040392860886d9362b33c6c8ef99113a99dd18cf (diff)
downloadrails-98553a5574a37f96b90acb8dcfa64b4c15a93de4.tar.gz
rails-98553a5574a37f96b90acb8dcfa64b4c15a93de4.tar.bz2
rails-98553a5574a37f96b90acb8dcfa64b4c15a93de4.zip
Keep all methods in object/deep_dup
Diffstat (limited to 'activesupport/lib/active_support/core_ext/array')
-rw-r--r--activesupport/lib/active_support/core_ext/array/deep_dup.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/lib/active_support/core_ext/array/deep_dup.rb b/activesupport/lib/active_support/core_ext/array/deep_dup.rb
deleted file mode 100644
index 82f9805236..0000000000
--- a/activesupport/lib/active_support/core_ext/array/deep_dup.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-class Array
- # Returns a deep copy of array.
- def deep_dup
- map { |it| it.deep_dup }
- end
-end