rails/actionview/lib/action_view/model_naming.rb
Prathamesh Sonpatki b417e0b753 nodoc ActionView::ModelNaming module
- Its only used by ActionView internals and not supposed to be used
  through public API.
2015-01-18 11:57:36 +05:30

13 lines
344 B
Ruby

module ActionView
module ModelNaming #:nodoc:
# 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