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