I've been kicking around Ruby and the rails framework and have been considering recommending to a client-of-a-client that they use it to rebuild their site, which is currently built in very bad ASP classic that will have to be rewritten from the ground up regardless of what technology is used.

One thing I'm missing from my pitch is a list of major sites using Ruby-on-Rails. Are there any yet?

link|improve this question

feedback

21 Answers

up vote 16 down vote accepted

Obie Fernandez has a list here: http://blog.obiefernandez.com/content/2008/03/big-name-compan.html

link|improve this answer
feedback

Here are some:

link|improve this answer
feedback

Rails100 lists Rails-powered sites and orders them by Alexa rank. At the top - scribd, hulu, yellowpages.com, urbandictionary. http://rails100.pbwiki.com/Alexa+Rankings

My site is currently in the middle of this list and I can say that most of our scaling and tuning effort has gone into the database and not Ruby/Rails.

The ranks are updated regularly (the sites themselves, slightly less regularly)

link|improve this answer
This seems to be still up to date. – sbwoodside May 1 '11 at 6:06
feedback

Twitter, although it's been said that they're abandoning that framework (as it turns out that RoR is hard to scale). If you're building a website that gets heavy traffic you may want to check out some of the interviews/articles related to the problems they've been having (as it might help you in development :):

http://www.radicalbehavior.com/5-question-interview-with-twitter-developer-alex-payne/
http://www.techcrunch.com/2008/05/01/twitter-said-to-be-abandoning-ruby-on-rails/
http://www.texasstartupblog.com/2007/04/12/twitter-blaming-ruby-on-rails-for-failures/
http://www.slideshare.net/Blaine/scaling-twitter

More sites:
Basecamp
43 things
pitchfork media
penny arcade
a list apart
the yellow pages

There are some big sites listed here: http://www.mslater.com/2006/11/17/sites-built-with-ruby-on-rails

And you can view Ruby on Rails sites listed by traffic here: http://rankedindex.com/rails

link|improve this answer
6  
As of 2010, Twitter is still using Rails and plans to continue. Certain key parts of the backend (the messaging system) are implemented in other languages, but Rails is still a key component. Twitter's lead architect holds Rails blameless, instead saying that the problem was the architecture. It was originally designed like a CMS but should have been designed like a messaging system. – Mark Thomas Sep 26 '10 at 23:45
feedback

Twitter is not abandoing rails as everyone ponts out they simply moved their middleware layer(queue) to a more non scripted non dynamic language(scala) that will definately process and scale better than ruby.

Twitter still uses rails extensively for their front end which they keep updating in small iterations.

link|improve this answer
feedback

There's twitter (with problems) and basecamp and a few others, but it'll take time. PHP was probably 5 years old before yahoo became the first really large website to use it.

There's also a tradeoff involved: most of these languages and frameworks are great to develop in. Once traffic and revenue rolls in, it becomes cheaper to rework at least parts in C++ etc.

link|improve this answer
feedback

http://www.streeteasy.com/

Somewhat out of date list of the largest sites running Rails. http://rails100.pbwiki.com/Compete+Rankings

Don't buy into the Rails can't scale hullabaloo. If you are an ignorant twit, nothing scales. There is no platform out there that doesn't have the same bottlenecks as Rails, and guess what, it's mostly the database and disk. Caching and query optimization is your friend.

link|improve this answer
feedback

yellowpages.com (mentioned above) is probably the largest site of any of these in terms of traffic and page views/sec. They've done a nice job.

link|improve this answer
feedback

I hope to be in production in about two weeks. My application will be used by insurance companies to authorize charges for patients in a hospital.

link|improve this answer
feedback

http://successbox.co.uk - elearning, modular premium courses made up of downloadable and branded PDF/MP3/MPEG files.

http://kickstartme.co.uk - event management system for web developer courses

These are deployed on to production servers using Vlad, mod_rails and Apache.

link|improve this answer
feedback

EmailFax http://emailfax.com.br

BielBid http://bielbid.com.br

link|improve this answer
feedback

YellowPages is using rails.

link|improve this answer
feedback

One from the Financial world: http://about.reuters.com/productinfo/compliance/MiFID/material/ReutersTCAS.pdf

Edit: In the interests of accuracy, I should mention that this app was discontinued on 31-Dec-2008 :)

link|improve this answer
feedback

Parts of http://www.lonelyplanet.com are using JRuby on Rails (I'm a dev there). Rails is also used for serving up in app purchases for the iPhone app, plus a few in house apps.

The rest of the site is written using various J2EE tech. The Rails part of the site is much easier to work with and iterate through than the Java parts. And when it comes down to the DB and browser bandwidth usually being the bottleneck, there isn't much between them in terms of performance.

link|improve this answer
feedback

The company I recently left, and now contract with are switching to rails from asp.net on the belief that it will improve development. They are scrapping 6 months of develoment, and so I'll be interested to see what comes of it.

link|improve this answer
feedback

We've got a list on BuiltWith Trends as well -

http://trends.builtwith.com/framework/Ruby-on-Rails

Scribd appears to be the biggest user.

link|improve this answer
feedback

This interesting discussion thread is linked at www.DrinkRails.com

link|improve this answer
feedback

Hirners Hotel Guide: http://www.hirners.com

link|improve this answer
feedback

The company I work for (a very large IT services firm) uses Rails for it's corporate website (CMS & Front End). ~4m hits/month.

Also, I happened to learn that Skytap (enterprise cloud provider) uses Rails for their cloud administration/provisioning front end.

link|improve this answer
feedback

GROUPON is built on ruby on rails.

The new site is built in Ruby on Rails (still sharing the same code base as The Point), and sports a classy new design courtesy of our friends at Firebelly.

From the Groupon Blog. http://www.groupon.com/blog/2009/07/

Andrew the CEO has mentioned in interviews how he likes rails because developers have fun with it.

link|improve this answer
Update: Groupon is hosted on EngineYard. engineyard.com/blog/2011/… – Underwood Jan 27 at 2:49
feedback

Your Answer

 
or
required, but never shown

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