Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use frozen string literal in actionpack/ | Kir Shatrov | 2017-07-29 | 1 | -0/+2 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | [docs] fix ActionController documentation | Hrvoje Šimić | 2017-03-12 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | updating docs | Aaron Patterson | 2016-12-21 | 1 | -0/+4 |
| | |||||
* | Document and update API for `skip_parameter_encoding` | Aaron Patterson | 2016-12-21 | 1 | -10/+25 |
| | | | | | | | | This commit changes `parameter_encoding` to `skip_parameter_encoding`. `skip_parameter_encoding` will set encoding on all parameters to ASCII-8BIT for a given action on a particular controller. This allows the controller to handle data when the encoding of that data is unknown, for example file systems or truly binary parameters. | ||||
* | AC::Metal is already defining default encoding as UTF 8, let's reuse it. | Prathamesh Sonpatki | 2016-08-14 | 1 | -1/+1 |
| | |||||
* | Mark method as nodoc | Rafael Mendonça França | 2016-08-12 | 1 | -3/+3 |
| | | | | They are not part of the public API | ||||
* | [ci skip] Add documentation to Parameter Encoding | Alex Kitchens | 2016-08-11 | 1 | -0/+1 |
| | |||||
* | Allow specifying encoding of parameters by action | Kerri Miller | 2016-08-09 | 1 | -0/+29 |
At GitHub we need to handle parameter encodings that are not UTF-8. This patch allows us to specify encodings per parameter per action. |