diff options
author | Brendon Muir <brendon@spike.net.nz> | 2013-08-16 14:10:31 +1200 |
---|---|---|
committer | Brendon Muir <brendon@spike.net.nz> | 2013-08-16 23:33:59 +1200 |
commit | 92a03d888e0053962061fdfb1139c91e086bff0e (patch) | |
tree | e8172211570c4ab404d2477fc06a3315e011973c | |
parent | 5c6e11d6b89444eefcb12e24d5419dadefdea1ba (diff) | |
download | rails-92a03d888e0053962061fdfb1139c91e086bff0e.tar.gz rails-92a03d888e0053962061fdfb1139c91e086bff0e.tar.bz2 rails-92a03d888e0053962061fdfb1139c91e086bff0e.zip |
Use binary mode to write uploaded files [ci skip] See: http://stackoverflow.com/a/4988984/129798 for an explanation for why this is required for Ruby 1.9.
-rw-r--r-- | guides/source/form_helpers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/form_helpers.md b/guides/source/form_helpers.md index 11e8db9e88..3a18fb81d8 100644 --- a/guides/source/form_helpers.md +++ b/guides/source/form_helpers.md @@ -605,7 +605,7 @@ The object in the `params` hash is an instance of a subclass of IO. Depending on ```ruby def upload uploaded_io = params[:person][:picture] - File.open(Rails.root.join('public', 'uploads', uploaded_io.original_filename), 'w') do |file| + File.open(Rails.root.join('public', 'uploads', uploaded_io.original_filename), 'wb') do |file| file.write(uploaded_io.read) end end |