Most of these Ruby on Rails related links are right out of my bookmarks. I checked for 404s and added more recent entries, but this list is far from complete. New blogs, sites, tutorials and tools are released on a daily basis. Just leave a comment or contact me if you want your link(s) or anything related added, or have spotted any broken links.
(Updated 02/22/2008. Keep the suggestions coming!)
Installation Guides
These are to help you get Ruby and Rails installed and configured, ready for Hello World.
GettingStartedWithRails - A page on the official Wiki
Fear of Fish - Getting Started with Ruby on Rails
Installing Ruby on Rails with Lighttpd and MySQL on Fedora Core 4
Building Ruby, Rails, LightTPD, and MySQL on Tiger
HowtosInstallation - A page on installation, from the official Wiki
Freeware and Commercial Ruby on Rails IDEs and Editors
Freeware IDEs
NetBeans IDE (Windows/Linux/Mac OS X/Solaris)
Aptana Studio (Communi...
Content suppressed by ://URLFAN, for full article visit source
More posts from biodegradablegeek.com

Simple Way to Populate a Database in RailsFrom: biodegradablegeek.com
Post Date: 2008-03-18 18:23:31
This is how I populate my database when I have a lot of data but can’t be bothered to write more than a quick throw-away hack. This doesn’t use fixtures, nor migrations (nothing wrong with them, I wuv migrations). Just a ruby file and the Rails console (this is optional actually).
I create a new rb file in lib/ (you can put your files in a sub-directory or anywhere ‘load’ can find them), then write the data I want inserted into the database in a...
more 
GitHub Now Open to the PublicFrom: biodegradablegeek.com
Post Date: 2008-04-13 07:45:45
GitHub.com , the “easiest (and prettiest)” version control system, is now open to the public. It’s free for Open Source programs (albeit limited to 100MB of space).
If you’re not sure what git (or Revision Control) is, here are some resources:
Wikipedia on Revision Control
(excerpt) “Revision control (also known as version control (system) (VCS), source control or (source) code management (SCM...
more 
How to POST Form Data Using RubyFrom: biodegradablegeek.com
Post Date: 2008-04-24 07:43:09
Being able to post data on web forms from your own apps will give you the ability to write tools, services,and provide automation, by interacting with resources already available on the web. This is a very brief example on how this can be accomplished in Ruby, using Net::HTTP and this POST form example .
Looking at the source (interlacken.com/webdbdev/ch05/formpost.asp):
We see two attributes are sent to the formpost.asp script when the user hits the sub...
more 
Got API? Instantly Search API DocumentationFrom: biodegradablegeek.com
Post Date: 2008-05-31 23:21:04
gotAPI.com does an excellent job congregating API documentation for numerous programming languages under an AJAX interface. No more bulging neck veins or fulmination when you can’t remember the order of those pesky arguments .
No support for your favorite language? Contribute .
You can add a gotAPI Search Widget to your site: http://www.gotapi.com/widgets/index.html
See Ruby/Rails widget below. Still in beta and might have UI issues, but it’s functional. Try typing map o...
more