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
Tom Prats fcc46228c6 Squashed commit of the following:
commit 1dca99ad4f8082d8daaa17c6600f3036c25f8e50
Author: Tom Prats <tprats108@gmail.com>
Date:   Thu Aug 5 18:07:00 2021 -0400

    Moved header

commit 62201870ff5c4124d90912989745819b05d94516
Merge: 5fa3ecae74 c91a8135c7
Author: Tom Prats <tprats108@gmail.com>
Date:   Thu Aug 5 14:41:22 2021 -0400

    Merge branch 'main' into active-storage-byte-range

commit 5fa3ecae745b4f7c67a6b6b1b7ec420877c96fb8
Author: Tom Prats <tprats108@gmail.com>
Date:   Thu Aug 5 14:39:53 2021 -0400

    Apply suggestions from code review

    Syntax updates

    Co-authored-by: Rafael França <rafael@franca.dev>

commit b9553e3698a7af5105171f9d63bd7b89cbb7e2c3
Author: Tom Prats <tprats108@gmail.com>
Date:   Wed Jun 23 17:36:26 2021 -0400

    Added Active Storage support for byte ranges
2021-08-05 18:12:07 -04:00
.github [ci skip] Mention executable test cases in issue template 2021-06-01 11:51:31 -07:00
actioncable Allow testing action cable with a different redis port 2021-08-04 18:17:47 -04:00
actionmailbox Standardize nodoc comments 2021-07-29 21:18:07 +00:00
actionmailer Standardize nodoc comments 2021-07-29 21:18:07 +00:00
actionpack Reduce allocations and retentions in Journey TransitionTable 2021-08-03 14:15:53 +02:00
actiontext Standardize nodoc comments 2021-07-29 21:18:07 +00:00
actionview Remove duplicated test 2021-08-05 11:02:09 -04:00
activejob Standardize nodoc comments 2021-07-29 21:18:07 +00:00
activemodel Standardize nodoc comments 2021-07-29 21:18:07 +00:00
activerecord Allow using a different socket to test mysql 2021-08-05 14:27:30 -04:00
activestorage Squashed commit of the following: 2021-08-05 18:12:07 -04:00
activesupport Upgrades Zeitwerk to 2.5.0.beta 2021-08-04 09:43:06 +02:00
ci chore: Use e.g. which is the more used spelling 2021-07-21 09:17:54 +09:00
guides Merge pull request #42926 from FestaLab/activestorage/implicit-transformations 2021-08-05 15:32:16 -04:00
railties Standardize nodoc comments 2021-07-29 21:18:07 +00:00
tasks Fix a rubocop offence for Lint/ErbNewArguments 2021-02-05 12:39:58 +09:00
tools
.gitattributes
.gitignore Remove non-project specific entry from gitignore 2021-03-22 22:02:00 +00:00
.rubocop.yml Fix odd closing parenthesis by enabling the Layout/ClosingParenthesisIndentation cop 2021-07-02 18:01:50 +09:00
.yardopts
.yarnrc
Brewfile
CODE_OF_CONDUCT.md
codespell.txt Add spell checking with codespell as a GitHub Action 2021-05-04 14:46:21 +10:00
CONTRIBUTING.md Adding badges and logo to README and CONTRIBUTING page 2021-01-20 10:53:47 +01:00
Gemfile Address bundle exec blade build failure with ruby 3.1.0dev 2021-07-29 13:44:41 +09:00
Gemfile.lock Upgrades Zeitwerk to 2.5.0.beta 2021-08-04 09:43:06 +02:00
MIT-LICENSE
package.json
rails.gemspec Rails 7 requires Ruby 2.7 and prefer Ruby 3+ 2021-02-04 16:34:53 +00:00
RAILS_VERSION Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
Rakefile
README.md Adding badges and logo to README and CONTRIBUTING page 2021-01-20 10:53:47 +01:00
RELEASING_RAILS.md
version.rb Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
yarn.lock

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; Action Mailbox, a library to receive emails within a Rails application; Active Job, a framework for declaring jobs and making them run on a variety of queuing 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; Action Text, a library to handle rich text content; 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
     $ bin/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

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.

License

Ruby on Rails is released under the MIT License.