Everipedia Logo
Everipedia is now IQ.wiki - Join the IQ Brainlist and our Discord for early access to editing on the new platform and to participate in the beta testing.
Ruby on Rails

Ruby on Rails

Ruby on Rails, or Rails, is a server-side web application framework written in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages. It encourages and facilitates the use of web standards such as JSON or XML for data transfer, HTML, CSS and JavaScript for user interfacing. In addition to MVC, Rails emphasizes the use of other well-known software engineering patterns and paradigms, including convention over configuration (CoC), don't repeat yourself (DRY), and the active record pattern.[4]

Ruby on Rails' emergence in the 2000s greatly influenced web app development, through innovative features such as seamless database table creations, migrations, and scaffolding of views to enable rapid application development. Ruby on Rails' influence on other web frameworks remains apparent today, with many frameworks in other languages borrowing its ideas, including Django in Python, Catalyst in Perl, Laravel and CakePHP in PHP, Phoenix in Elixir, Play in Scala, and Sails.js in Node.js.

Ruby on Rails
Original author(s)David Heinemeier Hansson
Initial release13 December 2005[1]
Stable release6.0.0 (August 15, 2019[2]) [±][70]
Repository
Written inRuby
Size22.2MB[3]
TypeWeb application framework
LicenseMIT License
Website

History

David Heinemeier Hansson extracted Ruby on Rails from his work on the project management tool Basecamp at the web application company also called Basecamp (37Signals at the time).[5] Hansson first released Rails as open source in July 2004, but did not share commit rights to the project until February 2005. 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",[6] which was released in October 2007.

Rails version 2.3 was released on March 15, 2009, with major new developments in templates, engines, Rack and nested model forms. Templates enable the developer to generate a skeleton application with custom gems and configurations. Engines give developers the ability to 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 Action Controller.[7]

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.[8] Merb was merged with Rails as part of the Rails 3.0 release.[9][10]

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

Rails 3.2 was released on January 20, 2012 with a faster development mode and routing engine (also known as Journey engine), Automatic Query Explain and Tagged Logging.[12] Rails 3.2.x is the last version that supports Ruby 1.8.7.[13] Rails 3.2.12 supports Ruby 2.0.[14]

Rails 4.0 was released on June 25, 2013, introducing Russian Doll Caching, Turbolinks, Live Streaming as well as making Active Resource, Active Record Observer and other components optional by splitting them as gems.[15]

Rails 4.1 was released on April 8, 2014, introducing Spring, Variants, Enums, Mailer previews, and secrets.yml.[16]

Rails 4.2 was released on December 19, 2014, introducing Active Job, asynchronous emails, Adequate Record, Web Console, and foreign keys.[17]

Rails 5.0 was released on June 30, 2016, introducing Action Cable, API mode, and Turbolinks 5.[18]

Rails 5.0.0.1 was released on August 10, 2016, with Exclusive use of rails CLI over Rake and support for Ruby version 2.2.2 and above.

Rails 5.1 was released on April 27, 2017, introducing JavaScript integration changes (management of JavaScript dependencies from NPM via Yarn, optional compilation of JavaScript using Webpack, and a rewrite of Rails UJS to use vanilla JavaScript instead of depending on jQuery), system tests using Capybara, encrypted secrets, parameterized mailers, direct & resolved routes, and a unified form_with helper replacing the form_tag/form_for helpers.[19]

Rails 5.2 was released on April 9, 2018, introducing new features that include ActiveStorage, built-in Redis Cache Store, updated Rails Credentials and a new DSL that allows for configuring a Content Security Policy for an application.[20]

Rails 5.2.2 was released on December 4, 2018, introducing numerous bug fixes and several logic improvements.[21]

Version history
VersionDateNotes
Old version, no longer supported:1.0[1]December 13, 2005
Old version, no longer supported:1.2[23]January 19, 2007
Old version, no longer supported:2.0[24]December 7, 2007
Old version, no longer supported:2.1[25]June 1, 2008
Old version, no longer supported:2.2[26]November 21, 2008
Old version, no longer supported:2.3[7]March 16, 2009
Old version, no longer supported:3.0[28]August 29, 2010
Old version, no longer supported:3.1[29]August 31, 2011
Old version, no longer supported:3.2[30]January 20, 2012
Old version, no longer supported:4.0[31]June 25, 2013
Old version, no longer supported:4.1[16]April 8, 2014
Old version, no longer supported:4.2[17]December 19, 2014
Older version, yet still supported:5.0[18]June 30, 2016
Older version, yet still supported:5.1[19]May 10, 2017
Older version, yet still supported:5.2[20]April 9, 2018
Current stable version:6.0
[2]
August 16, 2019
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

