At last!
Amazon has just sent me the book Agile Web Development with Rails that I ordered one month ago.
This book focuses on Ruby on Rails, the open source framework to write web applications in the Ruby programming language (which is making a lot of buzz on the Internet right now).
Previously, I had purchased Programming Ruby.
I guess I can start experimenting with Rails a lot more now as I finally have the two books pictured on the right :-)
By the way, both Ruby on Rails and Ruby Gems, the Ruby package manager, have just been updated. I did this on my Linux box:
sudo gem update --system
sudo rm /usr/lib/ruby/gems/1.8/source_cache
sudo gem install rails
By the way, here is a tip I got from the Agile Web Development with Rails book on how to generate the Ruby on Rails API documentation automatically:
rails dummy
cd dummy
rake rails:freeze:gems
echo >vendor/rails/activesupport/README
rake doc:rails
A directory called api will be created into the doc directory. Move it to the desktop and, voilà, you have the complete API documentation.
Have fun!
(Image courtesy of Spuggy, source_cache tip from ImaPenguin and Ruby Gems tip from Gregory Brown)