aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/model_naming.rb
diff options
context:
space:
mode:
authorclaudiob <claudiob@gmail.com>2014-12-19 12:49:50 -0800
committerclaudiob <claudiob@gmail.com>2014-12-25 00:30:46 +0100
commit4761d81923fd9f5a39fb1fa051cbbad2b52c9615 (patch)
treebc3808f5ec75de8af06e660f24b885747e2c6847 /actionpack/lib/action_controller/model_naming.rb
parenta2059068c02c25e61cc7d5701b0bbd2913e4012f (diff)
downloadrails-4761d81923fd9f5a39fb1fa051cbbad2b52c9615.tar.gz
rails-4761d81923fd9f5a39fb1fa051cbbad2b52c9615.tar.bz2
rails-4761d81923fd9f5a39fb1fa051cbbad2b52c9615.zip
Remove ActionController::ModelNaming
The methods in these modules are not used anywhere. They used to be invoked in polymorphic_routes.rb but their usage was removed in e821045. What is your opinion about removing these methods? They do belong to the public API, but in reality their code has already been duplicated to ActionView::ModelNaming, since they are used by methods like `dom_id` and `dom_class` to associated records with DOM elements (in ActionView). Please tell me if you think that removing this module is a good idea and, in that case, if the PR is okay as it is, or you'd rather start by showing a deprecation message, and remove the module in Rails 5.1.
Diffstat (limited to 'actionpack/lib/action_controller/model_naming.rb')
-rw-r--r--actionpack/lib/action_controller/model_naming.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/actionpack/lib/action_controller/model_naming.rb b/actionpack/lib/action_controller/model_naming.rb
deleted file mode 100644
index 2b33f67263..0000000000
--- a/actionpack/lib/action_controller/model_naming.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-module ActionController
- module ModelNaming
- # Converts the given object to an ActiveModel compliant one.
- def convert_to_model(object)
- object.respond_to?(:to_model) ? object.to_model : object
- end
-
- def model_name_from_record_or_class(record_or_class)
- convert_to_model(record_or_class).model_name
- end
- end
-end