Technical overview

Like other web frameworks, Ruby on Rails uses the model–view–controller (MVC) pattern to organize application programming.

In a default configuration, a model in the Ruby on Rails framework maps to a table in a database and to a Ruby file. For example, a model class User will usually be defined in the file 'user.rb' in the app/models directory, and linked to the table 'users' in the database. While developers are free to ignore this convention and choose differing names for their models, files, and database table, this is not common practice and is usually discouraged in accordance with the "convention-over-configuration" philosophy.

A controller is a server-side component of Rails that responds to external requests from the web server to the application, by determining which view file to render. The controller may also have to query one or more models for information and pass these on to the view. For example, in an airline reservation system, a controller implementing a flight-search function would need to query a model representing individual flights to find flights matching the search, and might also need to query models representing airports and airlines to find related secondary data. The controller might then pass some subset of the flight data to the corresponding view, which would contain a mixture of static HTML and logic that use the flight data to create an HTML document containing a table with one row per flight. A controller may provide one or more actions. In Ruby on Rails, an action is typically a basic unit that describes how to respond to a specific external web-browser request. Also, note that the controller/action will be accessible for external web requests only if a corresponding route is mapped to it. Rails encourages developers to use RESTful routes, which include actions such as create, new, edit, update, destroy, show, and index. These mappings of incoming requests/routes to controller actions can be easily set up in the routes.rb configuration file.

A view in the default configuration of Rails is an erb file, which is evaluated and converted to HTML at run-time. Alternatively, many other templating systems can be used for views.

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.[34] 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 is most commonly not connected to the Internet directly, but through some front-end web server. Mongrel was generally preferred over WEBrick in the early days, but it can also run on Lighttpd, Apache, Cherokee, Hiawatha, Nginx (either as a module – Phusion Passenger for example – or via CGI, FastCGI or mod_ruby), and many others. From 2008 onward, Passenger replaced Mongrel as the most-used web server for Ruby on Rails.[35] Ruby is also supported natively on the IBM i.[36]

Ruby on Rails is also noteworthy for its extensive use of the JavaScript libraries, Prototype and Script.aculo.us, for scripting Ajax actions.[37] 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 is the default JavaScript library in Rails 3.1, reflecting an industry-wide move towards 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.[28]

Ruby on Rails 3.2 is the last series of releases that 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), Action Pack, Active Support and Action Mailer. 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. Earlier Rails supported plugins within their own custom framework; version 3.2 deprecates these in favor of standard Ruby "gems".[39]

Deployment

Ruby on Rails is often installed using RubyGems, a package manager[40] 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.

Philosophy and design

Ruby on Rails is intended to emphasize Convention over Configuration (CoC), and the Don't Repeat Yourself

"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.[41]

"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",[42] the word "RAILS",[43] and the official Rails logo.[44] 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.[45][46] 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.[45]

Reception

Scalability

Rails running on Matz's Ruby Interpreter (the de facto reference interpreter for Ruby) had been criticized for issues with scalability.[47] 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.[48][49] The user interface aspects of the site continued to run Ruby on Rails[50] until 2011 when it was replaced due to concerns over performance[51]

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 scalable web applications. Some of the largest sites running Ruby on Rails include Airbnb, GitHub, Scribd, Shopify, Hulu, and Basecamp.[52] As of January 2016, it is estimated that more than 1.2 million web sites are running Ruby on Rails.[53][54]

Security

In March 2012, security researcher Egor Homakov discovered a "mass assignment" vulnerability that allowed certain Rails applications to be remotely exploited, and demonstrated it by non-maliciously hacking GitHub after his earlier attempts at responsible disclosure were dismissed.[55]

On September 24, 2013, a session cookie persistence security flaw was reported in Ruby on Rails.

In a default configuration, the entire session hash is stored within a session cookie known as CookieStore, allowing any authenticated session possessing the session cookie to log in as the target user at any time in the future. As a workaround, administrators are advised to configure cookies to be stored on the server using mechanisms such as ActiveRecordStore.[56]

Researchers Daniel Jackson and Joseph Near developed a data debugger they called "Space" that can analyze the data access of a Rails program and determine if the program properly adheres to rules regarding access restrictions.

On April 15, 2016, Near reported that an analysis of 50 popular Web applications using Space uncovered 23 previously unknown security flaws.[57]

References

