Hey, so I am a novice programmer who has only worked with HTML, CSS, and a touch of Java a couple of years ago. I am looking to try to get a social network site up and running on Ruby on Rails and was looking at RailsSpace: Building a Social Networking Website with Ruby on Rails (Addison-Wesley Professional Ruby Series) - Paperback (July 30, 2007) by Michael Hartl. This was published in 2007, however, and the newer reviews say it is not very helpful. Does anyone know if there are any new publications out there that walk you through building a social network site while teaching you the code(rather than just using a out of the box program)? Thanks

link|improve this question
I guess if you do not have hands-on experience in RoR, you need to build a small project in Rails first. And then move to advance books that deals with complexity of architecture. I suggest to start with Agile Web Development with rails. – Nishant Jan 8 '11 at 18:52
feedback

3 Answers

Railsspace was the first ruby on rails book I bought. It's pretty out of date, and I while it does a good job of describing the basics of how to build a social networking site - friendships, profiles, etc - I wouldn't recommend it to someone wanting to learn the framework today.

Agile Web Development with Rails is probably the way to go.

link|improve this answer
feedback

Before running the marathon, the wise sportman starts running 100m. Then 200m. Then 300m. Then 400m. Then 500m. Then 600. Then...

So instead of focusing on building a social network, focus on a smaller mini-project.

The recommended book for beginners is Agile Web Development with rails. You can buy it at http://pragprog.com/

I also recommend that you get familiar with testing. In the Rails world, this means RSpec, Cucumber(or even better Steak) and Capybara.

http://pragprog.com/titles/achbd/the-rspec-book

You get a practical introduction to all these technologies and procedures with those two books.

Another great source of information is the official Ruby on Rails guide:

http://edgeguides.rubyonrails.org/

Also, you would like to get some expertise on the use of Version Control Systems. I recommend you Git.

http://book.git-scm.com/

And you can host you code at Github. There are many interesting projects related to Rails in Github.

https://github.com/

Now, you have for a couple of months with those three resources. Enjoy you meal. Digest slowly, so you appreciate the taste.

link|improve this answer
feedback

Try http://railstutorial.org by Michael Hartl. It's learning Rails while building something that looks like twitter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.