Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix english for the rescue_from warning [ci skip] | Yuki Nishijima | 2017-07-11 | 1 | -1/+1 |
| | |||||
* | Protect from forgery by default | Lisa Ugray | 2017-07-10 | 1 | -0/+2 |
| | | | | | | | | Rather than protecting from forgery in the generated ApplicationController, add it to ActionController::Base by config. This configuration defaults to false to support older versions which have removed it from their ApplicationController, but is set to true for Rails 5.2. | ||||
* | [ci skip] Updated language on validations. | Daniel Castro | 2017-07-09 | 1 | -2/+2 |
| | |||||
* | Clarify i18n guide for how pluralization rules work by default | Sage Ross | 2017-07-07 | 1 | -2/+20 |
| | | | | The guide misleadingly indicates that the I18n gem will apply the CLDR pluralization rules for each language. This is not the case; only the English algorithm, with support for :zero, :one, and :other, is available by default. Locale-specific pluralization rules require additional configuration and must be supplied by the application (or by another gem). | ||||
* | Merge pull request #29668 from y-yagi/add_missing_status_code_and_symbol | Arun Agrawal | 2017-07-04 | 1 | -0/+2 |
|\ | | | | | Add missing http status codes [ci skip] | ||||
| * | Add missing http status codes [ci skip] | yuuji.yaginuma | 2017-07-04 | 1 | -0/+2 |
| | | | | | | | | | | Ref: https://github.com/rack/rack/commit/5401f776f660b1f8d0e0650ba78478d7488eff75, https://github.com/rack/rack/commit/73e08279d4433ca66cf22157a40dba562629031a | ||||
* | | Merge pull request #29534 from y-yagi/clear_screenshots_in_tmp_clear_task | Eileen M. Uchitelle | 2017-07-01 | 1 | -7/+8 |
|\ \ | |/ |/| | Clear screenshots files in `tmp:clear` task | ||||
| * | Clear screenshots files in `tmp:clear` task | yuuji.yaginuma | 2017-06-27 | 1 | -7/+8 |
| | | | | | | | | | | | | | | | | | | If system test fails, it creates screenshot under `tmp/screenshots`. https://github.com/rails/rails/blob/34fe2a4fc778d18b7fe6bdf3629c1481bee789b9/actionpack/lib/action_dispatch/system_testing/test_helpers/screenshot_helper.rb#L45 But currently, screenshot files is not cleared by `tmp:clear` task. This patch make clears screenshot files with `tmp:clear` task as well as other tmp files. | ||||
* | | [ci skip] run migration before looking at schema | Sai Prashanth | 2017-06-30 | 1 | -2/+2 |
| | | |||||
* | | Specify correct extension for text layouts | Jorge Dias | 2017-06-29 | 1 | -1/+1 |
| | | | | | | When using render plain the extension for the layout needs to be .text.erb instead of .txt.erb | ||||
* | | Fix grammar for documentation of rails/command.rb [ci skip] | James Bush | 2017-06-28 | 1 | -1/+1 |
| | | |||||
* | | Document ActiveRecord's PostgreSQL-specific support for JSONB datatype in ↵ | Marc Rendl Ignacio | 2017-06-27 | 1 | -1/+6 |
|/ | | | | | | RailsGuides [ci skip] | ||||
* | Update security.md | Yauheni Dakuka | 2017-06-26 | 1 | -1/+1 |
| | |||||
* | Guides: Clarify partial local variable naming. | Yong Bakos | 2017-06-23 | 1 | -1/+1 |
| | | | | | Clarify the partial local variable name as being the same as the name of the partial, minus the _leading_ underscore. | ||||
* | Fix hash conditions documentation [ci skip] | Abraham Chan | 2017-06-22 | 1 | -2/+0 |
| | |||||
* | [ci skip] Fixed the attribute name for event.detail | Prathamesh Sonpatki | 2017-06-20 | 1 | -3/+3 |
| | |||||
* | Merge pull request #29493 from y-yagi/deprecate_capify | Rafael França | 2017-06-19 | 1 | -8/+0 |
|\ | | | | | Deprecate an `capify!` method in generators and templates | ||||
| * | Deprecate an `capify!` method in generators and templates | yuuji.yaginuma | 2017-06-18 | 1 | -8/+0 |
| | | | | | | | | | | | | | | | | | | The `capify` command has been removed by Capistrano 3 and became to `cap install`. Therefore, the `capify!` method has no meaning in Capistrano 3. I think that should deprecate. Ref: https://github.com/capistrano/capistrano/commit/492793916acf32ffe1604daec6fd4892c8935018 | ||||
* | | [ci skip] Update fedora SQLite3 package name | utilum | 2017-06-17 | 1 | -1/+1 |
|/ | |||||
* | Remove references to deprecared raise_runtime_errors from documentation, ↵ | Vipul A M | 2017-06-17 | 2 | -16/+0 |
| | | | | which is always enabled now. Ref: https://github.com/rails/sprockets-rails/commit/655b93bffc6f51b96a7cc097f9010942693bfaae and https://github.com/rails/rails/pull/24070 . Fixes #29483 [ci skip] (#29484) | ||||
* | Updated `working with javascript` readme to support the behavior of rails-ujs. | Dmytro Vasin | 2017-06-15 | 1 | -0/+29 |
| | |||||
* | Add brakeman to guides/additional resources. Fixes #29383 [ci skip] (#29427) | Vipul A M | 2017-06-12 | 1 | -3/+4 |
| | |||||
* | Missing dots [ci skip] (#29414) | Vipul A M | 2017-06-11 | 1 | -4/+4 |
| | |||||
* | Merge pull request #29268 from gsamokovarov/delegate-missing-to-guides | Vipul A M | 2017-06-11 | 1 | -0/+21 |
|\ | | | | | Document Module#delegate_missing_to in the guides [ci skip] | ||||
| * | Document Module#delegate_missing_to in the guides | Genadi Samokovarov | 2017-06-11 | 1 | -0/+21 |
| | | | | | | | | | | Added a small section for it in the `Active Support Core Extensions` guide. [ci skip] | ||||
* | | [ci skip] Add backquote to :counter_cache option | Yohei Yasukawa | 2017-06-10 | 1 | -1/+1 |
| | | |||||
* | | [ci skip] Fix link in active_record_postgresql.md | Yauheni Dakuka | 2017-06-09 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #29397 from ydakuka/patch-1 | Vipul A M | 2017-06-09 | 1 | -1/+1 |
|\ \ | | | | | | | Fix link in active_record_postgresql.md [ci skip] | ||||
| * | | Fix link in active_record_postgresql.md | Yauheni Dakuka | 2017-06-09 | 1 | -1/+1 |
| | | | |||||
* | | | remove the extra comma in association_basics.md | Yauheni Dakuka | 2017-06-09 | 1 | -1/+1 |
|/ / | |||||
* | | Update upgrading guide w.r.t. Parameters to use other example method than ↵ | edwardmp | 2017-06-06 | 1 | -1/+1 |
| | | | | | | | | slice as this has actually been implemented by Parameters | ||||
* | | Remove invalid entry from the guides index page | Robin Dupret | 2017-06-06 | 1 | -5/+0 |
| | | | | | | | | | | | | | | Commit 1a5d9399 removed the "Profiling Rails Applications" guide but the YAML entry for this guide wasn't. [ci skip] | ||||
* | | Tiny documentation fixes [ci skip] | Robin Dupret | 2017-06-06 | 1 | -3/+3 |
| | | |||||
* | | Remove deprecated passing of string to :if/:unless (#29357) | Joe Francis | 2017-06-06 | 1 | -1/+1 |
| | | | | | | | | | | Other examples were removed in 53ff5fc62f9d11b6f60d371df959137f4bf40728 [ci skip] | ||||
* | | Use mattr_accessor default: option throughout the project | Genadi Samokovarov | 2017-06-03 | 2 | -9/+5 |
| | | |||||
* | | Change default application.js included in new Rails app [ci skip] | Koichi ITO | 2017-06-03 | 1 | -3/+3 |
| | | |||||
* | | Merge pull request #29101 from ccarruitero/system_guide | Eileen M. Uchitelle | 2017-06-02 | 1 | -10/+8 |
|\ \ | | | | | | | some typos and rephrasing in system test guide [ci skip] | ||||
| * | | some typos and rephrasing in system test guide [ci skip] | Cesar Carruitero | 2017-05-16 | 1 | -10/+8 |
| | | | |||||
* | | | Merge pull request #29315 from mariochavez/driven_by_support_headless_drivers | Eileen M. Uchitelle | 2017-06-02 | 1 | -2/+3 |
|\ \ \ | | | | | | | | | SystemTesting::Driver can register capybara-webkit and poltergeist | ||||
| * | | | SystemTesting::Driver can register capybara-webkit and poltergeist | Mario Alberto Chávez | 2017-06-02 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | drivers. When using `driver_by` with capybara-webkit or poltergeist, SystemTesting::Driver will register the driver while passing `screen_size` and `options` parameteres. `options` could contain any option supported by the underlying driver. | ||||
* | | | | Replace an outdated mention of `jquery_ujs` with `rails-ujs` [ci skip] | Dzianis Dashkevich | 2017-06-01 | 1 | -2/+2 |
|/ / / | |||||
* | | | Fix articles layout in guides by eliminating W3C validator warnings [ci skip] | Dzianis Dashkevich | 2017-06-01 | 1 | -0/+1 |
| | | | |||||
* | | | Replace therubyracer with mini_racer | Sam | 2017-05-30 | 2 | -2/+2 |
| | | | |||||
* | | | Grammar fixes | Jon Moss | 2017-05-29 | 1 | -2/+2 |
| | | | | | | | | | | | | [ci skip] | ||||
* | | | Remove extra block for `assert_changes` [ci skip] | Ryuta Kamizono | 2017-05-30 | 1 | -1/+1 |
| | | | |||||
* | | | List assert_{,no_}changes in the testing guide | Genadi Samokovarov | 2017-05-29 | 1 | -0/+2 |
| |/ |/| | | | | | | | This lists the `assert_changes` and `assert_no_changes` methods in the guides. [ci skip] | ||||
* | | Merge pull request #29257 from ↵ | Kasper Timm Hansen | 2017-05-28 | 1 | -3/+1 |
|\ \ | | | | | | | | | | | | | clupprich/remove-action-dispatch-callbacks-to-prepare-mention Remove mentions of deprecated callbacks on ActionDispatch::Callbacks | ||||
| * | | Remove mentions of deprecated callbacks on ActionDispatch::Callbacks | Christoph Lupprich | 2017-05-28 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | ActionDispatch::Callbacks.to_prepare was removed in #27587 [ci skip] | ||||
* | | | Merge pull request #28132 from mikeycgto/aead-encrypted-cookies | Kasper Timm Hansen | 2017-05-28 | 2 | -10/+21 |
|\ \ \ | |/ / |/| | | AEAD encrypted cookies and sessions | ||||
| * | | AEAD encrypted cookies and sessions | Michael Coyne | 2017-05-22 | 2 | -10/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit changes encrypted cookies from AES in CBC HMAC mode to Authenticated Encryption using AES-GCM. It also provides a cookie jar to transparently upgrade encrypted cookies to this new scheme. Some other notable changes include: - There is a new application configuration value: +use_authenticated_cookie_encryption+. When enabled, AEAD encrypted cookies will be used. - +cookies.signed+ does not raise a +TypeError+ now if the name of an encrypted cookie is used. Encrypted cookies using the same key as signed cookies would be verified and serialization would then fail due the message still be encrypted. |