[1]
Citation Linkweblog.rubyonrails.orgDavid. "Rails 1.0: Party like it's one oh oh!". Ruby on Rails. Retrieved 2017-03-01.
Sep 21, 2019, 5:48 AM
[2]
Citation Linkweblog.rubyonrails.orgdhh. "Rails 6.0: Action Mailbox, Action Text, Multiple DBs, Parallel Testing, Webpacker by default, and Zeitwerk". Ruby on Rails. Retrieved 2019-08-17.
Sep 21, 2019, 5:48 AM
[3]
Citation Linkgithub.com"Release v5.2.3 · rails/rails · GitHub". Retrieved 13 August 2019.
Sep 21, 2019, 5:48 AM
[4]
Citation Linkguides.rubyonrails.org"Getting Started with Rails: What Is Rails?". Ruby on Rails Guides. Retrieved 10 August 2014.
Sep 21, 2019, 5:48 AM
[5]
Citation Linkdev.mysql.comGrimmer, Lenz−− (February 2006). "Interview with David Heinemeier Hansson from Ruby on Rails". MySQL AB. Archived from the original on February 25, 2013. Retrieved 2008-06-08. Cite uses deprecated parameter |deadurl= (help)
Sep 21, 2019, 5:48 AM
[6]
Citation Linkweblog.rubyonrails.orgHansson, David (August 7, 2006). "Ruby on Rails will ship with OS X 10.5 (Leopard)". Retrieved 2008-06-08.
Sep 21, 2019, 5:48 AM
[7]
Citation Linkweblog.rubyonrails.orgHansson, David (March 16, 2009). "Rails 2.3: Templates, Engines, Rack, Metal, much more!".
Sep 21, 2019, 5:48 AM
[8]
Citation Linkrubyonrails.org"The day Merb joined Rails". 2008-12-27. Archived from the original on 2013-02-09. Cite uses deprecated parameter |deadurl= (help)
Sep 21, 2019, 5:48 AM
[9]
Citation Linkedgeguides.rubyonrails.org"Ruby on Rails 3.0 Release Notes — Ruby on Rails Guides". Edgeguides.rubyonrails.org. Retrieved 2017-05-24.
Sep 21, 2019, 5:48 AM
[10]
Citation Linkwww.sdtimes.com"Ruby on Rails 3.0 goes modular". sdtimes.com. 2010-02-10. Retrieved 2010-08-06.
Sep 21, 2019, 5:48 AM
[11]
Citation Linkguides.rubyonrails.org"Ruby on Rails 3.1 Release Notes". 2012-09-01.
Sep 21, 2019, 5:48 AM
[12]
Citation Linkguides.rubyonrails.org"Ruby on Rails 3.2 Release Notes". 2012-09-01.
Sep 21, 2019, 5:48 AM
[13]
Citation Linkweblog.rubyonrails.org"Rails/master is now 4.0.0.beta". 2012-09-01.
Sep 21, 2019, 5:48 AM
[14]
Citation Linkgithub.comRails 3.2.x is now compatible with Ruby 2.0.0 by sikachu · Pull Request #9406 · rails/rails · GitHub. Github.com. Retrieved on 2014-05-30.
Sep 21, 2019, 5:48 AM
[15]
Citation Linkweblog.rubyonrails.org"Rails 4.0: Final version released! | Riding Rails". Weblog.rubyonrails.org. 2013-06-25. Retrieved 2017-05-24.
Sep 21, 2019, 5:48 AM
[16]
Citation Linkweblog.rubyonrails.org"Rails 4.1.0: Spring, Variants, Enums, Mailer previews, secrets.yml". weblog.rubyonrails.org.
Sep 21, 2019, 5:48 AM
[17]
Citation Linkweblog.rubyonrails.org"Rails 4.2: Active Job, Asynchronous Mails, Adequate Record, Web Console, Foreign Keys". Ruby on Rails. Retrieved 5 Dec 2015.
Sep 21, 2019, 5:48 AM
[18]
Citation Linkweblog.rubyonrails.org"Rails 5.0: Action Cable, API mode, and so much more". Ruby on Rails. Retrieved 19 Nov 2016.
Sep 21, 2019, 5:48 AM
[19]
Citation Linkweblog.rubyonrails.org"Rails 5.1: Loving JavaScript, System Tests, Encrypted Secrets, and more". Ruby on Rails. Retrieved 10 May 2017.
Sep 21, 2019, 5:48 AM
[20]
Citation Linkweblog.rubyonrails.org"Rails 5.2.0 FINAL: Active Storage, Redis Cache Store, HTTP/2 Early Hints, CSP, Credentials". Ruby on Rails. Retrieved 9 April 2018.
Sep 21, 2019, 5:48 AM