aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/model_naming.rb
diff options
context:
space:
mode:
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