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 |
| | |||||
* | Fixed string being modified in place causing frozen string errors in Ruby 2.3 | sepehr500 | 2017-05-15 | 1 | -0/+6 |
| | |||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 1 | -4/+4 |
| | |||||
* | modernizes hash syntax in actionpack | Xavier Noria | 2016-08-06 | 1 | -17/+17 |
| | |||||
* | applies new string literal convention in actionpack/test | Xavier Noria | 2016-08-06 | 1 | -22/+22 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | always transcode the file to utf-8 | Aaron Patterson | 2014-07-16 | 1 | -0/+6 |
| | | | | | | people may be passing filenames to the constructor that are not utf-8, but they will assome that calling `original_filename` returns utf-8 (because that's what it used to do). | ||||
* | Change the method description | Rafael Mendonça França | 2014-04-17 | 1 | -1/+1 |
| | |||||
* | Provide interface for accessing underlying IO object | Tim Linquist | 2014-04-15 | 1 | -0/+6 |
| | | | | | | In some cases users may need to work with/manipulate more of the Tempfile api than provided by Upload. Allow users to get at the underlying io via the common to_io method of IO/IO-like objects | ||||
* | fixes the suite for uploaded files | Xavier Noria | 2012-09-23 | 1 | -6/+6 |
| | |||||
* | Accept parameters in methods delegated to tempfile | Sergio Gil Pérez de la Manga | 2012-09-22 | 1 | -0/+6 |
| | |||||
* | Delegate ActionDispatch::Http::UploadedFile#close to tempfile | Sergio Gil Pérez de la Manga | 2012-09-20 | 1 | -0/+6 |
| | |||||
* | adds delegetion for eof? to AD::Http::UploadedFile | Jens Fahnenbruck | 2012-03-27 | 1 | -0/+6 |
| | | | | | if you want to read the file you may need to ask if there is something to read from | ||||
* | Refactor AD::UploadedFile, and raise sooner if tempfile is not present | Carlos Antonio da Silva | 2012-03-06 | 1 | -1/+1 |
| | |||||
* | deprecate String#encoding_aware? and remove its usage | Sergey Nartimov | 2011-12-24 | 1 | -5/+3 |
| | |||||
* | Use assert_equal instead of assert in uploaded file test. | Lukáš Konarovský | 2011-06-15 | 1 | -1/+1 |
| | |||||
* | all requests are utf-8. Don't use the external encoding. | Damien Mathieu | 2011-06-14 | 1 | -6/+1 |
| | |||||
* | encode the uploaded file's name in the default external encoding - Closes #869 | Damien Mathieu | 2011-06-14 | 1 | -0/+12 |
| | |||||
* | delegating path and open to internal tempfile | Aaron Patterson | 2010-11-18 | 1 | -0/+12 |
| | |||||
* | only forwarding enough methods to work. People should grab the delegate ↵ | Aaron Patterson | 2010-10-04 | 1 | -14/+8 |
| | | | | tempfile if they really need to do hard work | ||||
* | making sure respond_to? works properly | Aaron Patterson | 2010-10-04 | 1 | -0/+15 |
| | |||||
* | raising an argument error if tempfile is not provided | Aaron Patterson | 2010-10-04 | 1 | -3/+9 |
| | |||||
* | delegate to the @tempfile instance variable | Aaron Patterson | 2010-10-04 | 1 | -0/+18 |
| | |||||
* | adding tests for uploaded file | Aaron Patterson | 2010-10-04 | 1 | -0/+25 |