Ruby on Rails

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Mysekurity (talk | contribs) at 04:45, 3 October 2012 (→‎Trademarks: cleanup multi-line {{cite}}s. Just makes it a lot more readable). 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.8 / August 9, 2012 (2012-08-09)
Preview release
3.2.4.rc1 / May 28, 2012 (2012-05-28)
Repository
Written inRuby
Operating systemCross-platform
TypeWeb application framework
LicenseMIT License
Websiterubyonrails.org

Ruby on Rails, often shortened to Rails, 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 ability to gather information from the web server, talk to or query the database, and render templates out of the box. As a result, Rails features a routing system that is independent of the web server.

Ruby on Rails emphasize the use of well-known software engineering patterns and principles, as Active record pattern, Convention over Configuration, Don't Repeat Yourself and Model-View-Controller.

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, Asset Pipeline, Streaming, jQuery as default Javascript Library and newly introduced CoffeeScript and Sass into the stack[17]

Rails 3.2 was released on January 20, 2012 with performance enhancement for development mode, Faster Routing Engine (as known as journey engine), Automatic Query Explain and Tagged Logging [18]. Rails 3.2.x is the last version that supports Ruby 1.8.7. [19]

Technical overview

Like many web frameworks, Ruby on Rails uses 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 requests from the web server to the application, and responds 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 on to the view. A controller may provide one or more actions. In Ruby on Rails, an action is typically a basic unit that 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 not be directly accessible by external web requests. Rails encourages developers to use RESTful routes, which include actions such as: create, new, edit, update, destroy, show, and index, as these are routed automatically by convention in the routes file if specified.[clarification needed]

A view in the default configuration of Rails is an erb file. It is typically converted to output html at run-time, although, in theory, any format 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.[20] 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. 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.[21]

Ruby on Rails is also noteworthy for its extensive use of the JavaScript libraries Prototype and Script.aculo.us for Ajax.[22] 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. Additionally, CoffeeScript was introduced in Rails 3.1 as the default Javascript language.

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

Rails 3.1 introduced Sass as standard CSS templating.

By default, the server uses Embedded Ruby in the HTML views, with files having an html.erb extension. Rails supports swapping-in alternative templating languages, such as HAML and Mustache.

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.[23]

Rails 3.2 series is the last series to support Ruby 1.8.7.

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. Rails 3.2 deprecates the old plugins Rails 2-3-stable style in which plugins are to be placed under vendor/plugins, in favor of packaged gems. [24]

Deployment

Ruby on Rails is often installed using RubyGems, a package manager[25] which is included with current versions of Ruby. Many free Unix-like systems 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.

"Fat models, skinny controllers" means that most of the application logic should be placed within the model while leaving the controller as light as possible.

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",[26] the word "RAILS",[27] and the official Rails logo.[28] As a consequence, in the summer of 2007, Hansson denied permission to Apress 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.[29][30] 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.[29]

Reception

Rails running on Matz's Ruby Interpreter (the de facto reference interpreter for Ruby) had been criticized for issues with scalability.[31] 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.[32][33] The user interface aspects of the site continue to run Ruby on Rails.[34]

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, Shopify, and Basecamp.[35] As of February 2012, it is estimated that over 235,000 web sites are running Ruby on Rails.[36]

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. ^ "Ruby on Rails 3.1 Release Notes". 2012-09-01.
  18. ^ "Ruby on Rails 3.2 Release Notes". 2012-09-01.
  19. ^ "Rails/master is now 4.0.0.beta". 2012-09-01.
  20. ^ There were quite a few changes in the 2.0 release, including the way that Ruby on Rails generates scaffolding code.
  21. ^ Official deployment instructions suggests use of Passenger
  22. ^ Ruby on Rails includes the Prototype JavaScript framework and the Scriptaculous JavaScript controls and visual effects library.
  23. ^ "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+.
  24. ^ "Rails 3.2.0.rc2 has been released!". 2012-09-01.
  25. ^ "Ruby on Rails: Download". RubyonRails.org.
  26. ^ ""Ruby on Rails" Trademark Status". USPTO. Retrieved 2007-08-01.
  27. ^ ""Rails" Trademark Status". USPTO. Retrieved 2007-08-01.
  28. ^ "Rails Logo Trademark Status". USPTO. Retrieved 2007-08-01.
  29. ^ a b Forde, Pete (2007-07-23). "Beginning Rails: From Novice to Professional". Retrieved 2007-08-01.
  30. ^ Cooper, Peter (2007-07-24). "David Heinemeier Hansson says No to Use of Rails Logo". Retrieved 2007-08-01.
  31. ^ "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.
  32. ^ 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)
  33. ^ "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."
  34. ^ 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.
  35. ^ "Here's Why Ruby On Rails Is Hot". Business Insider. Retrieved February 10, 2012.
  36. ^ "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)

External links