module ActionController::ModelNaming
Public Instance Methods
convert_to_model(object)
click to toggle source
Converts the given object to an ActiveModel compliant one.
# File lib/action_controller/model_naming.rb, line 4 def convert_to_model(object) object.respond_to?(:to_model) ? object.to_model : object end
model_name_from_record_or_class(record_or_class)
click to toggle source
# File lib/action_controller/model_naming.rb, line 8 def model_name_from_record_or_class(record_or_class) convert_to_model(record_or_class).model_name end