rails 4.0.0 → 4.2.11.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.md +30 -23
- data/guides/CHANGELOG.md +108 -6
- data/guides/Rakefile +21 -6
- data/guides/assets/images/akshaysurve.jpg +0 -0
- data/guides/assets/images/edge_badge.png +0 -0
- data/guides/assets/images/feature_tile.gif +0 -0
- data/guides/assets/images/footer_tile.gif +0 -0
- data/guides/assets/images/fxn.png +0 -0
- data/guides/assets/images/getting_started/article_with_comments.png +0 -0
- data/guides/assets/images/getting_started/challenge.png +0 -0
- data/guides/assets/images/getting_started/confirm_dialog.png +0 -0
- data/guides/assets/images/getting_started/forbidden_attributes_for_new_article.png +0 -0
- data/guides/assets/images/getting_started/form_with_errors.png +0 -0
- data/guides/assets/images/getting_started/index_action_with_edit_link.png +0 -0
- data/guides/assets/images/getting_started/new_article.png +0 -0
- data/guides/assets/images/getting_started/rails_welcome.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_controller.png +0 -0
- data/guides/assets/images/getting_started/routing_error_no_route_matches.png +0 -0
- data/guides/assets/images/getting_started/show_action_for_articles.png +0 -0
- data/guides/assets/images/getting_started/template_is_missing_articles_new.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_create_for_articles.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_new_for_articles.png +0 -0
- data/guides/assets/images/header_tile.gif +0 -0
- data/guides/assets/images/icons/README +1 -1
- data/guides/assets/images/icons/callouts/11.png +0 -0
- data/guides/assets/images/icons/callouts/12.png +0 -0
- data/guides/assets/images/icons/callouts/13.png +0 -0
- data/guides/assets/images/icons/callouts/15.png +0 -0
- data/guides/assets/images/icons/caution.png +0 -0
- data/guides/assets/images/icons/example.png +0 -0
- data/guides/assets/images/radar.png +0 -0
- data/guides/assets/images/rails4_features.png +0 -0
- data/guides/assets/images/rails_guides_kindle_cover.jpg +0 -0
- data/guides/assets/images/vijaydev.jpg +0 -0
- data/guides/assets/javascripts/guides.js +36 -34
- data/guides/assets/stylesheets/main.css +6 -2
- data/guides/assets/stylesheets/print.css +1 -1
- data/guides/bug_report_templates/action_controller_gem.rb +47 -0
- data/guides/bug_report_templates/action_controller_master.rb +54 -0
- data/guides/bug_report_templates/active_record_gem.rb +5 -2
- data/guides/bug_report_templates/active_record_master.rb +3 -2
- data/guides/bug_report_templates/generic_gem.rb +15 -0
- data/guides/bug_report_templates/generic_master.rb +26 -0
- data/guides/rails_guides.rb +23 -4
- data/guides/rails_guides/generator.rb +1 -1
- data/guides/rails_guides/helpers.rb +4 -2
- data/guides/rails_guides/levenshtein.rb +27 -21
- data/guides/rails_guides/markdown.rb +11 -7
- data/guides/rails_guides/markdown/renderer.rb +1 -1
- data/guides/source/2_2_release_notes.md +3 -3
- data/guides/source/2_3_release_notes.md +12 -12
- data/guides/source/3_0_release_notes.md +10 -13
- data/guides/source/3_1_release_notes.md +7 -4
- data/guides/source/3_2_release_notes.md +17 -14
- data/guides/source/4_0_release_notes.md +110 -54
- data/guides/source/4_1_release_notes.md +730 -0
- data/guides/source/4_2_release_notes.md +877 -0
- data/guides/source/_license.html.erb +1 -1
- data/guides/source/_welcome.html.erb +6 -2
- data/guides/source/action_controller_overview.md +223 -57
- data/guides/source/action_mailer_basics.md +129 -76
- data/guides/source/action_view_overview.md +247 -246
- data/guides/source/active_job_basics.md +339 -0
- data/guides/source/active_model_basics.md +374 -20
- data/guides/source/active_record_basics.md +46 -45
- data/guides/source/active_record_callbacks.md +83 -28
- data/guides/source/{migrations.md → active_record_migrations.md} +191 -275
- data/guides/source/active_record_postgresql.md +433 -0
- data/guides/source/active_record_querying.md +382 -300
- data/guides/source/active_record_validations.md +64 -55
- data/guides/source/active_support_core_extensions.md +229 -187
- data/guides/source/active_support_instrumentation.md +23 -22
- data/guides/source/api_documentation_guidelines.md +167 -15
- data/guides/source/asset_pipeline.md +768 -294
- data/guides/source/association_basics.md +188 -96
- data/guides/source/autoloading_and_reloading_constants.md +1311 -0
- data/guides/source/caching_with_rails.md +45 -11
- data/guides/source/command_line.md +96 -65
- data/guides/source/configuring.md +404 -70
- data/guides/source/contributing_to_ruby_on_rails.md +270 -130
- data/guides/source/credits.html.erb +7 -3
- data/guides/source/debugging_rails_applications.md +471 -284
- data/guides/source/development_dependencies_install.md +115 -21
- data/guides/source/documents.yaml +31 -9
- data/guides/source/engines.md +737 -291
- data/guides/source/form_helpers.md +137 -89
- data/guides/source/generators.md +60 -28
- data/guides/source/getting_started.md +1007 -596
- data/guides/source/i18n.md +178 -96
- data/guides/source/index.html.erb +2 -1
- data/guides/source/initialization.md +248 -104
- data/guides/source/kindle/toc.html.erb +1 -1
- data/guides/source/layout.html.erb +14 -22
- data/guides/source/layouts_and_rendering.md +78 -46
- data/guides/source/maintenance_policy.md +78 -0
- data/guides/source/nested_model_forms.md +10 -7
- data/guides/source/plugins.md +66 -57
- data/guides/source/rails_application_templates.md +49 -12
- data/guides/source/rails_on_rack.md +50 -60
- data/guides/source/routing.md +190 -139
- data/guides/source/ruby_on_rails_guides_guidelines.md +12 -13
- data/guides/source/security.md +134 -83
- data/guides/source/testing.md +322 -200
- data/guides/source/upgrading_ruby_on_rails.md +834 -37
- data/guides/source/working_with_javascript_in_rails.md +36 -26
- data/guides/w3c_validator.rb +2 -0
- metadata +93 -116
- data/guides/assets/images/getting_started/forbidden_attributes_for_new_post.png +0 -0
- data/guides/assets/images/getting_started/new_post.png +0 -0
- data/guides/assets/images/getting_started/post_with_comments.png +0 -0
- data/guides/assets/images/getting_started/show_action_for_posts.png +0 -0
- data/guides/assets/images/getting_started/template_is_missing_posts_new.png +0 -0
- data/guides/assets/images/getting_started/undefined_method_post_path.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_create_for_posts.png +0 -0
- data/guides/assets/images/getting_started/unknown_action_new_for_posts.png +0 -0
- data/guides/assets/images/jaimeiniesta.jpg +0 -0
- data/guides/code/getting_started/Gemfile +0 -43
- data/guides/code/getting_started/Gemfile.lock +0 -150
- data/guides/code/getting_started/README.rdoc +0 -28
- data/guides/code/getting_started/Rakefile +0 -6
- data/guides/code/getting_started/app/assets/javascripts/application.js +0 -16
- data/guides/code/getting_started/app/assets/javascripts/comments.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/javascripts/posts.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/javascripts/welcome.js.coffee +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/application.css +0 -13
- data/guides/code/getting_started/app/assets/stylesheets/comments.css.scss +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/posts.css.scss +0 -3
- data/guides/code/getting_started/app/assets/stylesheets/welcome.css.scss +0 -3
- data/guides/code/getting_started/app/controllers/application_controller.rb +0 -5
- data/guides/code/getting_started/app/controllers/comments_controller.rb +0 -17
- data/guides/code/getting_started/app/controllers/posts_controller.rb +0 -47
- data/guides/code/getting_started/app/controllers/welcome_controller.rb +0 -4
- data/guides/code/getting_started/app/helpers/application_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/comments_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/posts_helper.rb +0 -2
- data/guides/code/getting_started/app/helpers/welcome_helper.rb +0 -2
- data/guides/code/getting_started/app/models/comment.rb +0 -3
- data/guides/code/getting_started/app/models/post.rb +0 -7
- data/guides/code/getting_started/app/views/comments/_comment.html.erb +0 -15
- data/guides/code/getting_started/app/views/comments/_form.html.erb +0 -13
- data/guides/code/getting_started/app/views/layouts/application.html.erb +0 -14
- data/guides/code/getting_started/app/views/posts/_form.html.erb +0 -27
- data/guides/code/getting_started/app/views/posts/edit.html.erb +0 -5
- data/guides/code/getting_started/app/views/posts/index.html.erb +0 -21
- data/guides/code/getting_started/app/views/posts/new.html.erb +0 -5
- data/guides/code/getting_started/app/views/posts/show.html.erb +0 -18
- data/guides/code/getting_started/app/views/welcome/index.html.erb +0 -3
- data/guides/code/getting_started/bin/bundle +0 -4
- data/guides/code/getting_started/bin/rails +0 -4
- data/guides/code/getting_started/bin/rake +0 -4
- data/guides/code/getting_started/config.ru +0 -4
- data/guides/code/getting_started/config/application.rb +0 -18
- data/guides/code/getting_started/config/boot.rb +0 -4
- data/guides/code/getting_started/config/database.yml +0 -25
- data/guides/code/getting_started/config/environment.rb +0 -5
- data/guides/code/getting_started/config/environments/development.rb +0 -30
- data/guides/code/getting_started/config/environments/production.rb +0 -80
- data/guides/code/getting_started/config/environments/test.rb +0 -36
- data/guides/code/getting_started/config/initializers/backtrace_silencers.rb +0 -7
- data/guides/code/getting_started/config/initializers/filter_parameter_logging.rb +0 -4
- data/guides/code/getting_started/config/initializers/inflections.rb +0 -16
- data/guides/code/getting_started/config/initializers/locale.rb +0 -9
- data/guides/code/getting_started/config/initializers/mime_types.rb +0 -5
- data/guides/code/getting_started/config/initializers/secret_token.rb +0 -12
- data/guides/code/getting_started/config/initializers/session_store.rb +0 -3
- data/guides/code/getting_started/config/initializers/wrap_parameters.rb +0 -14
- data/guides/code/getting_started/config/locales/en.yml +0 -23
- data/guides/code/getting_started/config/routes.rb +0 -7
- data/guides/code/getting_started/db/migrate/20130122042648_create_posts.rb +0 -10
- data/guides/code/getting_started/db/migrate/20130122045842_create_comments.rb +0 -11
- data/guides/code/getting_started/db/schema.rb +0 -33
- data/guides/code/getting_started/db/seeds.rb +0 -7
- data/guides/code/getting_started/public/404.html +0 -58
- data/guides/code/getting_started/public/422.html +0 -58
- data/guides/code/getting_started/public/500.html +0 -57
- data/guides/code/getting_started/public/favicon.ico +0 -0
- data/guides/code/getting_started/public/robots.txt +0 -5
- data/guides/code/getting_started/test/controllers/comments_controller_test.rb +0 -7
- data/guides/code/getting_started/test/controllers/posts_controller_test.rb +0 -7
- data/guides/code/getting_started/test/controllers/welcome_controller_test.rb +0 -9
- data/guides/code/getting_started/test/fixtures/comments.yml +0 -11
- data/guides/code/getting_started/test/fixtures/posts.yml +0 -9
- data/guides/code/getting_started/test/helpers/comments_helper_test.rb +0 -4
- data/guides/code/getting_started/test/helpers/posts_helper_test.rb +0 -4
- data/guides/code/getting_started/test/helpers/welcome_helper_test.rb +0 -4
- data/guides/code/getting_started/test/models/comment_test.rb +0 -7
- data/guides/code/getting_started/test/models/post_test.rb +0 -7
- data/guides/code/getting_started/test/test_helper.rb +0 -15
- data/guides/source/kindle/KINDLE.md +0 -26
@@ -30,10 +30,10 @@ Configuring Rails Components
|
|
30
30
|
|
31
31
|
In general, the work of configuring Rails means configuring the components of Rails, as well as configuring Rails itself. The configuration file `config/application.rb` and environment-specific configuration files (such as `config/environments/production.rb`) allow you to specify the various settings that you want to pass down to all of the components.
|
32
32
|
|
33
|
-
For example, the
|
33
|
+
For example, the `config/application.rb` file includes this setting:
|
34
34
|
|
35
35
|
```ruby
|
36
|
-
config.
|
36
|
+
config.time_zone = 'Central Time (US & Canada)'
|
37
37
|
```
|
38
38
|
|
39
39
|
This is a setting for Rails itself. If you want to pass settings to individual Rails components, you can do so via the same `config` object in `config/application.rb`:
|
@@ -56,16 +56,19 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
|
|
56
56
|
end
|
57
57
|
```
|
58
58
|
|
59
|
-
* `config.asset_host` sets the host for the assets. Useful when CDNs are used for hosting assets, or when you want to work around the concurrency constraints
|
59
|
+
* `config.asset_host` sets the host for the assets. Useful when CDNs are used for hosting assets, or when you want to work around the concurrency constraints built-in in browsers using different domain aliases. Shorter version of `config.action_controller.asset_host`.
|
60
60
|
|
61
61
|
* `config.autoload_once_paths` accepts an array of paths from which Rails will autoload constants that won't be wiped per request. Relevant if `config.cache_classes` is false, which is the case in development mode by default. Otherwise, all autoloading happens only once. All elements of this array must also be in `autoload_paths`. Default is an empty array.
|
62
62
|
|
63
63
|
* `config.autoload_paths` accepts an array of paths from which Rails will autoload constants. Default is all directories under `app`.
|
64
64
|
|
65
|
-
* `config.cache_classes` controls whether or not application classes and modules should be reloaded on each request. Defaults to false in development mode, and true in test and production modes.
|
65
|
+
* `config.cache_classes` controls whether or not application classes and modules should be reloaded on each request. Defaults to false in development mode, and true in test and production modes.
|
66
66
|
|
67
67
|
* `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`.
|
68
68
|
|
69
|
+
* `config.beginning_of_week` sets the default beginning of week for the
|
70
|
+
application. Accepts a valid week day symbol (e.g. `:monday`).
|
71
|
+
|
69
72
|
* `config.cache_store` configures which cache store to use for Rails caching. Options include one of the symbols `:memory_store`, `:file_store`, `:mem_cache_store`, `:null_store`, or an object that implements the cache API. Defaults to `:file_store` if the directory `tmp/cache` exists, and to `:memory_store` otherwise.
|
70
73
|
|
71
74
|
* `config.colorize_logging` specifies whether or not to use ANSI color codes when logging information. Defaults to true.
|
@@ -83,7 +86,7 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
|
|
83
86
|
end
|
84
87
|
```
|
85
88
|
|
86
|
-
* `config.dependency_loading` is a flag that allows you to disable constant autoloading setting it to false. It only has effect if `config.cache_classes` is true, which it is by default in production mode.
|
89
|
+
* `config.dependency_loading` is a flag that allows you to disable constant autoloading setting it to false. It only has effect if `config.cache_classes` is true, which it is by default in production mode.
|
87
90
|
|
88
91
|
* `config.eager_load` when true, eager loads all registered `config.eager_load_namespaces`. This includes your application, engines, Rails frameworks and any other registered namespace.
|
89
92
|
|
@@ -97,23 +100,27 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
|
|
97
100
|
|
98
101
|
* `config.file_watcher` the class used to detect file updates in the filesystem when `config.reload_classes_only_on_change` is true. Must conform to `ActiveSupport::FileUpdateChecker` API.
|
99
102
|
|
100
|
-
* `config.filter_parameters` used for filtering out the parameters that
|
103
|
+
* `config.filter_parameters` used for filtering out the parameters that
|
104
|
+
you don't want shown in the logs, such as passwords or credit card
|
105
|
+
numbers. New applications filter out passwords by adding the following `config.filter_parameters+=[:password]` in `config/initializers/filter_parameter_logging.rb`.
|
101
106
|
|
102
107
|
* `config.force_ssl` forces all requests to be under HTTPS protocol by using `ActionDispatch::SSL` middleware.
|
103
108
|
|
104
|
-
* `config.
|
109
|
+
* `config.log_formatter` defines the formatter of the Rails logger. This option defaults to an instance of `ActiveSupport::Logger::SimpleFormatter` for all modes except production, where it defaults to `Logger::Formatter`.
|
110
|
+
|
111
|
+
* `config.log_level` defines the verbosity of the Rails logger. This option defaults to `:debug` for all environments.
|
105
112
|
|
106
|
-
* `config.log_tags` accepts a list of methods that
|
113
|
+
* `config.log_tags` accepts a list of methods that the `request` object responds to. This makes it easy to tag log lines with debug information like subdomain and request id - both very helpful in debugging multi-user production applications.
|
107
114
|
|
108
|
-
* `config.logger` accepts a logger conforming to the interface of Log4r or the default Ruby `Logger` class. Defaults to an instance of `ActiveSupport::Logger
|
115
|
+
* `config.logger` accepts a logger conforming to the interface of Log4r or the default Ruby `Logger` class. Defaults to an instance of `ActiveSupport::Logger`.
|
109
116
|
|
110
117
|
* `config.middleware` allows you to configure the application's middleware. This is covered in depth in the [Configuring Middleware](#configuring-middleware) section below.
|
111
118
|
|
112
119
|
* `config.reload_classes_only_on_change` enables or disables reloading of classes only when tracked files change. By default tracks everything on autoload paths and is set to true. If `config.cache_classes` is true, this option is ignored.
|
113
120
|
|
114
|
-
* `
|
121
|
+
* `secrets.secret_key_base` is used for specifying a key which allows sessions for the application to be verified against a known secure key to prevent tampering. Applications get `secrets.secret_key_base` initialized to a random key present in `config/secrets.yml`.
|
115
122
|
|
116
|
-
* `config.
|
123
|
+
* `config.serve_static_files` configures Rails itself to serve static files. Defaults to true, but in the production environment is turned off as the server software (e.g. NGINX or Apache) used to run the application should serve static assets instead. Unlike the default setting set this to true when running (absolutely not recommended!) or testing your app in production mode using WEBrick. Otherwise you won't be able use page caching and requests for files that exist regularly under the public directory will anyway hit your Rails app.
|
117
124
|
|
118
125
|
* `config.session_store` is usually set up in `config/initializers/session_store.rb` and specifies what class to use to store the session. Possible values are `:cookie_store` which is the default, `:mem_cache_store`, and `:disabled`. The last one tells Rails not to deal with sessions. Custom session stores can also be specified:
|
119
126
|
|
@@ -125,15 +132,12 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
|
|
125
132
|
|
126
133
|
* `config.time_zone` sets the default time zone for the application and enables time zone awareness for Active Record.
|
127
134
|
|
128
|
-
* `config.beginning_of_week` sets the default beginning of week for the application. Accepts a valid week day symbol (e.g. `:monday`).
|
129
|
-
|
130
|
-
* `config.whiny_nils` enables or disables warnings when a certain set of methods are invoked on `nil` and it does not respond to them. Defaults to true in development and test environments.
|
131
|
-
|
132
135
|
### Configuring Assets
|
133
136
|
|
134
|
-
* `config.assets.enabled` a flag that controls whether the asset
|
137
|
+
* `config.assets.enabled` a flag that controls whether the asset
|
138
|
+
pipeline is enabled. It is set to true by default.
|
135
139
|
|
136
|
-
* `config.assets.
|
140
|
+
* `config.assets.raise_runtime_errors` Set this flag to `true` to enable additional runtime error checking. Recommended in `config/environments/development.rb` to minimize unexpected behavior when deploying to `production`.
|
137
141
|
|
138
142
|
* `config.assets.css_compressor` defines the CSS compressor to use. It is set by default by `sass-rails`. The unique alternative value at the moment is `:yui`, which uses the `yui-compressor` gem.
|
139
143
|
|
@@ -145,7 +149,9 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
|
|
145
149
|
|
146
150
|
* `config.assets.prefix` defines the prefix where assets are served from. Defaults to `/assets`.
|
147
151
|
|
148
|
-
* `config.assets.
|
152
|
+
* `config.assets.manifest` defines the full path to be used for the asset precompiler's manifest file. Defaults to a file named `manifest-<random>.json` in the `config.assets.prefix` directory within the public folder.
|
153
|
+
|
154
|
+
* `config.assets.digest` enables the use of MD5 fingerprints in asset names. Set to `true` by default in `production.rb` and `development.rb`.
|
149
155
|
|
150
156
|
* `config.assets.debug` disables the concatenation and compression of assets. Set to `true` by default in `development.rb`.
|
151
157
|
|
@@ -189,11 +195,11 @@ The full set of methods that can be used in this block are as follows:
|
|
189
195
|
Every Rails application comes with a standard set of middleware which it uses in this order in the development environment:
|
190
196
|
|
191
197
|
* `ActionDispatch::SSL` forces every request to be under HTTPS protocol. Will be available if `config.force_ssl` is set to `true`. Options passed to this can be configured by using `config.ssl_options`.
|
192
|
-
* `ActionDispatch::Static` is used to serve static assets. Disabled if `config.
|
198
|
+
* `ActionDispatch::Static` is used to serve static assets. Disabled if `config.serve_static_files` is `false`.
|
193
199
|
* `Rack::Lock` wraps the app in mutex so it can only be called by a single thread at a time. Only enabled when `config.cache_classes` is `false`.
|
194
200
|
* `ActiveSupport::Cache::Strategy::LocalCache` serves as a basic memory backed cache. This cache is not thread safe and is intended only for serving as a temporary memory cache for a single thread.
|
195
201
|
* `Rack::Runtime` sets an `X-Runtime` header, containing the time (in seconds) taken to execute the request.
|
196
|
-
* `Rails::Rack::Logger` notifies the logs that the request has
|
202
|
+
* `Rails::Rack::Logger` notifies the logs that the request has begun. After request is complete, flushes all the logs.
|
197
203
|
* `ActionDispatch::ShowExceptions` rescues any exception returned by the application and renders nice exception pages if the request is local or if `config.consider_all_requests_local` is set to `true`. If `config.action_dispatch.show_exceptions` is set to `false`, exceptions will be raised regardless.
|
198
204
|
* `ActionDispatch::RequestId` makes a unique X-Request-Id header available to the response and enables the `ActionDispatch::Request#uuid` method.
|
199
205
|
* `ActionDispatch::RemoteIp` checks for IP spoofing attacks and gets valid `client_ip` from request headers. Configurable with the `config.action_dispatch.ip_spoofing_check`, and `config.action_dispatch.trusted_proxies` options.
|
@@ -206,7 +212,7 @@ Every Rails application comes with a standard set of middleware which it uses in
|
|
206
212
|
* `ActionDispatch::Flash` sets up the `flash` keys. Only available if `config.action_controller.session_store` is set to a value.
|
207
213
|
* `ActionDispatch::ParamsParser` parses out parameters from the request into `params`.
|
208
214
|
* `Rack::MethodOverride` allows the method to be overridden if `params[:_method]` is set. This is the middleware which supports the PATCH, PUT, and DELETE HTTP method types.
|
209
|
-
* `
|
215
|
+
* `Rack::Head` converts HEAD requests to GET requests and serves them as so.
|
210
216
|
|
211
217
|
Besides these usual middleware, you can add your own by using the `config.middleware.use` method:
|
212
218
|
|
@@ -217,13 +223,13 @@ config.middleware.use Magical::Unicorns
|
|
217
223
|
This will put the `Magical::Unicorns` middleware on the end of the stack. You can use `insert_before` if you wish to add a middleware before another.
|
218
224
|
|
219
225
|
```ruby
|
220
|
-
config.middleware.insert_before
|
226
|
+
config.middleware.insert_before Rack::Head, Magical::Unicorns
|
221
227
|
```
|
222
228
|
|
223
229
|
There's also `insert_after` which will insert a middleware after another:
|
224
230
|
|
225
231
|
```ruby
|
226
|
-
config.middleware.insert_after
|
232
|
+
config.middleware.insert_after Rack::Head, Magical::Unicorns
|
227
233
|
```
|
228
234
|
|
229
235
|
Middlewares can also be completely swapped out and replaced with others:
|
@@ -240,8 +246,14 @@ config.middleware.delete "Rack::MethodOverride"
|
|
240
246
|
|
241
247
|
### Configuring i18n
|
242
248
|
|
249
|
+
All these configuration options are delegated to the `I18n` library.
|
250
|
+
|
251
|
+
* `config.i18n.available_locales` whitelists the available locales for the app. Defaults to all locale keys found in locale files, usually only `:en` on a new application.
|
252
|
+
|
243
253
|
* `config.i18n.default_locale` sets the default locale of an application used for i18n. Defaults to `:en`.
|
244
254
|
|
255
|
+
* `config.i18n.enforce_available_locales` ensures that all locales passed through i18n must be declared in the `available_locales` list, raising an `I18n::InvalidLocale` exception when setting an unavailable locale. Defaults to `true`. It is recommended not to disable this option unless strongly required, since this works as a security measure against setting any invalid locale from user input.
|
256
|
+
|
245
257
|
* `config.i18n.load_path` sets the path Rails uses to look for locale files. Defaults to `config/locales/*.{yml,rb}`.
|
246
258
|
|
247
259
|
### Configuring Active Record
|
@@ -258,9 +270,11 @@ config.middleware.delete "Rack::MethodOverride"
|
|
258
270
|
|
259
271
|
* `config.active_record.table_name_suffix` lets you set a global string to be appended to table names. If you set this to `_northwest`, then the Customer class will look for `customers_northwest` as its table. The default is an empty string.
|
260
272
|
|
273
|
+
* `config.active_record.schema_migrations_table_name` lets you set a string to be used as the name of the schema migrations table.
|
274
|
+
|
261
275
|
* `config.active_record.pluralize_table_names` specifies whether Rails will look for singular or plural table names in the database. If set to true (the default), then the Customer class will use the `customers` table. If set to false, then the Customer class will use the `customer` table.
|
262
276
|
|
263
|
-
* `config.active_record.default_timezone` determines whether to use `Time.local` (if set to `:local`) or `Time.utc` (if set to `:utc`) when pulling dates and times from the database. The default is `:utc
|
277
|
+
* `config.active_record.default_timezone` determines whether to use `Time.local` (if set to `:local`) or `Time.utc` (if set to `:utc`) when pulling dates and times from the database. The default is `:utc`.
|
264
278
|
|
265
279
|
* `config.active_record.schema_format` controls the format for dumping the database schema to a file. The options are `:ruby` (the default) for a database-independent version that depends on migrations, or `:sql` for a set of (potentially database-dependent) SQL statements.
|
266
280
|
|
@@ -270,6 +284,18 @@ config.middleware.delete "Rack::MethodOverride"
|
|
270
284
|
|
271
285
|
* `config.active_record.cache_timestamp_format` controls the format of the timestamp value in the cache key. Default is `:number`.
|
272
286
|
|
287
|
+
* `config.active_record.record_timestamps` is a boolean value which controls whether or not timestamping of `create` and `update` operations on a model occur. The default value is `true`.
|
288
|
+
|
289
|
+
* `config.active_record.partial_writes` is a boolean value and controls whether or not partial writes are used (i.e. whether updates only set attributes that are dirty). Note that when using partial writes, you should also use optimistic locking `config.active_record.lock_optimistically` since concurrent updates may write attributes based on a possibly stale read state. The default value is `true`.
|
290
|
+
|
291
|
+
* `config.active_record.maintain_test_schema` is a boolean value which controls whether Active Record should try to keep your test database schema up-to-date with `db/schema.rb` (or `db/structure.sql`) when you run your tests. The default is true.
|
292
|
+
|
293
|
+
* `config.active_record.dump_schema_after_migration` is a flag which
|
294
|
+
controls whether or not schema dump should happen (`db/schema.rb` or
|
295
|
+
`db/structure.sql`) when you run migrations. This is set to false in
|
296
|
+
`config/environments/production.rb` which is generated by Rails. The
|
297
|
+
default value is true if this configuration is not set.
|
298
|
+
|
273
299
|
The MySQL adapter adds one additional configuration option:
|
274
300
|
|
275
301
|
* `ActiveRecord::ConnectionAdapters::MysqlAdapter.emulate_booleans` controls whether Active Record will consider all `tinyint(1)` columns in a MySQL database to be booleans and is true by default.
|
@@ -296,11 +322,13 @@ The schema dumper adds one additional configuration option:
|
|
296
322
|
|
297
323
|
* `config.action_controller.allow_forgery_protection` enables or disables CSRF protection. By default this is `false` in test mode and `true` in all other modes.
|
298
324
|
|
299
|
-
* `config.action_controller.relative_url_root` can be used to tell Rails that you are deploying to a subdirectory. The default is `ENV['RAILS_RELATIVE_URL_ROOT']`.
|
325
|
+
* `config.action_controller.relative_url_root` can be used to tell Rails that you are [deploying to a subdirectory](configuring.html#deploy-to-a-subdirectory-relative-url-root). The default is `ENV['RAILS_RELATIVE_URL_ROOT']`.
|
300
326
|
|
301
327
|
* `config.action_controller.permit_all_parameters` sets all the parameters for mass assignment to be permitted by default. The default value is `false`.
|
302
328
|
|
303
|
-
* `config.action_controller.
|
329
|
+
* `config.action_controller.action_on_unpermitted_parameters` enables logging or raising an exception if parameters that are not explicitly permitted are found. Set to `:log` or `:raise` to enable. The default value is `:log` in development and test environments, and `false` in all other environments.
|
330
|
+
|
331
|
+
* `config.action_controller.always_permitted_parameters` sets a list of whitelisted parameters that are permitted by default. The default values are `['controller', 'action']`.
|
304
332
|
|
305
333
|
### Configuring Action Dispatch
|
306
334
|
|
@@ -318,6 +346,46 @@ The schema dumper adds one additional configuration option:
|
|
318
346
|
|
319
347
|
* `config.action_dispatch.tld_length` sets the TLD (top-level domain) length for the application. Defaults to `1`.
|
320
348
|
|
349
|
+
* `config.action_dispatch.http_auth_salt` sets the HTTP Auth salt value. Defaults
|
350
|
+
to `'http authentication'`.
|
351
|
+
|
352
|
+
* `config.action_dispatch.signed_cookie_salt` sets the signed cookies salt value.
|
353
|
+
Defaults to `'signed cookie'`.
|
354
|
+
|
355
|
+
* `config.action_dispatch.encrypted_cookie_salt` sets the encrypted cookies salt
|
356
|
+
value. Defaults to `'encrypted cookie'`.
|
357
|
+
|
358
|
+
* `config.action_dispatch.encrypted_signed_cookie_salt` sets the signed
|
359
|
+
encrypted cookies salt value. Defaults to `'signed encrypted cookie'`.
|
360
|
+
|
361
|
+
* `config.action_dispatch.perform_deep_munge` configures whether `deep_munge`
|
362
|
+
method should be performed on the parameters. See [Security Guide](security.html#unsafe-query-generation)
|
363
|
+
for more information. It defaults to true.
|
364
|
+
|
365
|
+
* `config.action_dispatch.rescue_responses` configures what exceptions are assigned to an HTTP status. It accepts a hash and you can specify pairs of exception/status. By default, this is defined as:
|
366
|
+
|
367
|
+
```ruby
|
368
|
+
config.action_dispatch.rescue_responses = {
|
369
|
+
'ActionController::RoutingError' => :not_found,
|
370
|
+
'AbstractController::ActionNotFound' => :not_found,
|
371
|
+
'ActionController::MethodNotAllowed' => :method_not_allowed,
|
372
|
+
'ActionController::UnknownHttpMethod' => :method_not_allowed,
|
373
|
+
'ActionController::NotImplemented' => :not_implemented,
|
374
|
+
'ActionController::UnknownFormat' => :not_acceptable,
|
375
|
+
'ActionController::InvalidAuthenticityToken' => :unprocessable_entity,
|
376
|
+
'ActionController::InvalidCrossOriginRequest' => :unprocessable_entity,
|
377
|
+
'ActionDispatch::ParamsParser::ParseError' => :bad_request,
|
378
|
+
'ActionController::BadRequest' => :bad_request,
|
379
|
+
'ActionController::ParameterMissing' => :bad_request,
|
380
|
+
'ActiveRecord::RecordNotFound' => :not_found,
|
381
|
+
'ActiveRecord::StaleObjectError' => :conflict,
|
382
|
+
'ActiveRecord::RecordInvalid' => :unprocessable_entity,
|
383
|
+
'ActiveRecord::RecordNotSaved' => :unprocessable_entity
|
384
|
+
}
|
385
|
+
```
|
386
|
+
|
387
|
+
Any exceptions that are not configured will be mapped to 500 Internal Server Error.
|
388
|
+
|
321
389
|
* `ActionDispatch::Callbacks.before` takes a block of code to run before the request.
|
322
390
|
|
323
391
|
* `ActionDispatch::Callbacks.to_prepare` takes a block to run after `ActionDispatch::Callbacks.before`, but before the request. Runs for every request in `development` mode, but only once for `production` or environments with `cache_classes` set to `true`.
|
@@ -340,17 +408,19 @@ The schema dumper adds one additional configuration option:
|
|
340
408
|
|
341
409
|
* `config.action_view.logger` accepts a logger conforming to the interface of Log4r or the default Ruby Logger class, which is then used to log information from Action View. Set to `nil` to disable logging.
|
342
410
|
|
343
|
-
* `config.action_view.erb_trim_mode` gives the trim mode to be used by ERB. It defaults to `'-'
|
411
|
+
* `config.action_view.erb_trim_mode` gives the trim mode to be used by ERB. It defaults to `'-'`, which turns on trimming of tail spaces and newline when using `<%= -%>` or `<%= =%>`. See the [Erubis documentation](http://www.kuwata-lab.com/erubis/users-guide.06.html#topics-trimspaces) for more information.
|
344
412
|
|
345
413
|
* `config.action_view.embed_authenticity_token_in_remote_forms` allows you to set the default behavior for `authenticity_token` in forms with `:remote => true`. By default it's set to false, which means that remote forms will not include `authenticity_token`, which is helpful when you're fragment-caching the form. Remote forms get the authenticity from the `meta` tag, so embedding is unnecessary unless you support browsers without JavaScript. In such case you can either pass `:authenticity_token => true` as a form option or set this config setting to `true`
|
346
414
|
|
347
|
-
* `config.action_view.prefix_partial_path_with_controller_namespace` determines whether or not partials are looked up from a subdirectory in templates rendered from namespaced controllers. For example, consider a controller named `Admin::
|
415
|
+
* `config.action_view.prefix_partial_path_with_controller_namespace` determines whether or not partials are looked up from a subdirectory in templates rendered from namespaced controllers. For example, consider a controller named `Admin::ArticlesController` which renders this template:
|
348
416
|
|
349
417
|
```erb
|
350
|
-
<%= render @
|
418
|
+
<%= render @article %>
|
351
419
|
```
|
352
420
|
|
353
|
-
The default setting is `true`, which uses the partial at `/admin/
|
421
|
+
The default setting is `true`, which uses the partial at `/admin/articles/_article.erb`. Setting the value to `false` would render `/articles/_article.erb`, which is the same behavior as rendering from a non-namespaced controller such as `ArticlesController`.
|
422
|
+
|
423
|
+
* `config.action_view.raise_on_missing_translations` determines whether an error should be raised for missing translations
|
354
424
|
|
355
425
|
### Configuring Action Mailer
|
356
426
|
|
@@ -372,17 +442,25 @@ There are a number of settings available on `config.action_mailer`:
|
|
372
442
|
|
373
443
|
* `config.action_mailer.raise_delivery_errors` specifies whether to raise an error if email delivery cannot be completed. It defaults to true.
|
374
444
|
|
375
|
-
* `config.action_mailer.delivery_method` defines the delivery method
|
445
|
+
* `config.action_mailer.delivery_method` defines the delivery method and defaults to `:smtp`. See the [configuration section in the Action Mailer guide](http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration) for more info.
|
376
446
|
|
377
447
|
* `config.action_mailer.perform_deliveries` specifies whether mail will actually be delivered and is true by default. It can be convenient to set it to false for testing.
|
378
448
|
|
379
449
|
* `config.action_mailer.default_options` configures Action Mailer defaults. Use to set options like `from` or `reply_to` for every mailer. These default to:
|
380
450
|
|
381
451
|
```ruby
|
382
|
-
:
|
383
|
-
:
|
384
|
-
:
|
385
|
-
:
|
452
|
+
mime_version: "1.0",
|
453
|
+
charset: "UTF-8",
|
454
|
+
content_type: "text/plain",
|
455
|
+
parts_order: ["text/plain", "text/enriched", "text/html"]
|
456
|
+
```
|
457
|
+
|
458
|
+
Assign a hash to set additional options:
|
459
|
+
|
460
|
+
```ruby
|
461
|
+
config.action_mailer.default_options = {
|
462
|
+
from: "noreply@example.com"
|
463
|
+
}
|
386
464
|
```
|
387
465
|
|
388
466
|
* `config.action_mailer.observers` registers observers which will be notified when mail is delivered.
|
@@ -397,16 +475,32 @@ There are a number of settings available on `config.action_mailer`:
|
|
397
475
|
config.action_mailer.interceptors = ["MailInterceptor"]
|
398
476
|
```
|
399
477
|
|
478
|
+
* `config.action_mailer.preview_path` specifies the location of mailer previews.
|
479
|
+
|
480
|
+
```ruby
|
481
|
+
config.action_mailer.preview_path = "#{Rails.root}/lib/mailer_previews"
|
482
|
+
```
|
483
|
+
|
484
|
+
* `config.action_mailer.show_previews` enable or disable mailer previews. By default this is `true` in development.
|
485
|
+
|
486
|
+
```ruby
|
487
|
+
config.action_mailer.show_previews = false
|
488
|
+
```
|
489
|
+
|
400
490
|
### Configuring Active Support
|
401
491
|
|
402
492
|
There are a few configuration options available in Active Support:
|
403
493
|
|
404
494
|
* `config.active_support.bare` enables or disables the loading of `active_support/all` when booting Rails. Defaults to `nil`, which means `active_support/all` is loaded.
|
405
495
|
|
496
|
+
* `config.active_support.test_order` sets the order that test cases are executed. Possible values are `:sorted` and `:random`. Currently defaults to `:sorted`. In Rails 5.0, the default will be changed to `:random` instead.
|
497
|
+
|
406
498
|
* `config.active_support.escape_html_entities_in_json` enables or disables the escaping of HTML entities in JSON serialization. Defaults to `false`.
|
407
499
|
|
408
500
|
* `config.active_support.use_standard_json_time_format` enables or disables serializing dates to ISO 8601 format. Defaults to `true`.
|
409
501
|
|
502
|
+
* `config.active_support.time_precision` sets the precision of JSON encoded time values. Defaults to `3`.
|
503
|
+
|
410
504
|
* `ActiveSupport::Logger.silencer` is set to `false` to disable the ability to silence logging in a block. The default is `true`.
|
411
505
|
|
412
506
|
* `ActiveSupport::Cache::Store.logger` specifies the logger to use within cache store operations.
|
@@ -417,17 +511,133 @@ There are a few configuration options available in Active Support:
|
|
417
511
|
|
418
512
|
* `ActiveSupport::Deprecation.silenced` sets whether or not to display deprecation warnings.
|
419
513
|
|
420
|
-
* `ActiveSupport::Logger.silencer` is set to `false` to disable the ability to silence logging in a block. The default is `true`.
|
421
514
|
|
422
515
|
### Configuring a Database
|
423
516
|
|
424
|
-
Just about every Rails application will interact with a database.
|
517
|
+
Just about every Rails application will interact with a database. You can connect to the database by setting an environment variable `ENV['DATABASE_URL']` or by using a configuration file called `config/database.yml`.
|
518
|
+
|
519
|
+
Using the `config/database.yml` file you can specify all the information needed to access your database:
|
520
|
+
|
521
|
+
```yaml
|
522
|
+
development:
|
523
|
+
adapter: postgresql
|
524
|
+
database: blog_development
|
525
|
+
pool: 5
|
526
|
+
```
|
527
|
+
|
528
|
+
This will connect to the database named `blog_development` using the `postgresql` adapter. This same information can be stored in a URL and provided via an environment variable like this:
|
529
|
+
|
530
|
+
```ruby
|
531
|
+
> puts ENV['DATABASE_URL']
|
532
|
+
postgresql://localhost/blog_development?pool=5
|
533
|
+
```
|
534
|
+
|
535
|
+
The `config/database.yml` file contains sections for three different environments in which Rails can run by default:
|
425
536
|
|
426
537
|
* The `development` environment is used on your development/local computer as you interact manually with the application.
|
427
538
|
* The `test` environment is used when running automated tests.
|
428
539
|
* The `production` environment is used when you deploy your application for the world to use.
|
429
540
|
|
430
|
-
|
541
|
+
If you wish, you can manually specify a URL inside of your `config/database.yml`
|
542
|
+
|
543
|
+
```
|
544
|
+
development:
|
545
|
+
url: postgresql://localhost/blog_development?pool=5
|
546
|
+
```
|
547
|
+
|
548
|
+
The `config/database.yml` file can contain ERB tags `<%= %>`. Anything in the tags will be evaluated as Ruby code. You can use this to pull out data from an environment variable or to perform calculations to generate the needed connection information.
|
549
|
+
|
550
|
+
|
551
|
+
TIP: You don't have to update the database configurations manually. If you look at the options of the application generator, you will see that one of the options is named `--database`. This option allows you to choose an adapter from a list of the most used relational databases. You can even run the generator repeatedly: `cd .. && rails new blog --database=mysql`. When you confirm the overwriting of the `config/database.yml` file, your application will be configured for MySQL instead of SQLite. Detailed examples of the common database connections are below.
|
552
|
+
|
553
|
+
|
554
|
+
### Connection Preference
|
555
|
+
|
556
|
+
Since there are two ways to set your connection, via environment variable it is important to understand how the two can interact.
|
557
|
+
|
558
|
+
If you have an empty `config/database.yml` file but your `ENV['DATABASE_URL']` is present, then Rails will connect to the database via your environment variable:
|
559
|
+
|
560
|
+
```
|
561
|
+
$ cat config/database.yml
|
562
|
+
|
563
|
+
$ echo $DATABASE_URL
|
564
|
+
postgresql://localhost/my_database
|
565
|
+
```
|
566
|
+
|
567
|
+
If you have a `config/database.yml` but no `ENV['DATABASE_URL']` then this file will be used to connect to your database:
|
568
|
+
|
569
|
+
```
|
570
|
+
$ cat config/database.yml
|
571
|
+
development:
|
572
|
+
adapter: postgresql
|
573
|
+
database: my_database
|
574
|
+
host: localhost
|
575
|
+
|
576
|
+
$ echo $DATABASE_URL
|
577
|
+
```
|
578
|
+
|
579
|
+
If you have both `config/database.yml` and `ENV['DATABASE_URL']` set then Rails will merge the configuration together. To better understand this we must see some examples.
|
580
|
+
|
581
|
+
When duplicate connection information is provided the environment variable will take precedence:
|
582
|
+
|
583
|
+
```
|
584
|
+
$ cat config/database.yml
|
585
|
+
development:
|
586
|
+
adapter: sqlite3
|
587
|
+
database: NOT_my_database
|
588
|
+
host: localhost
|
589
|
+
|
590
|
+
$ echo $DATABASE_URL
|
591
|
+
postgresql://localhost/my_database
|
592
|
+
|
593
|
+
$ bin/rails runner 'puts ActiveRecord::Base.configurations'
|
594
|
+
{"development"=>{"adapter"=>"postgresql", "host"=>"localhost", "database"=>"my_database"}}
|
595
|
+
```
|
596
|
+
|
597
|
+
Here the adapter, host, and database match the information in `ENV['DATABASE_URL']`.
|
598
|
+
|
599
|
+
If non-duplicate information is provided you will get all unique values, environment variable still takes precedence in cases of any conflicts.
|
600
|
+
|
601
|
+
```
|
602
|
+
$ cat config/database.yml
|
603
|
+
development:
|
604
|
+
adapter: sqlite3
|
605
|
+
pool: 5
|
606
|
+
|
607
|
+
$ echo $DATABASE_URL
|
608
|
+
postgresql://localhost/my_database
|
609
|
+
|
610
|
+
$ bin/rails runner 'puts ActiveRecord::Base.configurations'
|
611
|
+
{"development"=>{"adapter"=>"postgresql", "host"=>"localhost", "database"=>"my_database", "pool"=>5}}
|
612
|
+
```
|
613
|
+
|
614
|
+
Since pool is not in the `ENV['DATABASE_URL']` provided connection information its information is merged in. Since `adapter` is duplicate, the `ENV['DATABASE_URL']` connection information wins.
|
615
|
+
|
616
|
+
The only way to explicitly not use the connection information in `ENV['DATABASE_URL']` is to specify an explicit URL connection using the `"url"` sub key:
|
617
|
+
|
618
|
+
```
|
619
|
+
$ cat config/database.yml
|
620
|
+
development:
|
621
|
+
url: sqlite3:NOT_my_database
|
622
|
+
|
623
|
+
$ echo $DATABASE_URL
|
624
|
+
postgresql://localhost/my_database
|
625
|
+
|
626
|
+
$ bin/rails runner 'puts ActiveRecord::Base.configurations'
|
627
|
+
{"development"=>{"adapter"=>"sqlite3", "database"=>"NOT_my_database"}}
|
628
|
+
```
|
629
|
+
|
630
|
+
Here the connection information in `ENV['DATABASE_URL']` is ignored, note the different adapter and database name.
|
631
|
+
|
632
|
+
Since it is possible to embed ERB in your `config/database.yml` it is best practice to explicitly show you are using the `ENV['DATABASE_URL']` to connect to your database. This is especially useful in production since you should not commit secrets like your database password into your source control (such as Git).
|
633
|
+
|
634
|
+
```
|
635
|
+
$ cat config/database.yml
|
636
|
+
production:
|
637
|
+
url: <%= ENV['DATABASE_URL'] %>
|
638
|
+
```
|
639
|
+
|
640
|
+
Now the behavior is clear, that we are only using the connection information in `ENV['DATABASE_URL']`.
|
431
641
|
|
432
642
|
#### Configuring an SQLite3 Database
|
433
643
|
|
@@ -472,11 +682,9 @@ development:
|
|
472
682
|
encoding: unicode
|
473
683
|
database: blog_development
|
474
684
|
pool: 5
|
475
|
-
username: blog
|
476
|
-
password:
|
477
685
|
```
|
478
686
|
|
479
|
-
Prepared Statements can be
|
687
|
+
Prepared Statements are enabled by default on PostgreSQL. You can be disable prepared statements by setting `prepared_statements` to `false`:
|
480
688
|
|
481
689
|
```yaml
|
482
690
|
production:
|
@@ -484,6 +692,16 @@ production:
|
|
484
692
|
prepared_statements: false
|
485
693
|
```
|
486
694
|
|
695
|
+
If enabled, Active Record will create up to `1000` prepared statements per database connection by default. To modify this behavior you can set `statement_limit` to a different value:
|
696
|
+
|
697
|
+
```
|
698
|
+
production:
|
699
|
+
adapter: postgresql
|
700
|
+
statement_limit: 200
|
701
|
+
```
|
702
|
+
|
703
|
+
The more prepared statements in use: the more memory your database will require. If your PostgreSQL database is hitting memory limits, try lowering `statement_limit` or disabling prepared statements.
|
704
|
+
|
487
705
|
#### Configuring an SQLite3 Database for JRuby Platform
|
488
706
|
|
489
707
|
If you choose to use SQLite3 and are using JRuby, your `config/database.yml` will look a little different. Here's the development section:
|
@@ -525,10 +743,81 @@ Change the username and password in the `development` section as appropriate.
|
|
525
743
|
|
526
744
|
By default Rails ships with three environments: "development", "test", and "production". While these are sufficient for most use cases, there are circumstances when you want more environments.
|
527
745
|
|
528
|
-
Imagine you have a server which mirrors the production environment but is only used for testing. Such a server is commonly called a "staging server". To define an environment called "staging" for this server just
|
746
|
+
Imagine you have a server which mirrors the production environment but is only used for testing. Such a server is commonly called a "staging server". To define an environment called "staging" for this server, just create a file called `config/environments/staging.rb`. Please use the contents of any existing file in `config/environments` as a starting point and make the necessary changes from there.
|
747
|
+
|
748
|
+
That environment is no different than the default ones, start a server with `rails server -e staging`, a console with `rails console staging`, `Rails.env.staging?` works, etc.
|
749
|
+
|
750
|
+
|
751
|
+
### Deploy to a subdirectory (relative url root)
|
752
|
+
|
753
|
+
By default Rails expects that your application is running at the root
|
754
|
+
(eg. `/`). This section explains how to run your application inside a directory.
|
755
|
+
|
756
|
+
Let's assume we want to deploy our application to "/app1". Rails needs to know
|
757
|
+
this directory to generate the appropriate routes:
|
758
|
+
|
759
|
+
```ruby
|
760
|
+
config.relative_url_root = "/app1"
|
761
|
+
```
|
762
|
+
|
763
|
+
alternatively you can set the `RAILS_RELATIVE_URL_ROOT` environment
|
764
|
+
variable.
|
765
|
+
|
766
|
+
Rails will now prepend "/app1" when generating links.
|
767
|
+
|
768
|
+
#### Using Passenger
|
769
|
+
|
770
|
+
Passenger makes it easy to run your application in a subdirectory. You can find the relevant configuration in the [Passenger manual](http://www.modrails.com/documentation/Users%20guide%20Apache.html#deploying_rails_to_sub_uri).
|
771
|
+
|
772
|
+
#### Using a Reverse Proxy
|
529
773
|
|
530
|
-
|
774
|
+
Deploying your application using a reverse proxy has definite advantages over traditional deploys. They allow you to have more control over your server by layering the components required by your application.
|
531
775
|
|
776
|
+
Many modern web servers can be used as a proxy server to balance third-party elements such as caching servers or application servers.
|
777
|
+
|
778
|
+
One such application server you can use is [Unicorn](http://unicorn.bogomips.org/) to run behind a reverse proxy.
|
779
|
+
|
780
|
+
In this case, you would need to configure the proxy server (NGINX, Apache, etc) to accept connections from your application server (Unicorn). By default Unicorn will listen for TCP connections on port 8080, but you can change the port or configure it to use sockets instead.
|
781
|
+
|
782
|
+
You can find more information in the [Unicorn readme](http://unicorn.bogomips.org/README.html) and understand the [philosophy](http://unicorn.bogomips.org/PHILOSOPHY.html) behind it.
|
783
|
+
|
784
|
+
Once you've configured the application server, you must proxy requests to it by configuring your web server appropriately. For example your NGINX config may include:
|
785
|
+
|
786
|
+
```
|
787
|
+
upstream application_server {
|
788
|
+
server 0.0.0.0:8080
|
789
|
+
}
|
790
|
+
|
791
|
+
server {
|
792
|
+
listen 80;
|
793
|
+
server_name localhost;
|
794
|
+
|
795
|
+
root /root/path/to/your_app/public;
|
796
|
+
|
797
|
+
try_files $uri/index.html $uri.html @app;
|
798
|
+
|
799
|
+
location @app {
|
800
|
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
801
|
+
proxy_set_header Host $http_host;
|
802
|
+
proxy_redirect off;
|
803
|
+
proxy_pass http://application_server;
|
804
|
+
}
|
805
|
+
|
806
|
+
# some other configuration
|
807
|
+
}
|
808
|
+
```
|
809
|
+
|
810
|
+
Be sure to read the [NGINX documentation](http://nginx.org/en/docs/) for the most up-to-date information.
|
811
|
+
|
812
|
+
#### Considerations when deploying to a subdirectory
|
813
|
+
|
814
|
+
Deploying to a subdirectory in production has implications on various parts of
|
815
|
+
Rails.
|
816
|
+
|
817
|
+
* development environment:
|
818
|
+
* testing environment:
|
819
|
+
* serving static assets:
|
820
|
+
* asset pipeline:
|
532
821
|
|
533
822
|
Rails Environment Settings
|
534
823
|
--------------------------
|
@@ -537,7 +826,7 @@ Some parts of Rails can also be configured externally by supplying environment v
|
|
537
826
|
|
538
827
|
* `ENV["RAILS_ENV"]` defines the Rails environment (production, development, test, and so on) that Rails will run under.
|
539
828
|
|
540
|
-
* `ENV["RAILS_RELATIVE_URL_ROOT"]` is used by the routing code to recognize URLs when you deploy your application to a subdirectory.
|
829
|
+
* `ENV["RAILS_RELATIVE_URL_ROOT"]` is used by the routing code to recognize URLs when you [deploy your application to a subdirectory](configuring.html#deploy-to-a-subdirectory-relative-url-root).
|
541
830
|
|
542
831
|
* `ENV["RAILS_CACHE_ID"]` and `ENV["RAILS_APP_VERSION"]` are used to generate expanded cache keys in Rails' caching code. This allows you to have multiple separate caches from the same application.
|
543
832
|
|
@@ -564,7 +853,7 @@ Rails has 5 initialization events which can be hooked into (listed in the order
|
|
564
853
|
|
565
854
|
* `before_eager_load`: This is run directly before eager loading occurs, which is the default behavior for the `production` environment and not for the `development` environment.
|
566
855
|
|
567
|
-
* `after_initialize`: Run directly after the initialization of the application,
|
856
|
+
* `after_initialize`: Run directly after the initialization of the application, after the application initializers in `config/initializers` are run.
|
568
857
|
|
569
858
|
To define an event for these hooks, use the block syntax within a `Rails::Application`, `Rails::Railtie` or `Rails::Engine` subclass:
|
570
859
|
|
@@ -590,17 +879,17 @@ WARNING: Some parts of your application, notably routing, are not yet set up at
|
|
590
879
|
|
591
880
|
### `Rails::Railtie#initializer`
|
592
881
|
|
593
|
-
Rails has several initializers that run on startup that are all defined by using the `initializer` method from `Rails::Railtie`. Here's an example of the `
|
882
|
+
Rails has several initializers that run on startup that are all defined by using the `initializer` method from `Rails::Railtie`. Here's an example of the `set_helpers_path` initializer from Action Controller:
|
594
883
|
|
595
884
|
```ruby
|
596
|
-
initializer "
|
597
|
-
|
885
|
+
initializer "action_controller.set_helpers_path" do |app|
|
886
|
+
ActionController::Helpers.helpers_path = app.helpers_paths
|
598
887
|
end
|
599
888
|
```
|
600
889
|
|
601
890
|
The `initializer` method takes three arguments with the first being the name for the initializer and the second being an options hash (not shown here) and the third being a block. The `:before` key in the options hash can be specified to specify which initializer this new initializer must run before, and the `:after` key will specify which initializer to run this initializer _after_.
|
602
891
|
|
603
|
-
Initializers defined using the `initializer` method will be
|
892
|
+
Initializers defined using the `initializer` method will be run in the order they are defined in, with the exception of ones that use the `:before` or `:after` methods.
|
604
893
|
|
605
894
|
WARNING: You may put your initializer before or after any other initializer in the chain, as long as it is logical. Say you have 4 initializers called "one" through "four" (defined in that order) and you define "four" to go _before_ "four" but _after_ "three", that just isn't logical and Rails will not be able to determine your initializer order.
|
606
895
|
|
@@ -620,7 +909,7 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
620
909
|
|
621
910
|
* `initialize_cache` If `Rails.cache` isn't set yet, initializes the cache by referencing the value in `config.cache_store` and stores the outcome as `Rails.cache`. If this object responds to the `middleware` method, its middleware is inserted before `Rack::Runtime` in the middleware stack.
|
622
911
|
|
623
|
-
* `set_clear_dependencies_hook` Provides a hook for `active_record.set_dispatch_hooks` to use, which will run before this initializer. This initializer
|
912
|
+
* `set_clear_dependencies_hook` Provides a hook for `active_record.set_dispatch_hooks` to use, which will run before this initializer. This initializer - which runs only if `cache_classes` is set to `false` - uses `ActionDispatch::Callbacks.after` to remove the constants which have been referenced during the request from the object space so that they will be reloaded during the following request.
|
624
913
|
|
625
914
|
* `initialize_dependency_mechanism` If `config.cache_classes` is true, configures `ActiveSupport::Dependencies.mechanism` to `require` dependencies rather than `load` them.
|
626
915
|
|
@@ -628,20 +917,6 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
628
917
|
|
629
918
|
* `i18n.callbacks` In the development environment, sets up a `to_prepare` callback which will call `I18n.reload!` if any of the locales have changed since the last request. In production mode this callback will only run on the first request.
|
630
919
|
|
631
|
-
* `active_support.initialize_whiny_nils` Requires `active_support/whiny_nil` if `config.whiny_nils` is true. This file will output errors such as:
|
632
|
-
|
633
|
-
```
|
634
|
-
Called id for nil, which would mistakenly be 4 — if you really wanted the id of nil, use object_id
|
635
|
-
```
|
636
|
-
|
637
|
-
And:
|
638
|
-
|
639
|
-
```
|
640
|
-
You have a nil object when you didn't expect it!
|
641
|
-
You might have expected an instance of Array.
|
642
|
-
The error occurred while evaluating nil.each
|
643
|
-
```
|
644
|
-
|
645
920
|
* `active_support.deprecation_behavior` Sets up deprecation reporting for environments, defaulting to `:log` for development, `:notify` for production and `:stderr` for test. If a value isn't set for `config.active_support.deprecation` then this initializer will prompt the user to configure this line in the current environment's `config/environments` file. Can be set to an array of values.
|
646
921
|
|
647
922
|
* `active_support.initialize_time_zone` Sets the default time zone for the application based on the `config.time_zone` setting, which defaults to "UTC".
|
@@ -652,9 +927,9 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
652
927
|
|
653
928
|
* `action_view.set_configs` Sets up Action View by using the settings in `config.action_view` by `send`'ing the method names as setters to `ActionView::Base` and passing the values through.
|
654
929
|
|
655
|
-
* `action_controller.logger` Sets `ActionController::Base.logger`
|
930
|
+
* `action_controller.logger` Sets `ActionController::Base.logger` - if it's not already set - to `Rails.logger`.
|
656
931
|
|
657
|
-
* `action_controller.initialize_framework_caches` Sets `ActionController::Base.cache_store`
|
932
|
+
* `action_controller.initialize_framework_caches` Sets `ActionController::Base.cache_store` - if it's not already set - to `Rails.cache`.
|
658
933
|
|
659
934
|
* `action_controller.set_configs` Sets up Action Controller by using the settings in `config.action_controller` by `send`'ing the method names as setters to `ActionController::Base` and passing the values through.
|
660
935
|
|
@@ -662,7 +937,7 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
662
937
|
|
663
938
|
* `active_record.initialize_timezone` Sets `ActiveRecord::Base.time_zone_aware_attributes` to true, as well as setting `ActiveRecord::Base.default_timezone` to UTC. When attributes are read from the database, they will be converted into the time zone specified by `Time.zone`.
|
664
939
|
|
665
|
-
* `active_record.logger` Sets `ActiveRecord::Base.logger`
|
940
|
+
* `active_record.logger` Sets `ActiveRecord::Base.logger` - if it's not already set - to `Rails.logger`.
|
666
941
|
|
667
942
|
* `active_record.set_configs` Sets up Active Record by using the settings in `config.active_record` by `send`'ing the method names as setters to `ActiveRecord::Base` and passing the values through.
|
668
943
|
|
@@ -672,7 +947,7 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
672
947
|
|
673
948
|
* `active_record.set_dispatch_hooks` Resets all reloadable connections to the database if `config.cache_classes` is set to `false`.
|
674
949
|
|
675
|
-
* `action_mailer.logger` Sets `ActionMailer::Base.logger`
|
950
|
+
* `action_mailer.logger` Sets `ActionMailer::Base.logger` - if it's not already set - to `Rails.logger`.
|
676
951
|
|
677
952
|
* `action_mailer.set_configs` Sets up Action Mailer by using the settings in `config.action_mailer` by `send`'ing the method names as setters to `ActionMailer::Base` and passing the values through.
|
678
953
|
|
@@ -702,7 +977,7 @@ Below is a comprehensive list of all the initializers found in Rails in the orde
|
|
702
977
|
|
703
978
|
* `ensure_autoload_once_paths_as_subset` Ensures that the `config.autoload_once_paths` only contains paths from `config.autoload_paths`. If it contains extra paths, then an exception will be raised.
|
704
979
|
|
705
|
-
* `add_to_prepare_blocks` The block for every `config.to_prepare` call in the application, a railtie or engine is added to the `to_prepare` callbacks for Action Dispatch which will be
|
980
|
+
* `add_to_prepare_blocks` The block for every `config.to_prepare` call in the application, a railtie or engine is added to the `to_prepare` callbacks for Action Dispatch which will be run per request in development, or before the first request in production.
|
706
981
|
|
707
982
|
* `add_builtin_route` If the application is running under the development environment then this will append the route for `rails/info/properties` to the application routes. This route provides the detailed information such as Rails and Ruby version for `public/index.html` in a default Rails application.
|
708
983
|
|
@@ -733,4 +1008,63 @@ Since the connection pooling is handled inside of Active Record by default, all
|
|
733
1008
|
|
734
1009
|
Any one request will check out a connection the first time it requires access to the database, after which it will check the connection back in, at the end of the request, meaning that the additional connection slot will be available again for the next request in the queue.
|
735
1010
|
|
736
|
-
|
1011
|
+
If you try to use more connections than are available, Active Record will block
|
1012
|
+
and wait for a connection from the pool. When it cannot get connection, a timeout
|
1013
|
+
error similar to given below will be thrown.
|
1014
|
+
|
1015
|
+
```ruby
|
1016
|
+
ActiveRecord::ConnectionTimeoutError - could not obtain a database connection within 5 seconds. The max pool size is currently 5; consider increasing it:
|
1017
|
+
```
|
1018
|
+
|
1019
|
+
If you get the above error, you might want to increase the size of connection
|
1020
|
+
pool by incrementing the `pool` option in `database.yml`
|
1021
|
+
|
1022
|
+
NOTE. If you are running in a multi-threaded environment, there could be a chance that several threads may be accessing multiple connections simultaneously. So depending on your current request load, you could very well have multiple threads contending for a limited amount of connections.
|
1023
|
+
|
1024
|
+
|
1025
|
+
Custom configuration
|
1026
|
+
--------------------
|
1027
|
+
|
1028
|
+
You can configure your own code through the Rails configuration object with custom configuration under the `config.x` property. It works like this:
|
1029
|
+
|
1030
|
+
```ruby
|
1031
|
+
config.x.payment_processing.schedule = :daily
|
1032
|
+
config.x.payment_processing.retries = 3
|
1033
|
+
config.x.super_debugger = true
|
1034
|
+
```
|
1035
|
+
|
1036
|
+
These configuration points are then available through the configuration object:
|
1037
|
+
|
1038
|
+
```ruby
|
1039
|
+
Rails.configuration.x.payment_processing.schedule # => :daily
|
1040
|
+
Rails.configuration.x.payment_processing.retries # => 3
|
1041
|
+
Rails.configuration.x.super_debugger # => true
|
1042
|
+
Rails.configuration.x.super_debugger.not_set # => nil
|
1043
|
+
```
|
1044
|
+
|
1045
|
+
You can also use Rails::Application.config_for to load whole configuration files:
|
1046
|
+
|
1047
|
+
```ruby
|
1048
|
+
# config/payment.yml:
|
1049
|
+
production:
|
1050
|
+
environment: production
|
1051
|
+
merchant_id: production_merchant_id
|
1052
|
+
public_key: production_public_key
|
1053
|
+
private_key: production_private_key
|
1054
|
+
development:
|
1055
|
+
environment: sandbox
|
1056
|
+
merchant_id: development_merchant_id
|
1057
|
+
public_key: development_public_key
|
1058
|
+
private_key: development_private_key
|
1059
|
+
|
1060
|
+
# config/application.rb
|
1061
|
+
module MyApp
|
1062
|
+
class Application < Rails::Application
|
1063
|
+
config.x.payment = config_for(:payment)
|
1064
|
+
end
|
1065
|
+
end
|
1066
|
+
```
|
1067
|
+
|
1068
|
+
```ruby
|
1069
|
+
Rails.configuration.x.payment['merchant_id'] # => production_merchant_id or development_merchant_id
|
1070
|
+
```
|