diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-01-18 11:57:36 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2015-01-18 11:57:36 +0530 |
commit | b417e0b7531c3910db1335725cd520cca8dd9891 (patch) | |
tree | 36f0ee10750b91c9a691485ad38dd3565604304b /actionview | |
parent | dc7d7fd6f2a6ed2a1466f30e88493979c1d4131f (diff) | |
download | rails-b417e0b7531c3910db1335725cd520cca8dd9891.tar.gz rails-b417e0b7531c3910db1335725cd520cca8dd9891.tar.bz2 rails-b417e0b7531c3910db1335725cd520cca8dd9891.zip |
nodoc ActionView::ModelNaming module
- Its only used by ActionView internals and not supposed to be used
through public API.
Diffstat (limited to 'actionview')
-rw-r--r-- | actionview/lib/action_view/model_naming.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/model_naming.rb b/actionview/lib/action_view/model_naming.rb index d42e436b17..b6ed13424e 100644 --- a/actionview/lib/action_view/model_naming.rb +++ b/actionview/lib/action_view/model_naming.rb @@ -1,5 +1,5 @@ module ActionView - module ModelNaming + 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 |