Tagged Questions
2
votes
0answers
50 views
How to exclude module but include class of that module in RDoc
Running RDoc doesn't make sense for some modules that are blank. For example:
class moduleName::className < ActiveRecord::Base
def foo
end
def bar
end
end
RDoc produces report:
...
1
vote
1answer
52 views
Documenting classes using labeled lists
I am using Ruby on Rails 3.0.7 and I am writing some documentation for my application using RDoc. In my application file I have this:
#[EXAMPLE 1 - Some text.]
#
# [CASE 1 - Some text.]
#
# ...