22

Can someone point me to a solid sample app that shows how to use the new features and syntax of Rails 3?

It's been answered before for earlier versions (https://stackoverflow.com/questions/248371/whats-the-best-open-source-ruby-on-rails-project-to-learn-from), but I have not seen one for Rails 3.

Specifically the following:

  • Routing
  • Mailer
  • new query syntax
  • complex forms (how do these work with the new routing)
  • unobtrusive js (specifically jQuery)
Community
  • 1
  • 1
Jonathan
  • 16,077
  • 12
  • 67
  • 106
  • See also: http://stackoverflow.com/questions/4161002/ruby-on-rails-3-best-practices-example-open-source-application – David J. Feb 03 '11 at 19:53

5 Answers5

7

You might want to check Projexion. It uses Rails 3 beta 3.

Joshua Partogi
  • 16,167
  • 14
  • 53
  • 75
6

Here's a nice Rails 3 overview from IBM (surprisingly), along with links to additional resources.

Drew Johnson
  • 18,973
  • 9
  • 32
  • 35
3

You could refer to Ticketee. This is the application from Rails 3 in Action.

Ryan Bigg
  • 106,965
  • 23
  • 235
  • 261
3

You might want to look at ror_ecommerce. It's a starter app for an ecommerce site. Runs on Rails 3 and Ruby 1.9.2.

wusher
  • 12,291
  • 22
  • 72
  • 95
0

This is a great resource for sample apps: https://github.com/gothinkster/realworld.

It lets you choose front-end and back-end and mix/match because it uses the same API.

Hope this helps some people go beyond the basic to-do list app demos with more robust app demos.