Ruby on Rails
Go to file
Xavier Noria 73fb2977ca restores the guides layout header [ci skip] 2016-02-13 17:56:56 +01:00
actioncable Fix grammar `a` to `an` [ci skip] 2016-02-13 20:44:44 +09:00
actionmailer Change x-gzip to gzip in docs [ci skip] 2016-02-13 17:11:05 +02:00
actionpack Only write to collection cache if we have a callable cache key. 2016-02-12 22:37:11 +01:00
actionview Fix grammar `a` to `an` [ci skip] 2016-02-13 20:44:44 +09:00
activejob [ci skip] Fix enqueuing spelling to maintain consistency 2016-02-12 23:49:08 +05:30
activemodel Add documentation about method to describe how it works [ci skip] 2016-02-04 20:03:24 +02:00
activerecord Merge pull request #23377 from bogdan/last-with-sql 2016-02-13 09:45:04 -05:00
activesupport Merge pull request #23596 from afn/issue-23058 2016-02-10 16:03:10 -08:00
ci Remove commented out code in `ci/travis.rb` [ci skip] 2016-02-04 09:15:25 +09:00
guides restores the guides layout header [ci skip] 2016-02-13 17:56:56 +01:00
railties Fix expected hash syntax. 2016-02-12 23:31:46 +01:00
tasks Wrangle the asset build into something that sounds more general 2016-02-01 05:03:03 +10:30
tools make it possible to customize the executable inside rereun snippets. 2015-06-13 11:58:43 +02:00
.gitignore Test against Rails edge by default. CI against 4.2 also. 2015-10-16 00:58:06 -07:00
.travis.yml Revert "No need to specify Ruby patch version on Travis CI" 2016-02-06 15:34:20 +09:00
.yardopts Let YARD document the railties gem 2010-09-09 18:24:34 -07:00
CODE_OF_CONDUCT.md Move the CoC text to the Rails website 2015-08-21 12:32:59 -07:00
CONTRIBUTING.md Typo in Contributing.md documentation 2016-01-06 23:34:41 +00:00
Gemfile Update turbolinks-rails for passing railties test 2016-02-05 17:02:22 +05:30
Gemfile.lock Update turbolinks-rails for passing railties test 2016-02-05 17:02:22 +05:30
RAILS_VERSION Preparing for Rails 5.0.0.beta2 2016-02-01 14:37:52 -07:00
README.md Replace old Rails greeting references 2016-02-06 09:14:42 +02:00
RELEASING_RAILS.md Update RELEASING_RAILS.md 2016-02-12 08:38:21 -05:00
Rakefile Add task to test the release preparation 2015-12-18 14:56:26 -02:00
load_paths.rb require "rubygems" is obsolete in Ruby 1.9.3 2012-05-13 14:47:25 +02:00
rails.gemspec Initial stab at adding Action Cable to rails/master 2015-12-14 16:38:37 +01:00
version.rb Preparing for Rails 5.0.0.beta2 2016-02-01 14:37:52 -07:00

README.md

Welcome to Rails

Rails is a web-application framework that includes everything needed to create database-backed web applications according to the Model-View-Controller (MVC) pattern.

Understanding the MVC pattern is key to understanding Rails. MVC divides your application into three layers, each with a specific responsibility.

The Model layer represents your domain model (such as Account, Product, Person, Post, etc.) and encapsulates the business logic that is specific to your application. In Rails, database-backed model classes are derived from ActiveRecord::Base. Active Record allows you to present the data from database rows as objects and embellish these data objects with business logic methods. You can read more about Active Record in its README. Although most Rails models are backed by a database, models can also be ordinary Ruby classes, or Ruby classes that implement a set of interfaces as provided by the Active Model module. You can read more about Active Model in its README.

The Controller layer is responsible for handling incoming HTTP requests and providing a suitable response. Usually this means returning HTML, but Rails controllers can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and manipulate models, and render view templates in order to generate the appropriate HTTP response. In Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and controller classes are derived from ActionController::Base. Action Dispatch and Action Controller are bundled together in Action Pack. You can read more about Action Pack in its README.

The View layer is composed of "templates" that are responsible for providing appropriate representations of your application's resources. Templates can come in a variety of formats, but most view templates are HTML with embedded Ruby code (ERB files). Views are typically rendered to generate a controller response, or to generate the body of an email. In Rails, View generation is handled by Action View. You can read more about Action View in its README.

Active Record, Active Model, Action Pack, and Action View can each be used independently outside Rails. In addition to them, Rails also comes with Action Mailer (README), a library to generate and send emails; Active Job (README), a framework for declaring jobs and making them run on a variety of queueing backends; Action Cable (README), a framework to integrate WebSockets with a Rails application; and Active Support (README), a collection of utility classes and standard library extensions that are useful for Rails, and may also be used independently outside Rails.

Getting Started

  1. Install Rails at the command prompt if you haven't yet:

     $ gem install rails
    
  2. At the command prompt, create a new Rails application:

     $ rails new myapp
    

    where "myapp" is the application name.

  3. Change directory to myapp and start the web server:

     $ cd myapp
     $ rails server
    

    Run with --help or -h for options.

  4. Using a browser, go to http://localhost:3000 and you'll see: "Yay! Youre on Rails!"

  5. Follow the guidelines to start developing your application. You may find the following resources handy:

Contributing

We encourage you to contribute to Ruby on Rails! Please check out the Contributing to Ruby on Rails guide for guidelines about how to proceed. Join us!

Everyone interacting in Rails and its sub-projects' codebases, issue trackers, chat rooms, and mailing lists is expected to follow the Rails code of conduct.

Code Status

Build Status

License

Ruby on Rails is released under the MIT License.