Jump to content

Ruby on Rails

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 60.241.153.201 (talk) at 10:27, 3 April 2012. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Ruby on Rails
Original author(s)David Heinemeier Hansson
Developer(s)Rails Core Team
Initial releaseJuly 2004 (2004-07)
Stable release
3.2.2 / March 1, 2012 (2012-03-01)
Preview release
3.2.0.rc2 / January 4, 2012 (2012-01-04)
Repository
Written inRuby
Operating systemCross-platform
TypeWeb application framework
LicenseMIT License
Websiterubyonrails.org

Ruby on Rails (aka Ruby/Rails), often shortened to Rails or RoR, is an open source full-stack web application framework for the Ruby programming language. Ruby on Rails is not to be confused with Ruby, which is a general-purpose programming language, on which Ruby on Rails runs. Ruby itself existed for more than 10 years before the first release of Ruby on Rails. Rails is a full-stack framework, meaning that it gives the Web developer the full ability to gather information from the web server, talking to or querying the database, and template rendering out of the box. As a result, Rails features a routing system that is independent of the Web server.

History

Version history
Version Date
1.0[1] December 13, 2005
1.2[2] January 19, 2007
2.0[3] December 7, 2007
2.1[4] June 1, 2008
2.2[5] November 21, 2008
2.3[6] March 16, 2009
3.0[7] August 29, 2010
3.1[8] August 31, 2011
3.2[9] January 20, 2012

David Heinemeier Hansson extracted Ruby on Rails from his work on Basecamp, a project management tool by 37signals (now a web application company).[10] Hansson first released Rails as open source in July 2004, but did not share commit rights to the project until February 2005.[11] In August 2006, the framework reached a milestone when Apple announced that it would ship Ruby on Rails with Mac OS X v10.5 "Leopard",[12] which was released in October 2007.

Rails version 2.3 was released on March 15, 2009. Major new developments in Rails include templates, engines, Rack and nested model forms. Templates enable the developer to generate a skeleton application with custom gems and configurations. Engines let one reuse application pieces complete with routes, view paths and models. The Rack web server interface and Metal allow one to write optimized pieces of code that route around ActionController.[13]

On December 23, 2008, Merb, another web application framework was launched, and Ruby on Rails announced it would work with the Merb project to bring "the best ideas of Merb" into Rails 3, ending the "unnecessary duplication" across both communities.[14] Merb was merged with Rails as part of the Rails 3.0 release.[15][16]

Rails 3.1 was released on August 31, 2011, featuring reversible database migrations, and the asset pipeline.

Technical overview

Like many web frameworks, Ruby on Rails uses a variant[17] of the Model/View/Controller (MVC) architecture pattern to organize application programming.

In a default configuration, a model in a Ruby on Rails framework maps to a table in a database. By convention, a model named User will map to the database table users, and the model will have a filename user.rb within app/models. While developers can choose to use whatever model name and database table name they wish, this is not a common practice and it's usually discouraged because Rails philosophy is to use convention over configuration.

A controller is the component of Rails that responds to external request from the web server to the application, and respond to the external request by determining which view file to render. The controller may also have to query the model directly for information and pass these onto the view. A controller may contain one or more actions. In Ruby on Rails, action is typically a basic unit which describes a single rule on how to respond to a specific external web-browser request. Also note that, if a controller/action is not mapped to the Rails router, the controller/action will be directly inaccessible to external web requests. By convention, Rails encourage developers to use a RESTful route which contain actions named create, new, edit, update, destroy, and index, as these are routed automatically by convention in the routes file if specified.

A view typically is a erb file in the default configuration of Rails. It is typically converted to output html at run-time, although in theory any formats can be used as a view.

Ruby on Rails includes tools that make common development tasks easier "out of the box", such as scaffolding that can automatically construct some of the models and views needed for a basic website.[18] Also included are WEBrick, a simple Ruby web server that is distributed with Ruby, and Rake, a build system, distributed as a gem. Together with Ruby on Rails these tools provide a basic development environment.

Ruby on Rails relies on a web server to run it. Mongrel was generally preferred over WEBrick at the time of writing,[citation needed] but it can also be run by Lighttpd, Apache, Cherokee, Hiawatha, nginx (either as a module - Passenger for example - or via CGI, FastCGI or mod_ruby), and many others. From 2008 onwards, the Passenger web server replaced Mongrel as the most used web server for Ruby on Rails.[19]

Ruby on Rails is also noteworthy for its extensive use of the JavaScript libraries Prototype and Script.aculo.us for Ajax.[20] Ruby on Rails initially utilized lightweight SOAP for web services; this was later replaced by RESTful web services. Ruby on Rails 3.0 uses a technique called Unobtrusive JavaScript to separate the functionality (or logic) from the structure of the web page. jQuery is fully supported as a replacement for Prototype and in Rails 3.1 is the default javascript library, reflecting an industry-wide move towards using jQuery.

