aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-10-09 08:36:36 -0700
committerXavier Noria <fxn@hashref.com>2012-10-09 08:36:36 -0700
commit2296e74973611c46d0c3a95ec8ef916bb28a31f5 (patch)
treee315ce9a38084d41d9eb081876b285aa4c2c8586 /activesupport/lib/active_support
parent8815de7b427196f00bd9f3406377928c2c269e22 (diff)
parentae9b3d7cecd77b9ace38671b183e1a360bf632b6 (diff)
downloadrails-2296e74973611c46d0c3a95ec8ef916bb28a31f5.tar.gz
rails-2296e74973611c46d0c3a95ec8ef916bb28a31f5.tar.bz2
rails-2296e74973611c46d0c3a95ec8ef916bb28a31f5.zip
Merge pull request #7817 from NARKOZ/object-conversions
remove unnecessary object/conversions file
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/object.rb7
-rw-r--r--activesupport/lib/active_support/core_ext/object/conversions.rb4
2 files changed, 2 insertions, 9 deletions
diff --git a/activesupport/lib/active_support/core_ext/object.rb b/activesupport/lib/active_support/core_ext/object.rb
index ec2157221f..ab01d7787a 100644
--- a/activesupport/lib/active_support/core_ext/object.rb
+++ b/activesupport/lib/active_support/core_ext/object.rb
@@ -1,14 +1,11 @@
require 'active_support/core_ext/object/acts_like'
require 'active_support/core_ext/object/blank'
-require 'active_support/core_ext/object/duplicable'
require 'active_support/core_ext/object/deep_dup'
-require 'active_support/core_ext/object/try'
+require 'active_support/core_ext/object/duplicable'
require 'active_support/core_ext/object/inclusion'
-
-require 'active_support/core_ext/object/conversions'
require 'active_support/core_ext/object/instance_variables'
-
require 'active_support/core_ext/object/to_json'
require 'active_support/core_ext/object/to_param'
require 'active_support/core_ext/object/to_query'
+require 'active_support/core_ext/object/try'
require 'active_support/core_ext/object/with_options'
diff --git a/activesupport/lib/active_support/core_ext/object/conversions.rb b/activesupport/lib/active_support/core_ext/object/conversions.rb
deleted file mode 100644
index 540f7aadb0..0000000000
--- a/activesupport/lib/active_support/core_ext/object/conversions.rb
+++ /dev/null
@@ -1,4 +0,0 @@
-require 'active_support/core_ext/object/to_param'
-require 'active_support/core_ext/object/to_query'
-require 'active_support/core_ext/array/conversions'
-require 'active_support/core_ext/hash/conversions'