| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #36412 from robotdana/compact_blank | Rafael Mendonça França | 2019-07-25 | 1 | -0/+18 |
|\ |
|
| * | Add compact_blank shortcut for reject(&:blank?) | Dana Sherson | 2019-06-05 | 1 | -0/+18 |
* | | Add hash method to ActionController::Parameters | Eugene Baranov | 2019-07-14 | 1 | -0/+8 |
* | | Enable `Layout/EmptyLinesAroundAccessModifier` cop | Ryuta Kamizono | 2019-06-13 | 1 | -1/+0 |
|/ |
|
* | Implemented deep_transform_keys/! for ActionController::Parameters | Gustavo Gutierrez | 2019-05-22 | 2 | -0/+18 |
* | Merge pull request #36302 from eugeneius/parameters_transform_keys_enumerator | Ryuta Kamizono | 2019-05-20 | 1 | -2/+14 |
|\ |
|
| * | Return parameters enumerator from transform_keys/! | Eugene Kenny | 2019-05-18 | 1 | -2/+14 |
|/ |
|
* | fixed usage of Parameters when a non-numeric key exists | L.Fexon | 2019-05-13 | 1 | -2/+28 |
* | Enable `Style/RedundantBegin` cop to avoid newly adding redundant begin block | Ryuta Kamizono | 2018-12-21 | 1 | -32/+26 |
* | Fix `ActionController::Parameters#each_value` and add changelog entry to this... | Bogdan | 2018-10-15 | 1 | -2/+6 |
* | Added ActionController::Parameters.each_value method | Lukas Zapletal | 2018-09-27 | 1 | -0/+18 |
* | Permit list usage cleanup and clearer documentation | Kevin Deisz | 2018-08-27 | 1 | -1/+1 |
* | Convert over the rest of the whitelist references | Kevin Deisz | 2018-08-24 | 1 | -1/+1 |
* | Convert hashes into parameters (#33076) | Kevin Sjöberg | 2018-06-19 | 1 | -0/+21 |
* | Fix `CustomCops/AssertNot` to allow it to have failure message | Ryuta Kamizono | 2018-05-13 | 2 | -2/+2 |
* | Merge pull request #32593 from sdhull/fix-strong-params-permit-bang | Rafael Mendonça França | 2018-04-19 | 1 | -1/+4 |
|\ |
|
| * | Fixes StrongParameters permit! to work with nested arrays | Steve Hull | 2018-04-16 | 1 | -1/+4 |
* | | Replace `assert !` with `assert_not` | Daniel Colson | 2018-04-19 | 1 | -1/+1 |
|/ |
|
* | Merge pull request #32441 from composerinteralia/refute-not | Rafael França | 2018-04-04 | 1 | -5/+5 |
|\ |
|
| * | Autocorrect `refute` RuboCop violations | Daniel Colson | 2018-04-03 | 1 | -5/+5 |
* | | Make mutating params#dig mutate underlying params | Vince DeVendra | 2018-03-24 | 1 | -0/+8 |
|/ |
|
* | Rails 6 requires Ruby 2.4.1+ | Jeremy Daer | 2018-02-17 | 2 | -2/+0 |
* | Rails 6 requires Ruby 2.3+ | Jeremy Daer | 2018-02-17 | 1 | -16/+9 |
* | Remove usage of strip_heredoc in the framework in favor of <<~ | Rafael Mendonça França | 2018-02-16 | 1 | -3/+2 |
* | Use assert_empty and assert_not_empty | Daniel Colson | 2018-01-25 | 2 | -3/+3 |
* | Use assert_predicate and assert_not_predicate | Daniel Colson | 2018-01-25 | 8 | -69/+69 |
* | Change refute to assert_not | Daniel Colson | 2018-01-25 | 2 | -9/+9 |
* | Use respond_to test helpers | Daniel Colson | 2018-01-25 | 1 | -1/+1 |
* | Suppress `warning: BigDecimal.new is deprecated` | Yasuo Honda | 2017-12-15 | 1 | -1/+1 |
* | Yield array from AC::Parameters#each for block with one arg | Dominic Cleal | 2017-12-06 | 1 | -0/+16 |
* | Use frozen string literal in actionpack/ | Kir Shatrov | 2017-07-29 | 10 | -0/+20 |
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 10 | -10/+0 |
* | Merge pull request #29540 from kirs/rubocop-frozen-string | Matthew Draper | 2017-07-02 | 10 | -0/+10 |
|\ |
|
| * | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 10 | -0/+10 |
* | | Fallback Parameters#to_s to Hash#to_s | Kir Shatrov | 2017-06-30 | 1 | -0/+5 |
|/ |
|
* | prepare for Minitest 6 | utilum | 2017-06-20 | 1 | -1/+1 |
* | Pass block in ActionController::Parameters#delete | Eugene Kenny | 2017-05-10 | 1 | -0/+21 |
* | Add test case to make sure we can implicit convert a Parameters to a Hash | Rafael Mendonça França | 2017-04-20 | 1 | -0/+7 |
* | Use the right assetions to better error messages | Rafael Mendonça França | 2017-04-18 | 1 | -7/+7 |
* | Add test to make sure that to_unsafe_h don't mutate the target | Rafael Mendonça França | 2017-04-18 | 1 | -0/+10 |
* | Add ActionController::Parameters#to_hash to implict conversion | Rafael Mendonça França | 2017-04-18 | 1 | -0/+26 |
* | Raise exception when calling to_h in a unfiltered Parameters | Rafael Mendonça França | 2017-04-18 | 1 | -15/+4 |
* | Test the correct object | Rafael Mendonça França | 2017-04-18 | 1 | -1/+1 |
* | Add aliases for reverse_merge to with_defaults | Matt Casper | 2017-03-29 | 1 | -0/+16 |
* | Fix test that was asserting the wrong thing | Rafael Mendonça França | 2017-03-21 | 1 | -1/+1 |
* | Use correct value in `reverse_merge` test | yuuji.yaginuma | 2017-03-11 | 1 | -8/+4 |
* | Added `reverse_merge`/`reverse_merge!` to AC::Parameters: | Edouard CHIN | 2017-03-09 | 1 | -0/+29 |
* | Tests for delegated public methods on AC::Parameters | T.J. Schuck | 2017-03-07 | 1 | -0/+63 |
* | :warning: "Use assert_nil if expecting nil. This will fail in MT6." | Akira Matsuda | 2017-01-18 | 1 | -2/+10 |
* | Fix all rubocop violations | Rafael Mendonça França | 2017-01-17 | 1 | -1/+1 |