Ruby on Rails
Go to file
Matthew Draper 84eba99ceb Merge pull request #22645 from kaspth/parameters-only-deep-dup-hash-array
Only dup Ruby's Hash and Array.
2015-12-18 07:34:02 +10:30
actioncable Should also stub the received callback 2015-12-17 21:53:05 +01:00
actionmailer ApplicationMailer should be generated by default just like every other Application* parent 2015-12-17 17:35:20 -02:00
actionpack Only dup Ruby's Hash and Array. 2015-12-17 21:55:03 +01:00
actionview Add missing test cases for asset_path 2015-12-17 13:07:10 +05:30
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 #22598 from yui-knk/deprecate_string_callback 2015-12-16 13:54:02 -02:00
activerecord Use released arel 2015-12-17 18:11:29 -02:00
activesupport [ci skip] Add `Thread.current` to match internals 2015-12-17 20:22:27 +01:00
ci Do not run action cable tests in isolation 2015-12-14 16:02:31 -02:00
guides Fix section about ApplicationRecord in upgrading guide [ci skip] 2015-12-17 19:07:03 +05:30
railties Use release sprockets-rails 2015-12-17 18:22:58 -02:00
tasks Add actioncable to list of release frameworks [ci skip] 2015-12-17 16:08:02 +01:00
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 Merge pull request #22586 from rails/merge-action-cable 2015-12-17 12:13:22 +01: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 Add specific bug reporting guidelines to contributing.md. [ci skip] 2015-12-15 10:15:24 +01:00
Gemfile Use release sprockets-rails 2015-12-17 18:22:58 -02:00
Gemfile.lock Use release sprockets-rails 2015-12-17 18:22:58 -02:00
RAILS_VERSION Start Rails 5 development 🎉 2014-11-28 15:00:06 -02:00
README.md Add Action Cable to README.md of Rails 2015-12-15 09:36:06 -08:00
RELEASING_RAILS.md Convert Releasing Rails guide to Markdown 2015-08-15 09:21:46 -04:00
Rakefile Use FRAMEWORKS constant from `tasks/release` to avoid duplication 2015-12-17 16:31:43 +01: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 Start Rails 5 development 🎉 2014-11-28 15:00:06 -02: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: "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.