aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/atom_feed_helper.rb
diff options
context:
space:
mode:
authorAlvaro Pereyra <alvaro@xendacentral.com>2012-12-01 13:03:33 -0500
committerAlvaro Pereyra <alvaro@xendacentral.com>2012-12-01 13:17:11 -0500
commit20b40c86ec12b046f86e0c16213c07cb3f83102c (patch)
tree25e2c4bcc01f2e64c2e5e8cd650e9a4c00fbe835 /actionpack/lib/action_view/helpers/atom_feed_helper.rb
parent33f62092393ef3ba15dd7206c4c37cfd7598af9e (diff)
downloadrails-20b40c86ec12b046f86e0c16213c07cb3f83102c.tar.gz
rails-20b40c86ec12b046f86e0c16213c07cb3f83102c.tar.bz2
rails-20b40c86ec12b046f86e0c16213c07cb3f83102c.zip
Removes :nodoc: tag on AtomFeedHelper [ci skip]
Diffstat (limited to 'actionpack/lib/action_view/helpers/atom_feed_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/atom_feed_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/atom_feed_helper.rb b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
index f5ac455208..42b1dd8933 100644
--- a/actionpack/lib/action_view/helpers/atom_feed_helper.rb
+++ b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
@@ -2,7 +2,7 @@ require 'set'
module ActionView
# = Action View Atom Feed Helpers
- module Helpers #:nodoc:
+ module Helpers
module AtomFeedHelper
# Adds easy defaults to writing Atom feeds with the Builder template engine (this does not work on ERB or any other
# template languages).
@@ -124,7 +124,7 @@ module ActionView
end
end
- class AtomBuilder
+ class AtomBuilder #:nodoc:
XHTML_TAG_NAMES = %w(content rights title subtitle summary).to_set
def initialize(xml)
@@ -158,7 +158,7 @@ module ActionView
end
end
- class AtomFeedBuilder < AtomBuilder
+ class AtomFeedBuilder < AtomBuilder #:nodoc:
def initialize(xml, view, feed_options = {})
@xml, @view, @feed_options = xml, view, feed_options
end