aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/hash
Commit message (Collapse)AuthorAgeFilesLines
* Add three new rubocop rulesRafael Mendonça França2016-08-161-1/+1
| | | | | | | | Style/SpaceBeforeBlockBraces Style/SpaceInsideBlockBraces Style/SpaceInsideHashLiteralBraces Fix all violations in the repository.
* remove redundant curlies from hash argumentsXavier Noria2016-08-061-1/+1
|
* applies new string literal convention in activesupport/testXavier Noria2016-08-062-44/+44
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Restore Hash#transform_keys behavior to always return a Hash instanceEmily2016-04-121-0/+16
|
* Return a sized Enumerator from Hash#{transform_values{!}|transform_keys{!}}Kenichi Kamiya2015-09-292-4/+8
|
* Merge pull request #21767 from ronakjangir47/missing_transform_values_testRafael Mendonça França2015-09-251-0/+12
|\ | | | | Added missing tests for transform_values! which returns Enumerator
| * Added missing tests for transform_values! which returns Enumerator without ↵Ronak Jangir2015-09-261-0/+12
| | | | | | | | blocks
* | Added missing tests for transform_keys! which returns Enumerator without blockRonak Jangir2015-09-261-0/+12
|/
* Fix tests broken in https://github.com/rails/rails/pull/16149Erik Michaels-Ober2014-07-121-1/+1
|
* Return an Enumerator if no block is givenErik Michaels-Ober2014-07-122-0/+44
|
* Add `Hash#map_values` to ActiveSupportSean Griffin2014-06-291-0/+49
Didn't get a chance to convert existing code, I'll skim through the code base to make use of this later this afternoon.