aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
Commit message (Collapse)AuthorAgeFilesLines
* Add Active Job to Configuring Guide [ci skip]Eliot Sykes2015-04-091-0/+56
|
* Remove unused subdir deployment considerations section [ci skip]Eliot Sykes2015-03-311-9/+0
|
* [skip ci] Update configuring.md with #18846Jon Atack2015-03-271-0/+5
| | | | | Add `config.active_record.warn_on_records_fetched_greater_than` to the Configuring Rails Guide.
* Add config.active_record.dump_schemas.Ryan Wallace2015-03-171-0/+5
| | | | | | | Fixes db:structure:dump when using schema_search_path and PostgreSQL extensions. Closes #17157.
* Some documentation edits [ci skip]Robin Dupret2015-03-051-1/+3
| | | | | | * Fix a few typos * Wrap some lines around 80 chars * Rephrase some statements
* Update cache_timestamp_format default value in guidesT.J. Schuck2015-03-031-1/+1
| | | [ci skip]
* Remove mention of long-gone initializer and configJeremy Kemper2015-03-031-2/+0
| | | | | Serving public files from multiple paths was removed in afc828828ffffe7edeb4648a9d2aa4731191ae21
* Require `belongs_to` by default.Josef Šimánek2015-02-211-0/+2
| | | | Deprecate `required` option in favor of `optional` for belongs_to.
* Minor guides edits [ci skip]Robin Dupret2015-02-211-7/+9
|
* Revert c732a66:Zachary Scott2015-02-161-0/+4
| | | | | | | | * "rm docs for dependency_loading and disable_dependency_loading config" It was added back in a71350cae0082193ad8c66d65ab62e8bb0b7853b by @tenderlove See also #13142
* Merge pull request #18960 from ctaintor/remove_dependency_docZachary Scott2015-02-161-4/+0
|\ | | | | removes documentation that is no longer relevant
| * removes docs for dependency_loading config option and ↵Case Taintor2015-02-161-4/+0
| | | | | | | | disable_dependency_loading initializer because it was removed by commit a8bf12979e5fa15282b39c8cfa315e663f613539
* | Merge pull request #18485 from andreynering/robots.txtZachary Scott2015-02-161-0/+18
|\ \ | |/ |/| Adding 'Search Engines Indexing' Section [ci skip]
| * Adding 'Search Engines Indexing' Section [ci skip]Andrey Nering2015-01-141-0/+18
| |
* | Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-01-151-1/+1
|\ \ | |/ |/|
| * Fix typo "you can be disable"claudiob2015-01-061-1/+1
| | | | | | | | | | | | Closes https://github.com/rails/rails/issues/18372 [ci skip]
* | - Changed `IN` to `ON` in markdown renderer conditionVipul A M2015-01-141-1/+1
| | | | | | | | - Changed `IN` to `ON` in all note sentences in guides.
* | Add log_level options to configuration guideSammy Larbi2015-01-061-1/+1
| |
* | Add config to halt callback chain on return falseclaudiob2015-01-021-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This stems from [a comment](rails#17227 (comment)) by @dhh. In summary: * New Rails 5.0 apps will not accept `return false` as a way to halt callback chains, and will not display a deprecation warning. * Existing apps ported to Rails 5.0 will still accept `return false` as a way to halt callback chains, albeit with a deprecation warning. For this purpose, this commit introduces a Rails configuration option: ```ruby config.active_support.halt_callback_chains_on_return_false ``` For new Rails 5.0 apps, this option will be set to `false` by a new initializer `config/initializers/callback_terminator.rb`: ```ruby Rails.application.config.active_support.halt_callback_chains_on_return_false = false ``` For existing apps ported to Rails 5.0, the initializers above will not exist. Even running `rake rails:update` will not create this initializer. Since the default value of `halt_callback_chains_on_return_false` is set to `true`, these apps will still accept `return true` as a way to halt callback chains, displaying a deprecation warning. Developers will be able to switch to the new behavior (and stop the warning) by manually adding the line above to their `config/application.rb`. A gist with the suggested release notes to add to Rails 5.0 after this commit is available at https://gist.github.com/claudiob/614c59409fb7d11f2931
* Document the include_all_helpers config setting.Adam Prescott2014-12-291-0/+2
| | | | | This config setting has been available for quite a while but was not documented.
* Minor documentation edits [ci skip]Robin Dupret2014-12-281-1/+1
|
* warn about reading guides in GitHubXavier Noria2014-12-231-0/+2
| | | | References #18148.
* Use serve_static_files in guides, take 2 [skip ci]Arthur Neves2014-12-221-2/+2
|
* Use serve_static_files in guides [skip ci]Arthur Neves2014-12-221-1/+1
|
* [ci skip] Improve grammar in configuring serve_static_files guideeileencodes2014-12-201-1/+1
|
* Merge pull request #18100 from chancancode/serve_static_filesGodfrey Chan2014-12-191-1/+1
| | | | | | Allow static asset serving from env variable (enhanced!) Conflicts: railties/CHANGELOG.md
* Replace ActionDispatch::Head with Rack::Head.yui-knk2014-11-241-3/+3
|
* [ci skip] fix `config.assets.digest` default valueyuuji.yaginuma2014-11-051-1/+1
|
* [ci skip] add AC::InvalidCrossOriginRequest to list of rescue_responses defaultyuuji.yaginuma2014-10-161-14/+15
|
* minor fixes in the configuring guide [ci skip]Xavier Noria2014-10-031-15/+15
|
* Revert "Fix style for rescue responses doc [ci skip]"Xavier Noria2014-10-031-16/+15
| | | | | | | Reason: There is a wrong newline, a typo, and the change to singular is not good. This reverts commit d76380cf1ccec7ffeff19827ae9b6d9b71327418.
* Fix style for rescue responses doc [ci skip]Yuki Nishijima2014-10-021-15/+16
| | | | | | | | | | * Change 'Any ***s that are...' to 'Any *** that is...' * Fix style for default rescue_responses setting This is a follow-up commit to: * https://github.com/rails/rails/pull/17076 * https://github.com/yuki24/rails/commit/89b8836f2470c689f6b7d52cab3a418bb63aef26
* Add documentation about `config.action_dispatch.rescue_responses`Yuki Nishijima2014-09-261-0/+23
| | | | [ci skip]
* [ci skip] Remove reference to config.threadsafe! in guides/configuriing.mdByron Bischoff2014-09-251-2/+2
|
* [ci skip] modify the description of production log level defaultyuuji.yaginuma2014-09-211-1/+1
|
* Default to sorting user's test cases for nowGodfrey Chan2014-09-081-0/+2
| | | | | | | | | | | Goals: 1. Default to :random for newly generated applications 2. Default to :sorted for existing applications with a warning 3. Only show the warning once 4. Only show the warning if the app actually uses AS::TestCase Fixes #16769
* Remove '*' which doesn't workTatsuya Sato2014-09-031-1/+1
| | | I found an * does not work in Markdown notation. It should be removed.
* Fix for configuring rails guideRavil Bayramgalin2014-09-011-1/+1
| | | | `ActiveSupport::Logger` has no concept like auto flushing since it has no userspace buffering. It's a remnant of `ActiveSupport::BufferedLogger` epoch which was since removed from rails.
* Update configuring.md [ci skip]Tee Parham2014-08-201-2/+0
| | | Remove ActiveRecord config instructions for active_record.attribute_types_cached_by_default, which was removed in https://github.com/rails/rails/commit/66736c8e50585
* Revert "Improve custom configuration"Rafael Mendonça França2014-08-191-9/+7
| | | | | | | | | This reverts commit de4891344ccc074f6d5693f4fac6ad610584e336. Conflicts: railties/lib/rails/railtie/configuration.rb It added regression. Will be back after the beta
* Improve custom configurationRafael Mendonça França2014-08-191-7/+9
| | | | | | | | | | | | | | | | 1. Hashes can be assigned 2. We don't need a special level anymore The method chain only works in the top level. If users need a second level they need to assign a OrderedOptions to the key: config.resque.server = ActiveSupport::OrderedOptions.new config.resque.server.url = "http://localhost" config.resque.server.port = 3000 [Rafael Mendonça França + Carlos Antonio da Silva]
* Merge pull request #16375 from johnnyshields/guidesRichard Schneeman2014-08-041-0/+2
|\ | | | | Guides: Add definition of `config.assets.manifest` option to configuring.md
| * [ci skip] Guides: Add definition of `config.assets.manifest` option to ↵Johnny Shields2014-08-051-0/+2
| | | | | | | | configuring.md
* | Pull in the custom configuration concept from dhh/custom_configurationDavid Heinemeier Hansson2014-08-031-0/+21
|/
* [ci skip] fix markdownschneems2014-08-021-1/+1
|
* Rename preview_enabled option to show_previewsRafael Mendonça França2014-07-011-2/+2
|
* Add configuration to enable mail previewsLeonard Garvey2014-07-011-0/+12
| | | | | | | | | | | | | | | | | | Adds `config.action_mailer.preview_enabled` This allows mail previewing to be enabled easily in non-development environments such as staging. The default is set to true for development so no changes should be required to existing Rails applications. The mail preview path can still be configured using the existing `config.action_mailer.preview_path` configuration option. Adding this avoids devs from having to do stuff like: https://gist.github.com/lengarvey/fa2c9bd6cdbeba96526a Update actionmailer/CHANGELOG with new configuration. Update configuring guide with new configuratation. Add `config.action_mailer.preview_path` to configuring guide.
* Merge pull request #15933 from rafael/masterRafael Mendonça França2014-06-271-0/+2
|\ | | | | | | | | | | Add always permitted parameters as a configurable option. [Rafael Mendonça França + Gary S. Weaver]
| * Improvements per code review.Rafael Chacón2014-06-271-1/+3
| | | | | | | | | | | | * General style fixes. * Add changes to configuration guide. * Add missing tests.
* | [ci skip] doc corrected : ActiveRecord::Base.connections to ↵Rahul P. Chaudhari2014-06-171-3/+3
| | | | | | | | ActiveRecord::Base.configurations