aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2015-01-18 01:54:07 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2015-01-18 01:54:07 -0500
commit86cb1227d52f8f954a4f8f2208899eb02fb76283 (patch)
tree36f0ee10750b91c9a691485ad38dd3565604304b
parentdc7d7fd6f2a6ed2a1466f30e88493979c1d4131f (diff)
parentb417e0b7531c3910db1335725cd520cca8dd9891 (diff)
downloadrails-86cb1227d52f8f954a4f8f2208899eb02fb76283.tar.gz
rails-86cb1227d52f8f954a4f8f2208899eb02fb76283.tar.bz2
rails-86cb1227d52f8f954a4f8f2208899eb02fb76283.zip
Merge pull request #18577 from prathamesh-sonpatki/nodoc-av-modelnaming
nodoc ActionView::ModelNaming module
-rw-r--r--actionview/lib/action_view/model_naming.rb2
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