2011-05-01 11:15:15 +00:00
== Welcome to Rails
2010-07-21 10:37:05 +00:00
2011-05-01 11:15:15 +00:00
Rails is a web-application framework that includes everything needed to create
2011-06-08 17:17:25 +00:00
database-backed web applications according to the {Model-View-Controller (MVC)}[http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller] pattern.
2011-05-24 02:09:05 +00:00
2011-07-27 10:30:35 +00:00
Understanding the MVC pattern is key to understanding Rails. MVC divides your application
2011-05-24 02:09:05 +00:00
into three layers, each with a specific responsibility.
The View layer is composed of "templates" that are responsible for providing
2011-07-27 10:30:35 +00:00
appropriate representations of your application's resources. Templates
2011-08-27 20:55:54 +00:00
can come in a variety of formats, but most view templates are \HTML with embedded Ruby
2011-05-24 02:09:05 +00:00
code (.erb files).
The Model layer represents your domain model (such as Account, Product, Person, Post)
and encapsulates the business logic that is specific to your application. In Rails,
2011-08-27 20:55:54 +00:00
database-backed model classes are derived from ActiveRecord::Base. Active Record allows
2011-05-24 02:09:05 +00:00
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 ActiveModel module. You can read more about Active Record in its
2011-08-13 16:44:18 +00:00
{README}[link:/rails/rails/blob/master/activerecord/README.rdoc].
2010-07-21 10:37:05 +00:00
2011-05-25 12:31:45 +00:00
The Controller layer is responsible for handling incoming HTTP requests and providing a
2011-08-27 20:55:54 +00:00
suitable response. Usually this means returning \HTML, but Rails controllers can also
2011-05-25 12:31:45 +00:00
generate XML, JSON, PDFs, mobile-specific views, and more. Controllers manipulate models
and render view templates in order to generate the appropriate HTTP response.
2010-07-21 10:37:05 +00:00
2011-05-24 02:09:05 +00:00
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.
2011-07-29 23:01:20 +00:00
This is unlike the relationship between Active Record and Action Pack which are
2011-05-24 02:09:05 +00:00
independent. Each of these packages can be used independently outside of Rails. You
2011-08-13 16:44:18 +00:00
can read more about Action Pack in its {README}[link:/rails/rails/blob/master/actionpack/README.rdoc].
2010-07-21 10:37:05 +00:00
== Getting Started
2011-05-01 11:15:15 +00:00
1. Install Rails at the command prompt if you haven't yet:
2010-07-31 09:51:17 +00:00
2010-07-31 10:06:00 +00:00
gem install rails
2010-07-21 10:37:05 +00:00
2011-05-01 11:15:15 +00:00
2. At the command prompt, create a new Rails application:
2010-07-21 10:37:05 +00:00
2010-08-14 05:13:00 +00:00
rails new myapp
2010-07-31 09:51:17 +00:00
where "myapp" is the application name.
3. Change directory to +myapp+ and start the web server:
cd myapp; rails server
Run with <tt>--help</tt> for options.
2010-07-21 10:37:05 +00:00
2011-07-30 07:23:21 +00:00
4. Go to http://localhost:3000 and you'll see:
2010-07-31 09:51:17 +00:00
2010-07-31 10:06:00 +00:00
"Welcome aboard: You're riding Ruby on Rails!"
2010-07-21 10:37:05 +00:00
2011-04-11 19:57:52 +00:00
5. Follow the guidelines to start developing your application. You may find the following resources handy:
2010-07-21 10:37:05 +00:00
2010-07-31 09:51:17 +00:00
* The README file created within your application.
2010-08-26 13:54:53 +00:00
* The {Getting Started with Rails}[http://guides.rubyonrails.org/getting_started.html].
* The {Ruby on Rails Tutorial}[http://railstutorial.org/book].
2010-12-24 20:00:51 +00:00
* The {Ruby on Rails Guides}[http://guides.rubyonrails.org].
* The {API Documentation}[http://api.rubyonrails.org].
2010-07-21 10:37:05 +00:00
2011-09-07 19:57:24 +00:00
== Contributing
2010-07-21 10:37:05 +00:00
2011-05-01 11:15:15 +00:00
We encourage you to contribute to Ruby on Rails! Please check out the {Contributing to Rails
2011-05-23 17:13:22 +00:00
guide}[http://edgeguides.rubyonrails.org/contributing_to_ruby_on_rails.html] for guidelines about how
2010-07-31 09:51:17 +00:00
to proceed. {Join us}[http://contributors.rubyonrails.org]!
2010-07-21 10:37:05 +00:00
2011-09-09 02:53:38 +00:00
== Travis Build Status {<img src="https://secure.travis-ci.org/rails/rails.png"/>}[http://travis-ci.org/rails/rails]
2011-09-07 19:57:24 +00:00
2010-07-21 10:37:05 +00:00
== License
2011-05-01 11:15:15 +00:00
Ruby on Rails is released under the MIT license.
2011-05-23 17:13:22 +00:00