Tagged Questions
1
vote
1answer
15 views
Stop Rdoc from creating link on a string
I'm using RDoc for the first time, and I've run into one issue that's a bit bothersome. I have a line in my class documentation like the following:
# * callingState
I also have a class in that same ...
4
votes
0answers
92 views
Disable rdoc and ri from gemspec / Gemfile
I have a client gem which I will distribute business clients via rubygems. Gem client has cca. dozen gem dependencies and when it is being installed it takes a long time to install it due to ...
0
votes
1answer
26 views
Invalid output formatter when installing a gem
I built a gem for my own usage and when I want to install it I get the following:
$ gem install mygem
Successfully installed mygem-0.0.1
1 gem installed
Installing RDoc documentation for ...
2
votes
1answer
36 views
How to make rdoc link to a method with equal sign
In one file I have
module Adapter
##
# :method: avatar
##
# :method: avatar=(value)
end
In another file I want to have links to these methods:
# Adapter#avatar # this generates a ...
0
votes
1answer
54 views
Change a RDoc template for generating Rails app documentation
I have just added some documentation to my Rails 3.2.13 app. I can generate the documentation just fine (running RDoc 3.12.2) by using a rake task:
# lib/tasks/documentation.rake
...
3
votes
1answer
153 views
“rvm docs generate” is killed
Any idea why rvm(1.18.15) fails to generate the document for ruby2.0?
$ rvm docs generate
ri documentation, be aware that this could take a long time, and depends heavily on your system ...
1
vote
2answers
61 views
How do I add documentation to my gem that will show up on rubygems.org?
Experimenting with pushing my first gem to rubygems.org, and I'm trying to figure out how to generate online documentation for it. For most gems 'show' page, when I click the 'Documentation' link, I ...
2
votes
2answers
45 views
Can uninstalling rdoc make Ubuntu safe from the Ruby RDoc XSS vulnerability?
I've just read http://www.ruby-lang.org/en/news/2013/02/06/rdoc-xss-cve-2013-0256/ , a report about an XSS exploit in RDoc.
I'm on Ubuntu 12.04, and I doubt Ubuntu will be dealing with this ...
0
votes
0answers
68 views
RDOC and multiple attr_accessor symbols?
I'm relatively new to Ruby and I've been trying to learn how to format my comments for output via rdoc. If I have an attr_accessor e.g.
# id:: an identifier
# price:: total cost
attr_accessor :id, ...
0
votes
0answers
37 views
rails rdoc : show doc/ content in doc.mysite.com
Rdoc produces a nice doc/ directory in my rails application where html files are available to browse.
I'd like to give access to this content to logged users only, the permissions being dealt with ...
0
votes
0answers
100 views
Parameter list that looks good in both rdoc and yard docs
I'm converting a gem's documentation from Rdoc to Yard, and can't figure out how to make a parameter list that works in both Yard and Rdoc. This markup:
# @param barcode_id [String] Nominally a ...
2
votes
1answer
58 views
Ruby regular expression method !~
I don't remember where I learned the !~ method of the String class. However I know it compares a string to a regex and check whether the string not match the regex. See my below example.
C:\>irb
...
0
votes
0answers
80 views
How do I use a markdown file as the main file for rdoc (in a rails project)?
Is it possible to use a readme.md file with a Rails project and have rdoc use it a the main page? I tried setting up my rake task as follows, but the index.html page that gets generated has a ...
1
vote
1answer
139 views
Where is rbenv gem's rdoc?
I'm using rbenv and I'm trying to figure out where the rdoc of my local gems are located.
When I install a gem, it says the rdoc are properly generated, i.e.:
% gem install rails -v "2.3.2"
...
3
votes
1answer
71 views
“undocumented” constants in Ruby/Rdoc
The following code snipped:
# ansi console color constants
COLOR_BLACK = 0
COLOR_RED = 1
COLOR_GREEN = 2
COLOR_YELLOW = 3
COLOR_BLUE = 4
COLOR_MAGENTA = 5
COLOR_CYAN = 6
COLOR_WHITE = 7
# functional ...
1
vote
1answer
32 views
RDoc just my own application?
Is there a way to stop RDoc from going higher than the current directory? i just tried
rdoc -O -x ../
but this also stopped it from parsing relative pathes in subdirectories; what I really need is ...
0
votes
0answers
159 views
Rake task to generate Rdoc fails with error message 'uninitialized constant RDoc::Generator'
I want to have a task in my Rakefile to generate RDoc for my gem. I have the most recent versions of Ruby, Rake, and RDoc This is what is in my Rakefile:
require 'rubygems'
require 'rake'
require ...
1
vote
1answer
86 views
Generate documentation on commit
What is the best practice for automatically-generating ruby documentation as part of a git commit workflow? We'd like to automatically generate new documentation whenever a commit is merged into ...
2
votes
1answer
70 views
Viewing RDoc (Ruby Docs) Offline On Portable Device (iOS/Android/etc)
I'd like to have offline access to RDoc generated pages so I can learn about a new gem or other software as I travel without Internet access. I prefer to use an iPad but this question is valid for any ...
0
votes
1answer
40 views
Install rdoc fails
When I install rdoc on windows, I receive this error:
Anyone know how to resolve this issue?
0
votes
1answer
44 views
What's the most common way for including a howto/documentation in a ruby-gem?
I saw that if the gem is installed also the rdoc is generated and you can access the rdoc by
gem server #->localhost:8808
I am thinking of the most common ways how to describe a ruby-developer ...
5
votes
1answer
117 views
How to add RDoc documentation for a method defined using class_eval?
I am using class_eval to define a bunch of repetitive methods more concisely, something like this:
%w{greasy chunky bacon}.product(%w{flying sky poodle}).each do |a,b|
class_eval "def #{a}_#{b}; ...
1
vote
1answer
23 views
Plurals in RDoc documentation
According to the RDoc documentation, names of classes, source files, and any method names containing an underscore or preceded by a hash character are automatically hyperlinked. But links to plurals ...
2
votes
2answers
114 views
Is it normal that YARD doesn't replace `code` with <code>code</code>?
I'm just starting to use YARD for documenting my Rails app. I didn't specify any specific Markup handler, but I would have expected that `code` would be converted to code, which doesn't seem to ...
0
votes
1answer
117 views
RDoc for script without classes/procedures/objects
Is it possible to document ruby script, using RDoc or any other documentation generator , if it does not have any structure inside?
1
vote
1answer
211 views
Ruby yard doc not showing any files
This is my setup:
Ruby 1.9.2 p290
Yard 0.8.1
The folder structure is not a gem, just plain old Ruby code:
.
├── classes
│  ├── crawl.rb
│  └── page.rb
└── run.rb
The problem is that yard does ...
1
vote
1answer
150 views
How to add a page to RDoc?
Noob here trying to figure out the simple task of adding a page to my RDoc documentation. If I do rake doc:app and view a page, then there is a sidebar that says "Pages" with README_FOR_APP listed. ...
0
votes
0answers
225 views
unable to convert U+0416 from UTF-8 to US-ASCII for
I have a CI server in my remote server and when CI server run rake rdoc command I get following errors:
+ bundle exec rake rdoc
option --inline-source is deprecated: source code is now always inlined
...
0
votes
1answer
115 views
Why does it take longer to install RDOCSs and RIs than the actual gem?
It is always frustrating to install a gem and wait 2 seconds for the gem to install and then wait 30 seconds for the docs, which I never use(Google, anyone?). Why do we force this convention upon ...
1
vote
1answer
118 views
How to automatically document Metaprogrammed attr_accessors using RDoc?
FIRST, I would like to customize RDoc such that it automatically recognizes each key of the attrs hash foo and bar of the following code:
class SomeClass
def initialize( args = { })
attrs = { ...
0
votes
1answer
139 views
YARD and RDoc compatibility
If I document my code with YARD, and use e.g. the @overload tag, and someone else installs my gem and it generates the documentation with RDoc, won't the result be messy?
Is there a good way to deal ...
1
vote
1answer
67 views
Rdoc: How to document different forms for method with (*args) signature?
I am wanting to document some methods in my Ruby code, where the methods have a signature of (*args). The actual method call can comprise two or three different forms. I would like to document these ...
3
votes
1answer
74 views
Building Ruby Documentation for Java Classes/Source
As I've recently started using JRuby, more specifically building Java applications using Ruby code, I've started using Java Libraries such as LWJGL and Slick.
I know JRuby changes Java method names ...
0
votes
1answer
124 views
Ruby trying to RTFM but can't
Simple question, what is the best way on windows to search the documentation. This time I was wanting information on 'while'(resolved now by google) but I still can't can't get ri or the chm ...
4
votes
2answers
264 views
Syntax highlight Ruby code in RDoc file?
I am documenting a Ruby library I am writing. In my README.rdoc file, I am including an example of the usage with some demo Ruby code.
However, the resulting HTML documentation does not show the Ruby ...
0
votes
2answers
92 views
What documentation software is using Ruby on Rails 3.1?
Some time ago I read the changelog of a Ruby on Rails version (I think 3.1.0). In that was written that the documentation "system"/"software" was changed. The current can be browsed here.
What is the ...
4
votes
2answers
342 views
Internal comments using YARD for Ruby documentation?
I'm in the process of switching over a rubygem I maintain from RDoc to YARD documentation. However, there are some critical comments in the code that need to remain only in the code and should not ...
6
votes
3answers
429 views
Where are the official docs for `attr_accessor` and other methods of `Module`?
Yesterday I answered a question about how attr_accessor works. I wanted to link to the documentation of the method, but to my surprise, it didn't show up on ruby-doc.org. Shouldn't it be documented in ...
3
votes
1answer
851 views
Nothing Known About … when using ri Array — Ruby
I have Ubuntu 11.10 and am using rvm with ruby 1.9.2. I followed this exactly to install Ruby: http://blog.sudobits.com/2011/10/27/how-to-install-ruby-on-rails-in-ubuntu-11-10/
I generate the docs ...
2
votes
0answers
83 views
Customize RDoc::ClassModule#description
I'm attempting to write a new generator for RDoc but I cannot figure out how to customize the description output for an RDoc::ClassModule object. Currently it looks like this:
<p><a ...
0
votes
0answers
180 views
Rdoc from Gemfile
I would like to include Gemfile in my rdoc documentation. Rdoc treats it like a source file with expected results. Is there any way to get rdoc to treat it like a Ruby file instead?
0
votes
1answer
379 views
Include local images in RDoc
I have created an image with a "visual" tool that I want to include on the front page of my rdoc documentation. The front page is defined in a *.rdoc . I have found it possible to include external ...
9
votes
3answers
2k views
error installing RDoc documentation: incompatible encoding regexp match
Over the last week, on a few gem install or gem update operations, I've received an error similar to these:
ERROR: While generating documentation for sinatra-1.3.1 ... MESSAGE: error generating ...
2
votes
0answers
171 views
How do I render a verbatim/code/pre plus sign with RDoc markup?
Using RDoc markup and generating docs with Yard, I'm trying to document some command output that has a line like:
+----------------------------------+
...but can't figure out how to achieve this. ...
1
vote
1answer
2k views
The specified module could not be found (MySQL)
what to do for following error on windows:
C:\work\exchange2>gem list
*** LOCAL GEMS ***
actionmailer (2.3.11)
actionpack (2.3.11)
activerecord (2.3.11)
activeresource (2.3.11)
activesupport ...
2
votes
1answer
162 views
Show ruby core and standard documentation when running gem server
Is there a way to show the ruby core and standard library documentation when running gem server?
I can navigate the core & std documentation created with rvm, but I would like to have all the ...
2
votes
1answer
155 views
Generating RDoc to LaTeX
Is it possible to generate RDoc in LaTeX format? I looked at RDoc and YARD, but didn't find what I need.
I am writing a documentation in LaTeX for my project in Ruby, and I need a way to easily embed ...
21
votes
2answers
2k views
Nothing known about… when trying ri String#upcase Ruby
I have just installed the RVM and I am reading The Well-Grounded Rubyist book. In the first chapter I am supposed to try ri String#upcase to view documentation on the upcase method, however I get a ...
0
votes
0answers
122 views
Documenting constants and methods
I am writing a documentation for my Ruby on Rails 3.0.7 application using RDoc. In the application lib folder, I have the following:
module ModuleName
class ModuleName::User < ActiveRecord::Base
...
1
vote
1answer
51 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.]
#
# ...



