aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 16:46:06 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-04 16:46:06 -0500
commit2a16e159ab718374582183a857f5bcb6f1c78b0b (patch)
tree71957adfa7af7a99b70c6fb503ea2150b8a9f917 /actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
parentedeb98c2745cbf29725eca87332cefb4f273986a (diff)
downloadrails-2a16e159ab718374582183a857f5bcb6f1c78b0b.tar.gz
rails-2a16e159ab718374582183a857f5bcb6f1c78b0b.tar.bz2
rails-2a16e159ab718374582183a857f5bcb6f1c78b0b.zip
mark ActionView::Helpers::Tags as :nodoc: [ci skip]
Diffstat (limited to 'actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb')
-rw-r--r--actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb b/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
index 9655008fe2..52006d856b 100644
--- a/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
+++ b/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
@@ -2,11 +2,11 @@ require 'action_view/helpers/tags/collection_helpers'
module ActionView
module Helpers
- module Tags
- class CollectionCheckBoxes < Base
+ module Tags # :nodoc:
+ class CollectionCheckBoxes < Base # :nodoc:
include CollectionHelpers
- class CheckBoxBuilder < Builder
+ class CheckBoxBuilder < Builder # :nodoc:
def check_box(extra_html_options={})
html_options = extra_html_options.merge(@input_html_options)
@template_object.check_box(@object_name, @method_name, html_options, @value, nil)