aboutsummaryrefslogtreecommitdiffstats
path: root/guides/bug_report_templates/action_controller_master.rb
Commit message (Collapse)AuthorAgeFilesLines
* `secret_token` is now saved in `Rails.application.secrets.secret_token`Benjamin Fleischer2014-11-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | - `secrets.secret_token` is now used in all places `config.secret_token` was - `secrets.secret_token`, when not present in `config/secrets.yml`, now falls back to the value of `config.secret_token` - when `secrets.secret_token` is set, it over-writes `config.secret_token` so they are the same (for backwards-compatibility) - Update docs to reference app.secrets in all places - Remove references to `config.secret_token`, `config.secret_key_base` - Warn that missing secret_key_base is deprecated - Add tests for secret_token, key_generator, and message_verifier - the legacy key generator is used with the message verifier when secrets.secret_key_base is blank and secret_token is set - app.key_generator raises when neither secrets.secret_key_base nor secret_token are set - app.env_config raises when neither secrets.secret_key_base nor secret_token are set - Add changelog Run focused tests via ruby -w -Itest test/application/configuration_test.rb -n '/secret_|key_/'
* [ci skip]Add i18n master to the Gemfileyuuji.yaginuma2014-07-241-0/+1
|
* [Bug report templates] Added rack master to the GemfileAbdelkader Boudih2014-07-121-0/+1
|
* Add arel to the controller templateAbdelkader Boudih2014-07-031-0/+1
|
* Include URL helpers in TestController in bug report templatesRoman Kushnir2013-11-111-0/+2
| | | | | | [ci skip] Fixes #12848.
* remove warnings on ruby trunklaurocaetano2013-11-011-2/+2
|
* Added bug report template for ActionControllerPaul Nikitochkin2013-08-211-0/+51
[ci skip]