aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/model_naming.rb
blob: e09ebd60df95bc77cc3a9e9020078d257ea674e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionView
  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)
      (record_or_class.is_a?(Class) ? record_or_class : convert_to_model(record_or_class).class).model_name
    end
  end
end