aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template/text_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* [ci skip] Renamed formats -> format in test after #35406Abhay Nikam2019-02-261-1/+1
|
* Templates have one formatAaron Patterson2019-02-251-1/+1
| | | | | | | Templates only have one format. Before this commit, templates would be constructed with a single element array that contained the format. This commit eliminates the single element array and just implements a `format` method. This saves one array allocation per template.
* Use frozen string literal in actionview/Kir Shatrov2017-07-241-0/+2
|
* Revert "Merge pull request #29540 from kirs/rubocop-frozen-string"Matthew Draper2017-07-021-1/+0
| | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa.
* Enforce frozen string in RubocopKir Shatrov2017-07-011-0/+1
|
* Add missing tests for ActionView::Template::Textkenta-s2017-01-201-0/+16
|
* Remove unused argumentRafael Mendonça França2016-12-021-12/+2
| | | | Now Text class is only used to render text mime type pages
* applies new string literal convention in actionview/testXavier Noria2016-08-061-7/+7
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Use the reference for the mime type to get the formatRafael Mendonça França2014-02-181-0/+17
Before we were calling to_sym in the mime type, even when it is unknown what can cause denial of service since symbols are not removed by the garbage collector. Fixes: CVE-2014-0082