diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-13 07:02:37 +1000 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-13 07:14:16 +1000 |
commit | a6bc1f9be48095e2126a3726b5016fb760a8fdb4 (patch) | |
tree | 65cf9eff276f73e8b17207e14f93821e6de1ca32 | |
parent | a6faeffe59ce4160ddd10fd8ec8dca8d88c3a35d (diff) | |
download | rails-a6bc1f9be48095e2126a3726b5016fb760a8fdb4.tar.gz rails-a6bc1f9be48095e2126a3726b5016fb760a8fdb4.tar.bz2 rails-a6bc1f9be48095e2126a3726b5016fb760a8fdb4.zip |
Remove nodoc from FormBuilder because the methods inside are public API methods
-rw-r--r-- | actionpack/lib/action_view/helpers/form_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index ef5bbd8ae3..6f0e2c99ba 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -1115,7 +1115,7 @@ module ActionView include InstanceTagMethods end - class FormBuilder #:nodoc: + class FormBuilder # The methods which wrap a form helper call. class_attribute :field_helpers self.field_helpers = (FormHelper.instance_method_names - ['form_for']) |