0
votes
0answers
25 views

How to document a Rails Concern via rdoc?

Given a Rails Concern like the following I have problems documenting the foo attribute and the bar method. module FooBar extend ActiveSupport::Concern included do # The ...
0
votes
0answers
40 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 ...
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
44 views

Install rdoc fails

When I install rdoc on windows, I receive this error: Anyone know how to resolve this issue?
0
votes
0answers
234 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
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
6k views

Rails: how do I resolve the 'rake/rdoctask'' is deprecated' warning?

Just a forewarning: I'm a rails noob. When I run: rake db:migrate I get this deprecation warning: WARNING: 'require 'rake/rdoctask'' is deprecated. Please use 'require 'rdoc/task' (in RDoc ...
6
votes
2answers
338 views

Adding documentation for model scopes in rails

I'm not sure if this is actually possible or not but I'm trying to make the documentation of our rails app more complete by adding documentation for the scopes in our app/models files. What I'm ...
6
votes
5answers
3k views

file 'lib' not found when installing rails 3.1 on Mac OS X Lion

I just installed rvm and then rails 3.1rc5 with: gem install rails --pre But I got some errors after "Installing ri documentation" and the RDoc documentation: Successfully installed <bunch of ...
0
votes
1answer
176 views

Plugin documention with RDoc in Rails 3

I'm writing a Rails 3 plugin and I'm using Engines. I have and app/ folder in my plugin with controller, models and views. The problem is that when I want to generate documentation with RDoc it won't ...
0
votes
3answers
298 views

Where to find good RDoc documentation?

I am using Ruby on Rails 3.0.7 and I would like to document my application. To do that I would to find some "good" documentation about RDoc. Where I can find that? That is, what are "the best" web ...
0
votes
1answer
192 views

The “underscore”\“hash” meaning in RDoc

I am using Ruby on Rails 3.0.7 and I am trying to understand how the RDoc system works. So I would like to understand what the "hash" value means when the official documentation refers to that on line ...
3
votes
1answer
370 views

RDoc: Documentating an application

I am using Ruby on Rails 3.0.7 and I would like to write some documentation for my application using RDoc. Where I can find some good\advanced real examples on the Web? There is somewhere a summary ...
2
votes
2answers
663 views

Rails install fails on Ubuntu 10.10

I'm trying to install rails on Ubuntu 10.10, but get File not found: lib every time. Ruby and Rubygems have been installed correctly. I've seen this problem posted all over the web but no solutions ...