0
votes
1answer
25 views
Automating rake doc:app
For you rails programmers, what's the easiest way to keep your RDoc files up-to-date?
I know I can run rake doc:app manually, but I really don't feel like adding a manual step to the check-in …
0
votes
2answers
41 views
How do you remove the documentation installed by gem install?
I know it's possible to install a gem without the documentation, but unfortunately, I didn't for the first three months I used ruby. In that time, I managed to install a significant amount of gems, …
2
votes
1answer
57 views
Why is the “:nodoc:” syntax needed?
It seems a lot of libraries/plugins use this syntax:
def self.included(base) # :nodoc:
base.extend ClassMethods
end
Why is the :nodoc: part necessary?
1
vote
3answers
65 views
Best wiki syntax for documentation in ruby code and project README files
Hi,
Are there any wiki syntax like rdoc, markdown, ... recommended in the ruby world?
I write sometimes open source code and have no glue which syntax I should use in Code documents and in README …
2
votes
1answer
68 views
Can Doxygen generate collapsable code sections like rdoc?
I am creating internal documentation for a C++ project using Doxygen. I am having Doxygen include the source for methods, etc, but this makes the page kind of hard to scan. I'd like it to behave like …
2
votes
1answer
99 views
Why does my Ruby ‘ri’ tool not return results in command prompt?
Greetings,
When I try to use Ruby's ri tool in a command prompt window to acquire information about classes, methods, etc. it seems to always fail. For example if I type
ri Array
I get a message …
0
votes
1answer
35 views
Displaying inherited methods in rdoc
I have a program written in Ruby that uses multiple levels of inheritance. All of the parent classes have implemented methods that an object of a child class would use, but when I generate an rdoc …
0
votes
2answers
121 views
Gem Server and Rails RDoc Not Found
I would like to read Rails documentation locally though gem server.
I go to http://localhost:8808/ and Rails 2.3.3 gem is in the list of the gems installed, but when I click [rdoc] I get:
…
0
votes
5answers
418 views
How do I generate RDOC for (all of) Rails?
I can do
sudo gem rdoc activerecord --no-ri
and
sudo gem rdoc actionpack --no-ri
both of which give me good docs.
But
sudo gem rdoc rails --no-ri
gives me pretty much nothing, as the Rails …
0
votes
1answer
27 views
RDoc XML generation
I'm trying to generate a RDoc using the XML format. Here's the command that I'm using:
$ rdoc --fmt=xml --opname=api.xml
The file is created but no method list is generated. I'm using rdoc (2.4.3). …
2
votes
2answers
60 views
How do I create an arbitrary link in YARD documentation?
I'm trying to create some links in my YARD documentation. I can get an HTTP link:
# I like {http://stackoverflow.com Stackoverflow}
renders as
<p>I like <a …
0
votes
2answers
177 views
Running gem server in passenger
I'm running a few rails/rake apps in Apache/passenger and I want to add the documentation app served by gem server to these apps, so I can easily give it a special (sub)domain, like docs.example.org, …
0
votes
0answers
43 views
Open external link in a new window in ruby docs (rdoc)
Hi there,
I'm stuck: I need to create an external link using Rdoc which opens in a new window.
What I have and what opens up in the current window is this:
... to be found …
1
vote
3answers
807 views
Making RDoc Ruby Gem Default on Mac OS X
Hey all,
I've recently installed RDoc version (2.4.3) through Ruby gems to replace the one shipped with Mac OS X (version 1.0.1). Unfortunately, I can still only use RDoc 1.0.1 when I call run "rdoc" …
1
vote
1answer
98 views
How can I make rdoc properly read method arguments from my c extension?
Hello, all, I'm using rdoc to generate documentation for my Ruby code which contains C-extensions, but I'm having problems with my method arguments. Rdoc doesn't parse their names correctly and …
