up vote 96 down vote favorite
101
share [g+] share [fb]

I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know which are any good.

Any suggestions?

link|improve this question

feedback

13 Answers

up vote 73 down vote accepted

If you're looking for example apps for Rails 3.1, here are some that come with detailed tutorials. Take a look at

Rails 3.1 Example Apps and Tutorials from the Rails Apps project on GitHub.

You'll find an example app and tutorial for Devise with RSpec and Cucumber, another showing how to set up Devise with Mongoid and another for OmniAuth with Mongoid. All are real working apps, not just learning exercises. They can be used as starter apps as well as examples of current best practices.

For an example app for Rails 3.0, Michael Hartl has an excellent tutorial with working code that shows best practices as part of his Ruby on Rails 3 Tutorial which is available as a book, ebook, or free online. The book Rails 3 in Action from authors Yehuda Katz and Ryan Bigg also offers excellent examples (though there is no free edition). By the time you read this, these books may have been updated for Rails 3.1.

This question was originally asked in October 2008. Here's the original answer from Toby Hede in October 2008:

On my drive I have a number of open-source Rails apps I have used for reference while learning Rails as also sanity checking that I am doing things the "rails-way". Beast and Mephisto are particularly valuable as they have been developed by high-profile members of the Rails community.

link|improve this answer
Links would be good. :-) – Charles Roper Oct 12 '08 at 19:31
Beast and Mephisto appear to be dead – jcm Aug 20 '10 at 23:37
feedback

An excellent list just appeared at the JetPack Flight Log, reminding me of this question.

To summarise, we have the following (I've linked to source locations as a hedge against the post changing/disappearing, but please try the link above first)

link|improve this answer
feedback

Your best bet is actually the rails scaffolding itself. For instance, instead of

ruby script/generate recipe

(for a fictional 'recipe' example)

You can do

ruby script/generate scaffold recipe

This does all the MVC creation code that rails normally does for you, plus puts the scaffolding in. It's the same as if you'd done

scaffold :recipe

only this way shows you the code. So you have something working - albeit not prettily - and can move up from there.

link|improve this answer
2  
this is definitely good for the extreme basics. It won't however teach you anything in the intermediate to advanced areas. – Tilendor Oct 11 '08 at 14:57
This wont teach you anything, I wouldn't advise a beginner to look at the scaffold code as a means of learning. For use as a demo to the power of rails or to fastrack development then yes. – zinc Jan 19 '11 at 13:00
feedback

If you want to have look into some professional and a recent one (although, still not finished) code, browse through this repository: http://github.com/spot-us/spot-us/tree/master - its an application developed by the Obie Fernandez's Hashrocket team.

link|improve this answer
feedback

This doesn't answer your question, but you must have some kind of app in mind, and you can find examples for a lot of different functionality here:

http://www.opensourcerails.com/

http://www.railsforall.org/apps

this was good, but hasn't been updated in awhile

http://sample.caboo.se/

I think all tutorial books now have downloadable code, and a lot of those zip files are complete, working example apps that aren't gigantic repos like, say the reddit codebase. (I learned from the apps in the back of Scott Raymond's ajax on Rails book, which is great, but the apps are probably also not updated. I also liked the railsspace book. It's actually interesting to substitute HAML/SASS for eRb, make an app non-RESTFUL, substitute sphinx for ferret, whatever.

http://examples.oreilly.com/9780596527440/

http://railsspace.com/book

link|improve this answer
feedback

The scaffolding is certainly a great introduction to the framework.

"Agile Web Development" is an excellent book and the depot application provides the basis for numerous entities that are requested on web sites today.

*Edit - Reference to project was removed since it is no longer available. Thanks Brian! Shame that project never took off, unless they renamed it.

link|improve this answer
Thanks for the heads up. – Adam Sep 28 '10 at 18:38
feedback

Community Engine - It's a plugin to build social network apps

link|improve this answer
moved url: communityengine.org – Brian Maltzan Sep 21 '10 at 16:58
feedback

I enjoyed reading through the code for BucketWise, by Jamis Buck. I've been working with Rails for a while, but I certainly picked up a trick or two.

link|improve this answer
feedback

Here are some social networking focussed ones, which cover quite a lot of ground and are thus well worth looking at:

And BaseApp is pretty cool too. It's a sort of starter app styled along the lines of 37 Signals' apps, such as (unsurprisingly) BaseCamp:

link|improve this answer
feedback

The depot application that is described in the Agile Web Development book has been very useful for me.

You can get the code here, however the book explains it step by step.

link|improve this answer
here's some links about using the depot app with rails 2.0 groups.google.com/group/rubyonrails-talk/browse_thread/thread/… woonzai.com/blog/2007/12/18/… – Gene T Oct 11 '08 at 14:34
feedback

what about Typo and Cookbook that comes with InstantRails? :)

link|improve this answer
feedback

A bit of shameless self-promotion here, but I've worked on rboard for quite a while now: http://github.com/radar/rboard and I consider it as an example of a good rails app.

link|improve this answer
feedback

Diaspora is growing and it might be interesting to dig into it's code:

https://github.com/diaspora/diaspora

Gemfile is worth to have a look:

https://github.com/diaspora/diaspora/blob/master/Gemfile

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.