Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails 3: guides.rubyonrails.org in PDF? [closed]

Where to find Rails 3 guides in PDF to read offline?

Thanks

like image 406
donald Avatar asked Dec 22 '10 03:12

donald


2 Answers

You can't get them in PDF, but you can get them in HTML form by running these commands:

git clone git://github.com/rails/rails.git
cd rails
git checkout origin/3-2-stable -b 3-2-stable
cd railties/guides
ruby rails_guides.rb
cd output
open index.html

When these commands have finished you should be in the railties/guides/output folder which contains the HTML versions of the guides that were just generated with ruby rails_guides.rb, and if you're on a decent operating system then you'll see the homepage in your default browser.

like image 199
Ryan Bigg Avatar answered Oct 31 '22 13:10

Ryan Bigg


Here is its official release of mobi format:

http://guides.rubyonrails.org/kindle/ruby_on_rails_guides_v4.2.5.mobi

found at the sidebar on http://guides.rubyonrails.org/

like image 12
Jim Chang Avatar answered Oct 31 '22 11:10

Jim Chang