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
Nick Wolf 7cc2b57b8d
Refactor railsrc file location to be xdg compliant (#39411)
* Refactor railsrc file location to be xdg compliant

The XDG Base Directory Specification (which is currently used by
FOSS projects such as Git, Tmux, Pry, Rspec) provides a default
location for various file formats, including config/rc files.

This comment refactors app_generator.rb to load railsrc from
XDG_CONFIG_HOME if both XDG_CONFIG_HOME is set and rails/railrc
exists within the XDG_CONFIG_HOME location.

To maintain backwards compatibility it defaults back to ~/.railsrc
if either XDG_CONFIG_HOME is not set or there is no rails/railsrc.

* Refactor default_rc_file based on jonathanhefner PR feedback

* Update generators/rails/app/USAGE to explain railsrc XDG compliance

* Refactor default_rc_file based on sinsoku PR feedback

* Add test for ARGVScrubber.default_rc_file method

fileutils is required because tmpdir does not allow you to create a new
temp directory with a set title 'inside' another temporary directory, a
file is created for railsrc because tempfile creates a custom and unique
name preventing the specification of a file called 'railsrc'

Currently this test is failing because the ARGVScrubber class seems to
be loading directly from the gem (which still has the previous code)
rather than from the file itself. (loading the code in a pry session
and using show-method ARGVScrubber.default_rc_file reveals it is coming
from
gems/railties-6.0.3.3/lib/rails/generators/rails/app/app_generator.rb:536
instead of
railties/lib/rails/generators/rails/app/app_generator.rb

* Switch to double quote strings

* Add file deletion for argv_scrubber test

* Refactor test_xdg_config_no_custom_rc with jonathanhefner feedback

* Add Changelog for railsrc xdg-specification compliance

* Apply backtick and whitespace refactoring suggestsions from jonathanhefner

* Apply jonathanhefner suggested Changelog refactoring

[Rafael Mendonça França + Nick Wolf + Jonathan Hefner]
2020-10-21 01:21:07 -04:00
.github Merge pull request #39420 from jonathanhefner/verba-sequentur-config 2020-08-26 13:47:22 -04:00
actioncable Add gitattributes for vendored and generated files [ci-skip] 2020-10-04 16:44:37 -05:00
actionmailbox Fix backtraces for generated plugin tests 2020-10-07 15:40:56 -05:00
actionmailer Accessors here are public 2020-10-06 21:00:03 +09:00
actionpack Handle port-less $MEMCACHE_SERVERS in MemCacheStore tests 2020-10-20 22:32:22 -04:00
actiontext Fix backtraces for generated plugin tests 2020-10-07 15:40:56 -05:00
actionview Remove .DS_Store 2020-10-16 15:23:45 +09:00
activejob Work around getaddrinfo deadlock in forked process 2020-10-16 01:00:12 +01:00
activemodel Add missing ActiveSupport require in ActiveModel::Serialization 2020-10-13 14:30:24 -05:00
activerecord Add values_at attribute method for active_record 2020-10-19 17:15:02 +01:00
activestorage Merge pull request #38443 from jonathanhefner/plugin-fix-stack-traces 2020-10-08 19:06:40 -04:00
activesupport Merge pull request #40419 from sambostock/handle-portless-memcache-servers 2020-10-21 01:15:52 -04:00
ci
guides Fallback to $MEMCACHE_SERVERS if no servers given 2020-10-20 23:50:52 -04:00
railties Refactor railsrc file location to be xdg compliant (#39411) 2020-10-21 01:21:07 -04:00
tasks
tools Introduce Rails::TestUnitReporter.app_root to inject app_root when needed. 2020-06-14 00:02:49 +02:00
.gitattributes
.gitignore
.rubocop.yml Update RuboCop to v0.90 2020-09-06 06:37:04 +05:30
.yardopts
.yarnrc
Brewfile
CODE_OF_CONDUCT.md
CONTRIBUTING.md Adjust link to only include 'the team' rather than 'join the team' as the former suggests it's a link to get on a list 2020-09-19 14:20:09 -05:00
Gemfile Replace frames-based api docs with css implementation and Turbolinks 2020-10-16 12:24:09 +02:00
Gemfile.lock Replace frames-based api docs with css implementation and Turbolinks 2020-10-16 12:24:09 +02:00
MIT-LICENSE
package.json
rails.gemspec Update outdated bundler in gemspec 2020-08-18 00:39:54 +08:00
RAILS_VERSION
Rakefile
README.md
RELEASING_RAILS.md fix: Update Agile Web Development with Rails book link [ci skip] 2020-08-13 10:36:46 +05:30
version.rb
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

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.