1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
Ruby on Rails
Find a file
Tim 0aae9c25ab Add specific bug reporting guidelines to contributing.md. [ci skip]
Add boldface and bullets to make more readable.

Make sentences declarative.

Remove "you"s.
2015-12-15 10:15:24 +01:00
actioncable Hook in ActionView::Base, not in ApplicationController 2015-12-14 15:54:08 -02:00
actionmailer [ci skip] Add a dollar sign to each command in the READMEs 2015-12-06 19:18:52 +01:00
actionpack Fix spacing on CHANGELOG name 2015-12-12 14:44:59 -05:00
actionview [ci skip] Add a dollar sign to each command in the READMEs 2015-12-06 19:18:52 +01:00
activejob [ci skip] Add a dollar sign to each command in the READMEs 2015-12-06 19:18:52 +01:00
activemodel Merge pull request #22381 from yahonda/use_adapter_subsecond_precision_supported 2015-12-13 12:13:22 +09:00
activerecord Merge pull request #22209 from yui-knk/add_test_sanitize_sql_array_handles_named_bind_variables 2015-12-14 07:42:32 -07:00
activesupport lazy load listen in core 2015-12-13 18:59:34 +01:00
ci Do not run action cable tests in isolation 2015-12-14 16:02:31 -02:00
guides Merge branch 'rails-rake-proxy' 2015-12-13 21:44:03 +01:00
railties Add option to skip Action Cable 2015-12-14 23:44:52 -02:00
tasks Ignore Gemfile.lock in the release task 2015-11-12 15:12:34 -02:00
tools make it possible to customize the executable inside rereun snippets. 2015-06-13 11:58:43 +02:00
.gitignore .gitignore: Ignore .ruby-version in any subdir 2015-09-07 16:37:14 -07:00
.travis.yml Add Action Cable tests to travis matrix 2015-12-14 14:44:51 -02:00
.yardopts
CODE_OF_CONDUCT.md Move the CoC text to the Rails website 2015-08-21 12:32:59 -07:00
CONTRIBUTING.md Add specific bug reporting guidelines to contributing.md. [ci skip] 2015-12-15 10:15:24 +01:00
Gemfile Remove action cable gems that are already in the gemspec 2015-12-14 14:28:13 -02:00
Gemfile.lock Update Gemfile.lock 2015-12-14 14:43:04 -02:00
load_paths.rb
rails.gemspec Initial stab at adding Action Cable to rails/master 2015-12-14 16:38:37 +01:00
RAILS_VERSION
Rakefile Get ready to merge into Rails 2015-12-14 15:48:54 +01:00
README.md Get ready to merge into Rails 2015-12-14 15:48:54 +01:00
RELEASING_RAILS.md Convert Releasing Rails guide to Markdown 2015-08-15 09:21:46 -04:00
version.rb

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; 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: "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!

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.