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
2018-07-03 21:48:26 +09:00
.github Update stale issue comment to mention 5-2-stable 2018-05-24 23:23:30 +01:00
actioncable Remove redundant accessors 2018-06-11 16:39:50 +02:00
actionmailer Fix docs of assert_no_emails [ci skip] 2018-06-29 16:02:52 +03:00
actionpack Fix a typo in the Action Pack changelog [ci skip] 2018-06-19 23:02:21 +03:00
actionview Add to docs mention about :year_format option of date select 2018-06-22 00:50:22 +03:00
activejob ActiveJob::Base no longer dependents on Serializers 2018-07-03 21:48:26 +09:00
activemodel Fix Ruby warnings tickled by the test suite 2018-06-30 10:20:45 +02:00
activerecord Use construct_join_dependency in all places 2018-07-03 03:55:16 +09:00
activestorage Tweak Previewer::PopplerPDFPreviewer#pdftoppm_exists? 2018-06-29 07:58:28 +02:00
activesupport Refactor #33254. 2018-07-01 12:46:15 +02:00
ci Fix CustomCops/AssertNot to allow it to have failure message 2018-05-13 11:32:47 +09:00
guides Merge pull request #32987 from kevgathuku/patch-2 2018-07-02 19:51:00 +02:00
railties Merge pull request #32706 from yhirano55/fix-app-update-when-hyphenated-name-is-given 2018-07-01 19:05:01 +02:00
tasks prefer File.write for bulk writes 2018-05-05 19:38:38 +02:00
tools
.codeclimate.yml Rubocop 0.54 2018-04-21 13:18:50 -04:00
.gitattributes
.gitignore
.rubocop.yml Enable Lint/StringConversionInInterpolation rubocop rule 2018-05-21 21:10:14 +09:00
.travis.yml Revert "Avoid Node.js v10.4.0 for now" 2018-06-25 10:18:52 +09:00
.yardopts
Brewfile
CODE_OF_CONDUCT.md Update CoC to change a history of updates URL [ci skip] 2018-04-19 23:33:53 +09:00
CONTRIBUTING.md
Gemfile Support streaming downloads from Google Cloud Storage 2018-05-01 23:20:56 -04:00
Gemfile.lock Update raabro to latest version 2018-06-23 23:23:54 +02:00
MIT-LICENSE
rails.gemspec
RAILS_VERSION
Rakefile
README.md [ci skip] Remove style of the word Rails at the top 2018-04-19 11:53:44 -05:00
RELEASING_RAILS.md Use https with weblog URI 2018-05-02 21:06:03 +09:00
version.rb

Welcome to Rails

What's 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: Model, View, and Controller, each with a specific responsibility.

Model layer

The Model layer represents the domain model (such as Account, Product, Person, Post, etc.) and encapsulates the business logic 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.

Controller layer

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.

View layer

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.

Frameworks and libraries

Active Record, Active Model, Action Pack, and Action View can each be used independently outside Rails. In addition to that, Rails also comes with Action Mailer, a library to generate and send emails; Active Job, a framework for declaring jobs and making them run on a variety of queueing backends; Action Cable, a framework to integrate WebSockets with a Rails application; Active Storage, a library to attach cloud and local files to Rails applications; and Active Support, 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. Go to http://localhost:3000 and you'll see: "Yay! Youre on Rails!"

  5. Follow the guidelines to start developing your application. You may find the following resources handy:

Contributing

Code Triage Badge

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!

Trying to report a possible security vulnerability in Rails? Please check out our security policy for guidelines about how to proceed.

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.