Since version 2.0, Ruby on Rails by default offers both HTML and XML as output formats. The latter is the facility for RESTful web services.

The server uses embedded ruby in the HTML views with files having an html.erb extension. Other templating methods are available such as HAML which removes much of the normal page 'clutter' (for example html '<' and '>' and ruby indent 'end's)

Ruby on Rails 3.0 has been designed to work with Ruby 1.8.7, Ruby 1.9.2, and JRuby 1.5.2+; earlier versions are not supported.[21]

Framework structure

Ruby on Rails is separated into various packages, namely ActiveRecord (an object-relational mapping system for database access), ActiveResource (provides web services), ActionPack, ActiveSupport and ActionMailer. Prior to version 2.0, Ruby on Rails also included the Action Web Service package that is now replaced by Active Resource. Apart from standard packages, developers can make plugins to extend existing packages.

Deployment

Ruby on Rails is often installed using RubyGems, a package manager[22] which is included with current versions of Ruby. Many Linux distributions also support installation of Ruby on Rails and its dependencies through their native package management system.

Ruby on Rails is typically deployed with a database server such as MySQL or PostgreSQL, and a web server such as Apache running the Phusion Passenger module.

There are many Ruby on Rails hosting services such as Heroku, Engine Yard, and Rails Playground.

Philosophy and design

Ruby on Rails is intended to emphasize Convention over Configuration (CoC), and the rapid development principle of Don't Repeat Yourself (DRY).

"Convention over Configuration" means a developer only needs to specify unconventional aspects of the application. For example, if there is a class Sale in the model, the corresponding table in the database is called sales by default. It is only if one deviates from this convention, such as calling the table "products sold", that the developer needs to write code regarding these names. Generally, Ruby on Rails conventions lead to less code and less repetition.[citation needed]

"Don't repeat yourself" means that information is located in a single, unambiguous place. For example, using the ActiveRecord module of Rails, the developer does not need to specify database column names in class definitions. Instead, Ruby on Rails can retrieve this information from the database based on the class name.

Trademarks

In March 2007, David Heinemeier Hansson filed three Ruby on Rails related trademark applications to the USPTO. These applications regard the phrase "RUBY ON RAILS",[23] the word "RAILS",[24] and the official Rails logo.[25] As a consequence, in the summer of 2007, Hansson denied to Apress the permission to use the Ruby on Rails logo on the cover of a new Ruby on Rails book written by some authoritative community members. The episode gave rise to a polite protest in the Ruby on Rails community.[26][27] In response to this criticism, Hansson replied:

I only grant promotional use [of the Rails logo] for products I'm directly involved with. Such as books that I've been part of the development process for or conferences where I have a say in the execution. I would most definitely seek to enforce all the trademarks of Rails.[26]

Reception

Rails running on Matz's Ruby Interpreter (the de facto reference interpreter for Ruby) had been criticized for issues with scalability.[28] These critics often mentioned various Twitter outages in 2007 and 2008, which spurred Twitter's partial transition to Scala (which runs on the Java Virtual Machine) for their queueing system and other middleware.[29][30] The user interface aspects of the site continue to run Ruby on Rails.[31]

In 2011, Gartner Research noted that despite criticisms and comparisons to Java, many high-profile consumer web firms are using Ruby on Rails to build agile, scalable web applications. Some of the largest sites running Ruby on Rails include Github, Scribd, Groupon, and Basecamp.[32] As of February 2012, it is estimated that over 235,000 web sites are running Ruby on Rails.[33]

See Also

