Ruby on Rails
Go to file
Oli Peate a8ae85a331 Support clearing acronyms in ActiveSupport::Inflector::Inflections
Previously calling ActiveSupport::Inflector::Inflections.clear(:acronyms)
reset the instance variable to an empty Array, which is not the correct
default. The next time an acronym is added a TypeError is thrown.
2021-06-15 10:22:19 +01:00
.github [ci skip] Mention executable test cases in issue template 2021-06-01 11:51:31 -07:00
actioncable Replace map + compact with filter_map 2021-04-22 22:08:34 -03:00
actionmailbox Verify raised error message in test case 2021-06-01 21:00:13 +05:30
actionmailer Default values are not evaluated when overridden 2021-06-08 10:06:14 +02:00
actionpack Update http_authentication.rb 2021-06-13 13:24:51 +01:00
actiontext Add note regarding "trix-content" class 2021-05-30 10:37:21 -05:00
actionview Fix all rubocop violations 2021-06-08 23:35:59 +00:00
activejob Added more regression for activejob Range serializer. 2021-05-18 16:29:34 +05:30
activemodel Add ActiveModel::AttributeSet#values_for_database 2021-06-08 16:39:23 +09:00
activerecord Make `signed_id_verifier_secret` a class attribute 2021-06-11 09:14:28 +02:00
activestorage Fix ActiveStorage has_many_attached when record is not persisted 2021-06-12 19:49:21 +02:00
activesupport Support clearing acronyms in ActiveSupport::Inflector::Inflections 2021-06-15 10:22:19 +01:00
ci Remove .travis.yml and ci/travis.rb 2020-01-02 09:27:53 +09:00
guides Merge pull request #42461 from Wittiest/main 2021-06-14 08:19:47 +09:00
railties Make `queues` a module instance variable 2021-06-10 18:31:33 +02:00
tasks Fix a rubocop offence for `Lint/ErbNewArguments` 2021-02-05 12:39:58 +09:00
tools Fix bin/test 2020-10-30 21:33:19 +00:00
.gitattributes
.gitignore Remove non-project specific entry from gitignore 2021-03-22 22:02:00 +00:00
.rubocop.yml use ruby 2.7's filter_map instead of select + map 2021-04-26 17:55:33 -04:00
.yardopts
.yarnrc
Brewfile
CODE_OF_CONDUCT.md
CONTRIBUTING.md Adding badges and logo to README and CONTRIBUTING page 2021-01-20 10:53:47 +01:00
Gemfile Add net-smtp, net-pop, net-imap and matrix to the Gemfile to fix the ruby-head build 2021-05-28 11:57:32 +02:00
Gemfile.lock Add x86_64-darwin-20 platform to the Gemfile 2021-06-10 15:33:12 +02:00
MIT-LICENSE Bump license years to 2021 [ci skip] 2021-01-01 12:21:20 +09:00
RAILS_VERSION Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
README.md Adding badges and logo to README and CONTRIBUTING page 2021-01-20 10:53:47 +01:00
RELEASING_RAILS.md Rename master to main in all code references 2021-01-19 20:46:33 +00:00
Rakefile
codespell.txt Add spell checking with codespell as a GitHub Action 2021-05-04 14:46:21 +10:00
package.json
rails.gemspec Rails 7 requires Ruby 2.7 and prefer Ruby 3+ 2021-02-04 16:34:53 +00:00
version.rb Rails 6.2 is now Rails 7.0 2021-02-04 16:47:16 +00:00
yarn.lock Upgrade kind-of 2020-04-19 23:59:27 -03:00

README.md

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.