1
vote
0answers
77 views

App Guide Tools & Frameworks

What are some tools that will help me provide guides and tutorials for users of my web application? Let's assume I'm using a rails application. Many apps and frameworks, such as rails and spree, use ...
1
vote
2answers
39 views

YARD: how to create a link to a class method?

How do you create a link to a ruby class method with YARD? Here is the yard documentation regarding links. Linking to an instance method within the same namespace: {#my_instance_method} Which ...
-1
votes
1answer
53 views

Rails or PHP application for building company/IT documentation? [closed]

Does anyone happen to know of a rails (proffered) or PHP (also cool) app that would help our IT department and possibly the entire company build and maintain our documentation?
3
votes
1answer
90 views

Document partial parameters in Rails

Is there any standard or emerging standard to document the parameters that can be passed into a Rails partial ? When _my_partial.html.erb expects a title and an elements local var passed with render ...
0
votes
1answer
175 views

Generate rails documentation in pdf with yard

It´s possible to generate documentation in pdf format using YARD instead of HTML? I didn´t find this feature in yard documentation. If it´s not possible which is the easier way to generate a PDF ...
0
votes
2answers
191 views

How to find documentation for ActiveRecord::Base.update?

What is the process of finding the documentation for a method in Ruby/Rails api http://api.rubyonrails.org/ . Let's take method ActiveRecord::Base.update as an example. It is used in one of the ...
1
vote
1answer
210 views

latest version of ruby 1.9.3 and rails 3.2.6 documentation that can be downloaded as a package

I know that it can be built locally and run against the yard server but I don't want to be running "yet another server locally" (YASL) :) Is there a site that packages these together and allows them ...
1
vote
2answers
659 views

Where to define Rails app's version number

Is there any convention about how/where to specify application's version number? For example, for the ruby gems lib/mygem/version.rb is the file generally used for that purpose. My guess would be ...
2
votes
1answer
159 views

Ideal README file for Web applications

I am kind of obsessed with how I document and organize my projects. I am curious about best practices for readme files, and looking to learn more about what should be in it. I am mostly using rails. ...
3
votes
1answer
117 views

How to document use of Rails' url_helpers using YARD?

When trying to generate YARD documentation for a service implemented with Rails, I get the following warning: $ yardoc [warn]: in YARD::Handlers::Ruby::MixinHandler: Undocumentable mixin: ...
0
votes
1answer
19 views

How can I find the documentation for AJAX on Rails in the DocRails repo on Github?

I found some things I want to submit a pull request for in the AJAX documentation for rails. But when I check out the DocRails repo, I can't seem to find that documentation. Anyone familiar with it? ...
0
votes
1answer
65 views

How to link to the README_FOR_APP and readme documentation in Rails?

This should be a simple problem I think, I have all my Rails documentation inside the doc/app directory, which I can manually load and view in my browser. I want to just link to this documentation ...
1
vote
2answers
90 views

how to read/understand ruby/rails documentation

How can i read in documentation the methods that my object supports? For example, if i made a has_many association in rails, how to know which methods exists on that, what type is it? I know i can ...
1
vote
1answer
302 views

Rails routes for an API documentation

I'm currently writing the documentation for the API of my website. I'm not sure about the "best" way to write the routes. I think twitter does a good job and I'd like to copy their url structure: ...
1
vote
1answer
302 views

Where are the old rails docs? Specifically, I want v2.3.14

There is an older version at http://guides.rubyonrails.org/v2.3.8/ However, one cannot simply change the version to 2.3.14 or 2.3.1 and get another version. Is there a standard location for old ...
0
votes
1answer
125 views

YARD: How to generate vendor plugin documentation?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I implemented a working plugin (in the ROOT_APP/vendor/plugins/<plugin_name> directory) and I would like to ...
2
votes
1answer
138 views

How to document more files other than the `README` file?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I would like to add more files other than the README file on the top of the generated documentation as made here (see ...
2
votes
2answers
79 views

Am I using the Ruby on Rails API documentation incorrectly?

The Rails community has an impressive ethos surrounding things like usability that I have come to appreciate in a short period of time. But the API docs at http://api.rubyonrails.org involve so much ...
1
vote
1answer
122 views

How to output HTML element names in Yard documentation

I'd like to include some HTML element names, like <label>, in my ruby class documentation generated by Yard. But it is not working. For example, the sentence # Returns a <label> field... ...
3
votes
2answers
328 views

API documentation via a gem

I'm trying to find out if there's a gem that can document an API by automatically detecting changes to the inputs/outputs of the endpoints and produce documentation (HTML or whatever) detailing the ...
0
votes
1answer
73 views

How can I generate documentation related to my plugin?

I am using Rails 3.1.0 and I have implemented a working plugin. As well as it should be done, its related files are located in the ROOT_APP/vendor/plugins/my_plugin directory. Now, I am using the ...
2
votes
1answer
357 views

How can I refer to a parameter ('@param' tag) from another parameter?

I am using Ruby on Rails 3.1.0 and the YARD 0.7.4 gem for documentation purposes. I would like to refer to a parameter (@param tag) from another parameter. That is, I have: # ... # # @param [String] ...
1
vote
1answer
85 views

How could/should I properly document the `accepts_nested_attributes_for` method?

I am using Ruby on Rails 3.1.0 and YARD 0.7.4. I would like to document the accepts_nested_attributes_for method in my Article class (see the following example for more information) but it seems not ...
2
votes
1answer
62 views

How can I state and display documentation related to constant values in a proper way?

I am using Ruby on Rails 3.1.0 and I am trying to use YARD 0.7.4. I would like to document constant values, so in my class I state this: # [Fixnum] Test constant documentation. TEST_CONSTANT = 1 ...
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 ...
1
vote
3answers
72 views

What happened to the “on Github” rails API documentation links?

A few months ago there was a feature in the Rails API documentation that let you visit the a Rails source file on Github by clicking "on Github". Ryan Bates even tweeted about it. This was a great ...
1
vote
1answer
53 views

http://api.rubyonrails.org/ clone

I'd like to build a website very similar to http://api.rubyonrails.org/ is there any gem I can use for that? or anything else I can easily reuse? thanks zb
3
votes
2answers
117 views

Unix man pages for Ruby standard library? How about Rails?

What's the best Ruby documentation resource? Some things I'm looking for: Offline Easy to keep up-to-date CLI support and fast Good for reference AND for browsing and learning new things Vim ...
3
votes
3answers
288 views

Good site for python documentation like ruby-doc.org

I love python, but I am disappointed in it's offerings for online documentation. Ruby seems to have many more documentation sites: http://ruby-doc.org/docs/ProgrammingRuby/ ...
3
votes
1answer
457 views

Generating REST API documentation from RABL view templates

I'm looking to generate some basic documentation for a REST API created using Rails and RABL template views. Ideally what I'd like is a browsable RDoc-like format that shows the various endpoints and ...
0
votes
1answer
44 views

What's the difference between “api.rubyonrails.org” and “rails.rubyonrails.org”?

If I use http://api.rubyonrails.org/ to look up ActionView::Helpers::UrlHelper#url_for (see: http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-url_for) it tells me: "This ...
1
vote
2answers
785 views

How do I generate public documentation for my Rails 3 REST Service?

So I'm building an application in Rails 3 using Devise as my authentication mechanism. I have all my controllers and views working. Our web site is humming along. Now we'd like to export our routes ...
2
votes
1answer
128 views

How to generate docs for my models and controller in rails

I want to create docs for the models and controller of my application. Even for rake task, any background job. As I have thousands of lines of comments inline between the code, explanation of the all ...
0
votes
0answers
123 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
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.] # # ...
1
vote
2answers
187 views

How to use the `:include:` directive using RDoc?

I am using Ruby on Rails 3.0.7 and I am writing some documentation for my application using RDoc. Since I have not found on the Web some good documentation with examples, what I would like to know is ...
0
votes
3answers
284 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
186 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 ...
0
votes
2answers
765 views

Get and install a new RDoc template

I am using Ruby on Rails 3.0.7 and I would like to install and use a new RDoc template (instead of the default) in order to documenting my application. I would like to choose one of following: ...
3
votes
1answer
362 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 ...
0
votes
2answers
693 views

Rake doc:rails errors

Trying to generate Rails API documentation, but running into errors: $ rake doc:rails rake aborted! undefined method `task' for #<DummyApp::Application:0x00000100dd14d0> (See full trace by ...
1
vote
1answer
1k views

Rails link_to_remote documentation

Hi I am new to rails. Where can I find the API reference for 'link_to_remote' helper in Rails API documentation.
6
votes
2answers
337 views

Concise introduction to Ruby on Rails for experienced developers?

tl;dr: I want a high-level introduction to Rails, which covers what I need to get started with proper reference materials. I don't need basic concepts explained. -- Ruby and rails both seem nice, ...
3
votes
0answers
94 views

Rails - why all the excitement? [closed]

I am mostly a desktop programmer, but, seeing how everything is moving to the web, I tried out Rails (I come from Java, C and Python). I enjoyed it at first with Agile Development with Rails, but a ...
5
votes
2answers
1k views

Rails Guides offline documentation [closed]

Is there an downloadable offline version of the Rails Guides?
0
votes
2answers
268 views

Ruby: Example of well-documented gem/plugin

I want to create rdoc comments for active_factory plugin. Could you suggest an example of ruby gem or rails plugin with most helpful documentation. What do you like there and what should i pay ...
3
votes
2answers
426 views

Where can I find listed the Rails config options?

Rails 2.x environment files like environment.rb have config options like... config.action_controller.session_store = :active_record_store config.active_record.schema_format = :sql Where can I ...
0
votes
1answer
295 views

Doc about Query an external HTTP XML API

I want to query an API with rails. I tried to use HTTParty but i cannot make it work with Rails controller classes does not seems to like self.methodes. I am looking for doc on this subject, but i do ...
3
votes
3answers
142 views

Where and what I have to do to document my Ruby on Rails application?

I am using Ruby on Rails 3 and I would like to start to document internally my application in addition to use comments in files. In order to do that I thought to create documentation files in some ...
2
votes
2answers
539 views

API docs generation tool

I have a RESTful API written on RubyOnRails(restfulie gem). What is the best way to generate api documentation from project sources?

1 2