References

  1. ^ "Rails 1.0: Party like it's one oh oh!". Riding Rails. Retrieved June 9, 2010.
  2. ^ "Rails 1.2: REST admiration, HTTP lovefest, and UTF-8 celebrations". Riding Rails. Retrieved June 9, 2010.
  3. ^ "Rails 2.0: It's done!". Riding Rails. Retrieved June 9, 2010.
  4. ^ Rails 2.1: Time zones, dirty, caching, gem dependencies, caching, etc. Riding Rails. Retrieved June 9, 2010.
  5. ^ "Rails 2.2: i18n, HTTP validators, thread safety, JRuby/1.9 compatibility, docs". Riding Rails. Retrieved June 9, 2010.
  6. ^ "Rails 2.3: Templates, Engines, Rack, Metal, much more!". Riding Rails. Retrieved June 9, 2010.
  7. ^ "Rails 3.0: It's ready!". Riding Rails. Retrieved August 30, 2010.
  8. ^ [1]www.github.com
  9. ^ [2]www.github.com
  10. ^ Grimmer, Lenz (February 2006). "Interview with David Heinemeier Hansson from Ruby on Rails". MySQL AB. Retrieved 2008-06-08.
  11. ^ "Rails core team profiles". Retrieved 2008-07-15.
  12. ^ Hansson, David (August 7, 2006). "Ruby on Rails will ship with OS X 10.5 (Leopard)". Retrieved 2008-06-08.
  13. ^ Hansson, David (March 16, 2009). "Rails 2.3: Templates, Engines, Rack, Metal, much more!".
  14. ^ "The day Merb joined Rails". 2008-12-27.
  15. ^ Ruby on Rails 3.0 Release Notes
  16. ^ "Ruby on Rails 3.0 goes modular". sdtimes.com. 2010-02-10. Retrieved 2010-08-06.
  17. ^ Krzywda, Andrzej. "Rails is not MVC". Retrieved 6 January 2012.
  18. ^ There were quite a few changes in the 2.0 release, including the way that Ruby on Rails generates scaffolding code.
  19. ^ Official deployment instructions suggests use of Passenger
  20. ^ Ruby on Rails includes the Prototype JavaScript framework and the Scriptaculous JavaScript controls and visual effects library.
  21. ^ "Rails 3.0: It's ready!". rubyonrails.org. Retrieved 2010-08-30. Rails 3.0 has been designed to work with Ruby 1.8.7, Ruby 1.9.2, and JRuby 1.5.2+.
  22. ^ "Ruby on Rails: Download". RubyonRails.org.
  23. ^ ""Ruby on Rails" Trademark Status". USPTO. Retrieved 2007-08-01.
  24. ^ ""Rails" Trademark Status". USPTO. Retrieved 2007-08-01.
  25. ^ "Rails Logo Trademark Status". USPTO. Retrieved 2007-08-01.
  26. ^ a b Forde, Pete (2007-07-23). "Beginning Rails: From Novice to Professional". Retrieved 2007-08-01.
  27. ^ Cooper, Peter (2007-07-24). "David Heinemeier Hansson says No to Use of Rails Logo". Retrieved 2007-08-01.
  28. ^ "5 Question Interview with Twitter Developer Alex Payne". radicalbehavior.com. 2007-03-29. Retrieved 2009-07-18. By various metrics Twitter is the biggest Rails site on the net right now. Running on Rails has forced us to deal with scaling issues - issues that any growing site eventually contends with – far sooner than I think we would on another framework.
  29. ^ Steve Jenson, Alex Payne, and Robey Pointer interview (2009-04-03). "Twitter on Scala". artima.com. Retrieved 2009-07-18. We had a Ruby-based queuing system that we used for communicating between the Rails front ends and the daemons, and we ended up replacing that with one written in Scala. The Ruby one actually worked pretty decently in a normal steady state, but the startup time and the crash behavior were undesirable.{{cite web}}: CS1 maint: multiple names: authors list (link)
  30. ^ "Twitter jilts Ruby for Scala". theregister.co.uk. 2009-04-01. Retrieved 2009-07-18. By the end of this year, Payne said, Twitter hopes to have its entire middleware infrastructure and its APIs ported to the new language. Ruby will remain, but only on the front end. "We're still happy with Rails for building user facing features... performance-wise, it's fine for people clicking around web pages. It's the heavy lifting, asynchronous processing type of stuff that we've moved away from."
  31. ^ ryan king (2009-09-25). "Twitter on Ruby". evan weaver. Retrieved 2009-09-29. We use Scala for a few things at Twitter, but the majority of the site is Ruby.
  32. ^ "Here's Why Ruby On Rails Is Hot". Business Insider. Retrieved February 10, 2012.
  33. ^ "Ruby on Rails Usage Trends". BuiltWith Trends. Retrieved February 10, 2012.

Bibliography

  • Ruby, Sam; Thomas, Dave; Hansson, David (March 28, 2009). "Agile Web Development with Rails" (Document). Pragmatic Bookshelf. p. 850. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Laurent, Simon St.; Dumbill, Edd (November 28, 2008). "Learning Rails" (Document). O'Reilly Media. p. 442. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Lenz, Patrick (May 1, 2008). "Simply Rails 2" (Document). SitePoint. p. 450. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Tate, Bruce; Hibbs, Curt (August 22, 2006). "Ruby on Rails: Up and Running" (Document). O'Reilly Media. p. 182. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Holzner Ph.D., Steve (November 29, 2006). "Beginning Ruby on Rails" (Document). Wrox. p. 380. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Allan Hardy, Jeffrey; Carneiro Jr, Cloves; Catlin, Hampton (July 20, 2007). "Beginning Ruby on Rails E-Commerce: From Novice to Professional" (Document). Wrox. p. 361. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)
  • Clark, Mike (May 15, 2008). "Advanced Rails Recipes" (Document). Pragmatic Bookshelf. p. 464. {{cite document}}: Unknown parameter |edition= ignored (help); Unknown parameter |isbn= ignored (help); Unknown parameter |url= ignored (help)