Skip to content

Commit

Permalink
Manage RDoc scope better with appropriate use of :nodoc:.
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Chacon <schacon@gmail.com>
  • Loading branch information
bitbckt authored and schacon committed Dec 16, 2008
1 parent e532686 commit 661c281
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/munger/data.rb
@@ -1,4 +1,4 @@
module Munger
module Munger #:nodoc:

# this class is a data munger
# it takes raw data (arrays of hashes, basically)
Expand Down
2 changes: 1 addition & 1 deletion lib/munger/item.rb
@@ -1,4 +1,4 @@
module Munger
module Munger #:nodoc:

class Item

Expand Down
2 changes: 1 addition & 1 deletion lib/munger/render.rb
@@ -1,6 +1,6 @@
# Munger::Render.to_html(report)

module Munger
module Munger #:nodoc:
module Render

def self.to_html(report, options = {})
Expand Down
6 changes: 3 additions & 3 deletions lib/munger/render/csv.rb
@@ -1,6 +1,6 @@
module Munger
module Render
class CSV
module Munger #:nodoc:
module Render #:nodoc:
class CSV #:nodoc:

attr_reader :report

Expand Down
4 changes: 2 additions & 2 deletions lib/munger/render/html.rb
Expand Up @@ -5,8 +5,8 @@
require 'builder'
end

module Munger
module Render
module Munger #:nodoc:
module Render #:nodoc:
class Html

attr_reader :report, :classes
Expand Down
4 changes: 2 additions & 2 deletions lib/munger/render/sortable_html.rb
@@ -1,6 +1,6 @@
require 'builder'
module Munger
module Render
module Munger #:nodoc:
module Render #:nodoc:
# Render a table that lets the user sort the columns
class SortableHtml

Expand Down
4 changes: 2 additions & 2 deletions lib/munger/render/text.rb
@@ -1,5 +1,5 @@
module Munger
module Render
module Munger #:nodoc:
module Render #:nodoc:
class Text

attr_reader :report
Expand Down
2 changes: 1 addition & 1 deletion lib/munger/report.rb
@@ -1,4 +1,4 @@
module Munger
module Munger #:nodoc:

class Report

Expand Down

0 comments on commit 661c281

Please sign in to comment.