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
Kasper Timm Hansen a88c5ff96d Only write to collection cache if we have a callable cache key.
A callable cache key writes to the collection cache under a certain namespace.
Which means if we don't have scoped cache key we can just rely on the
`cache model_name do` in the templates to cache them.

Less writes, more sharing.

Add `assert_customer_cached` to better illustrate this in tests, and remove
tests which then don't communicate as much.
2016-02-12 22:37:11 +01:00
actioncable Merge pull request #23546 from maclover7/cable-readme-update 2016-02-11 16:53:36 -05:00
actionmailer Revert "When generating a mailer, you must specify Mailer in the class name in" 2016-02-06 15:02:02 +09:00
actionpack Only write to collection cache if we have a callable cache key. 2016-02-12 22:37:11 +01:00
actionview Only write to collection cache if we have a callable cache key. 2016-02-12 22:37:11 +01:00
activejob [ci skip] Fix enqueuing spelling to maintain consistency 2016-02-12 23:49:08 +05:30
activemodel Add documentation about method to describe how it works [ci skip] 2016-02-04 20:03:24 +02:00
activerecord use rails instead of rake 2016-02-12 23:12:56 +05:30
activesupport Merge pull request #23596 from afn/issue-23058 2016-02-10 16:03:10 -08:00
ci Remove commented out code in ci/travis.rb [ci skip] 2016-02-04 09:15:25 +09:00
guides Use correct path in documentation. 2016-02-12 13:53:18 -05:00
railties Use Ruby 1.9 hash syntax 2016-02-12 19:12:42 -02:00
tasks Wrangle the asset build into something that sounds more general 2016-02-01 05:03:03 +10:30
tools
.gitignore
.travis.yml Revert "No need to specify Ruby patch version on Travis CI" 2016-02-06 15:34:20 +09:00
.yardopts
CODE_OF_CONDUCT.md
CONTRIBUTING.md Typo in Contributing.md documentation 2016-01-06 23:34:41 +00:00
Gemfile Update turbolinks-rails for passing railties test 2016-02-05 17:02:22 +05:30
Gemfile.lock Update turbolinks-rails for passing railties test 2016-02-05 17:02:22 +05:30
load_paths.rb
rails.gemspec
RAILS_VERSION Preparing for Rails 5.0.0.beta2 2016-02-01 14:37:52 -07:00
Rakefile Add task to test the release preparation 2015-12-18 14:56:26 -02:00
README.md Replace old Rails greeting references 2016-02-06 09:14:42 +02:00
RELEASING_RAILS.md Update RELEASING_RAILS.md 2016-02-12 08:38:21 -05:00
version.rb Preparing for Rails 5.0.0.beta2 2016-02-01 14:37:52 -07:00

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

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.