What does it mean for a programming language to be "on rails"? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:28:53Z http://stackoverflow.com/feeds/question/183462 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails 14 What does it mean for a programming language to be "on rails"? echoblaze 2008-10-08T15:46:49Z 2008-11-05T18:00:53Z <p>I'm currently working with Groovy and Grails. While Groovy is pretty straight-forward since it's basically Java, I can't say I grok Grails. I read that Groovy is to Grails as Ruby is to Ruby on Rails, but what does that mean?</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183468#183468 9 Answer by Patrick McElhaney for What does it mean for a programming language to be "on rails"? Patrick McElhaney 2008-10-08T15:48:00Z 2008-10-08T15:48:00Z <p>Ruby on Rails is a web application framework for the Ruby programming language. Grails and others are Rails-like frameworks for other languages. </p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183482#183482 6 Answer by Bill the Lizard for What does it mean for a programming language to be "on rails"? Bill the Lizard 2008-10-08T15:50:43Z 2008-10-08T15:50:43Z <p><a href="http://www.rubyonrails.org/" rel="nofollow">Rails</a> is a framework for developing web applications with a database back-end. I think the name originally was a play on words. A train can take you somewhere <em>really</em> fast, but only where the rails go.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183491#183491 1 Answer by Ferruccio for What does it mean for a programming language to be "on rails"? Ferruccio 2008-10-08T15:52:37Z 2008-10-08T15:52:37Z <p>It's an automotive expression. When a car handles exceptionally well, it's said to "corner like driving on rails" (i.e. it gives you excellent control).</p> <p>I don't know if that's where the rails people got that name, but that's how I interpreted it.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183513#183513 0 Answer by MattW. for What does it mean for a programming language to be "on rails"? MattW. 2008-10-08T15:56:54Z 2008-10-08T15:56:54Z <p>It's a metaphor, and I'm almost said that needs explaining. Anyway, it's an extremely good metaphor for what Ruby on Rails does. It makes it extremely easy to do (go to) the common stuff, i. e. testing, validation, deployment, MVC.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183583#183583 7 Answer by Gene T for What does it mean for a programming language to be "on rails"? Gene T 2008-10-08T16:13:03Z 2008-10-11T01:15:07Z <p>I think a framework that strives to be "rails-like" refers to several things: </p> <ul> <li><p>model-level: an AR-patterned ORM (rather than datamapper), migrations or some automated schema and model-layer management, handling foreign keys in the application (not in database schema, and also not using stored procedures or pure DBMS logic)</p></li> <li><p>TDD encouraged: automatically generated skeletons for unit-tests, </p></li> <li><p>naming conventions connecting database table names and model names, controller and view actions and HTML templates</p></li> <li><p>streamlined route recognition and route generation scheme</p></li> <li><p>emphasis on REST architecture</p></li> <li><p>integration with ajax libs: RJS, prototype and scriptaculous</p></li> </ul> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183584#183584 25 Answer by codeLes for What does it mean for a programming language to be "on rails"? codeLes 2008-10-08T16:13:06Z 2008-10-09T13:50:16Z <p>To address your confusion with the metaphor (though it has been answered in other words under your question):</p> <blockquote>Groovy is to Grails as Ruby is to Ruby on Rails, but what does that mean?</blockquote> <p>Grails was a web framework built on/with the Groovy programming language to do the same thing for Groovy that Rails (a web framework for Ruby) does for Ruby.</p> <p><hr /></p> <blockquote>What does it mean to be "on rails"?</blockquote> <p>The answer to this comes down to the essence of these web frameworks.</p> <p>These web frameworks (Grails &amp; Rails) are built on the premise of "convention over configuration", which means that using common conventions to develop web applications can lead to higher productivity and more maintainable applications (this is a gross generalization). And by defining a convention and sticking to that you will find that your applications are easy to generate and quick to get up and running.</p> <p>This is what it means to me to be "on rails", just like a train. When a new train route is developed there is no worry about reinventing the way the train will get from one place to another, it's been solved by a single convention for decades: rails. Just as the tracks on a train route constrain its path from two locations, convention-based web frameworks use conventions to the flexibility of application developers so that they can concentrate on what the essential business problem of their application.</p> <p>One key benefit of a convention for a web framework is that the web framework can now make assumptions on how certain layers of the application hook together. In Rails, one can usually assume that if one's database table has a plural name, the ActiveRecord class mapped to that table will have the corresponding singular name. Consequently, Rails code generators can consume the data-mapping information to generate data access code such as dynamic finders, migrations, lazy-loaded association traversals, etc. This data access code in a configuration-based framework is laborious to code by hand.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/184214#184214 1 Answer by Christoph Schiessl for What does it mean for a programming language to be "on rails"? Christoph Schiessl 2008-10-08T18:38:29Z 2008-10-08T18:38:29Z <p>Really short and simple answer: Convention over Configuration.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/184834#184834 1 Answer by John Flinchbaugh for What does it mean for a programming language to be "on rails"? John Flinchbaugh 2008-10-08T20:49:50Z 2008-10-08T20:49:50Z <p>As said above, Rails and Grails provide conventions for web application development -- naming your pieces a certain way and putting them in the right places get your application working by default with no extra configuration. When you want to deviate from the convention, you can configure your way there.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/186083#186083 12 Answer by Charles Roper for What does it mean for a programming language to be "on rails"? Charles Roper 2008-10-09T06:06:58Z 2008-10-09T14:37:41Z <p>Several people have mentioned the technicalities of what makes Rails/Grails what they are. Several people have also mentioned "convention over configuration" as being the "rails" in Rails/Grails. This is getting closer to the truth. But this is just one characteristic of the broader philisophy of Rails, which is the concept of <strong><a href="http://gettingreal.37signals.com/ch04_Make_Opinionated_Software.php" rel="nofollow">opinionated software</a></strong>.</p> <p>Opinionated software can't be described in only technical terms; it's a philosophy; an ethos; <a href="http://gettingreal.37signals.com/ch04_Make_Opinionated_Software.php" rel="nofollow">an attitude</a>. Like it or <a href="http://tech.rufy.com/2006/11/fatal-flaw-in-opinionated-software.html" rel="nofollow">hate it</a>, <em>that</em> is what's at the heart of Rails.</p> <p>Here's an exceprt from a 2005 <a href="http://www.oreillynet.com/pub/a/network/2005/08/30/ruby-rails-david-heinemeier-hansson.html" rel="nofollow">interview with David Heinemeier Hansson</a>, creator of Rails:</p> <blockquote> <p>Rails is opinionated software. It eschews placing the old ideals of software in a primary position. One of those ideals is flexibility—the notion that we should try to accommodate as many approaches as possible, that we shouldn't pass judgement on one form of development over another. Well, Rails does, and I believe that's why it works.</p> <p>With Rails, you trade flexibility at the infrastructure level to gain flexibility at the application level. If you are happy to work along the golden path that I've embedded in Rails, you gain an immense reward in terms of productivity that allows you to do more, sooner, and better at the application level.</p> </blockquote> <p>There is also a later interview that further <a href="http://www.linuxjournal.com/article/8686" rel="nofollow">explores the subject</a>.</p> <p>So being 'on rails' is a metaphor for being 'opinionated', which is why it is named as it is. That and the fact that "Ruby on Rails" is alliteratve, which any journalist or writer will tell you, is a sure-fire way of hooking people's attention.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/188856#188856 0 Answer by Orion Edwards for What does it mean for a programming language to be "on rails"? Orion Edwards 2008-10-09T19:37:34Z 2008-10-09T19:37:34Z <p>I disagree with the other comments of "on rails is a philosophy about convention over configuration" and so on.</p> <p>While rails does adhere to those philosophies, "Ruby on Rails" is the name of a web framework. Nothing more, nothing less. It's not referring to any specific "on-railsness" about it, it's just a brand name in the same way that McDonald's is a brand name.</p> <p>If someone else writes another framework and calls it "Python on Rails" then there'll be another brand name. If not, "XYZ on rails" just means people are being confused.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/193525#193525 2 Answer by Kibbee for What does it mean for a programming language to be "on rails"? Kibbee 2008-10-11T01:11:13Z 2008-10-11T01:11:13Z <p>Being on rails means you can't control where you are going. It means, you can only go where the rails have been laid. Any attempt to go where the people who laid the rails didn't anticipate you to go will lead to frustration. </p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/266049#266049 1 Answer by Michael Easter for What does it mean for a programming language to be "on rails"? Michael Easter 2008-11-05T18:00:53Z 2008-11-05T18:00:53Z <p>Ruby and Groovy are languages.</p> <p>Ruby on Rails is a ground-breaking webapp framework. See excellent answers on opinionated software above.</p> <p>As a matter of history, a working title for a Groovy webapp framework was <em>Groovy on Rails</em>. However the RoR community objected. The team chose <em>Grails</em> instead.</p>