Go to file
Carlos Antonio da Silva 3e47e193c6 Merge pull request #10286 from neerajdotname/fix-wrong-test-name-and-failure-message
fix wrong test description and failure message
2013-04-21 09:22:51 -07:00
actionmailer copy-edit pass in AM changelog [ci skip] 2013-04-09 22:41:03 +02:00
actionpack Removing tests for deprecated options in active support. The 2013-04-21 11:07:26 -04:00
activemodel Merge pull request #10286 from neerajdotname/fix-wrong-test-name-and-failure-message 2013-04-21 09:22:51 -07:00
activerecord Merge pull request #10280 from vipulnsward/fix_typos_temp 2013-04-21 01:28:59 -07:00
activesupport symbolize_keys => symbolize_keys! on new hash; 2013-04-19 19:56:29 +05:30
ci Fix copy table index test; Change == to ! on false in travis.rb 2013-03-21 10:57:52 +05:30
guides Ruby On Rails -> Ruby on Rails [ci skip] 2013-04-16 17:06:16 +02:00
railties Merge branch 'master' of github.com:rails/rails 2013-04-19 10:27:35 -07:00
tasks Fix release task after ceb3b8717beb9818fbfbab429a8aa697591e184a 2013-04-01 18:26:34 -03:00
tools Remove REE GC stats since master is 1.9.3 2012-10-26 08:24:27 -07:00
.gitignore encapsulates API generation in Rails::API::Task 2013-03-30 00:10:52 +01:00
.travis.yml There's no need to install test group in travis 2013-03-11 15:51:24 -03:00
.yardopts Let YARD document the railties gem 2010-09-09 18:24:34 -07:00
CONTRIBUTING.md refer to the contributing guide on how to create issues. 2013-03-18 15:13:37 +01:00
Gemfile Use the same uglifier version that the generated applications 2013-04-18 14:21:28 -03:00
install.rb Do not use --local option when installing the gems 2013-02-25 11:51:49 -03:00
load_paths.rb require "rubygems" is obsolete in Ruby 1.9.3 2012-05-13 14:47:25 +02:00
RAILS_VERSION Preparing for 4.0.0.beta1 release 2013-02-25 08:31:50 -06:00
rails.gemspec Use sprockets-rails 2.0.0.rc4 2013-04-18 13:37:43 -05:00
Rakefile unifies API generation 2013-03-30 00:10:52 +01:00
README.md editorial touch, remove these dots 2013-04-16 10:07:49 +02:00
RELEASING_RAILS.rdoc Don't use hash fragment for travis link 2013-03-23 13:15:25 -03:00
version.rb Fix release task after ceb3b8717beb9818fbfbab429a8aa697591e184a 2013-04-01 18:26:34 -03:00

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 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).

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. 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 Record 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 manipulate models and render view templates in order to generate the appropriate HTTP response.

In Rails, the Controller and View layers are handled together by Action Pack. These two layers are bundled in a single package due to their heavy interdependence. This is unlike the relationship between Active Record and Action Pack, which are independent. Each of these packages can be used independently outside of Rails. You can read more about Action Pack in its README.

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. Go to http://localhost:3000 and you'll see: "Welcome aboard: You're riding Ruby 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!

Code Status

  • Build Status
  • Dependencies

License

Ruby on Rails is released under the MIT License.