diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-12 10:18:19 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-09-12 10:18:19 -0700 |
commit | d762e22c048ac67979fec7ecfb71bd999a1004d9 (patch) | |
tree | 7fe3edeebdb9e59c7e897812cdaeb1b377735225 /actionpack/lib/sprockets | |
parent | 8397a564cb03dec8bd3d083f3376ecdd439dbb70 (diff) | |
parent | 3ce830272ee0516eb864a5765abba25d4b07cca4 (diff) | |
download | rails-d762e22c048ac67979fec7ecfb71bd999a1004d9.tar.gz rails-d762e22c048ac67979fec7ecfb71bd999a1004d9.tar.bz2 rails-d762e22c048ac67979fec7ecfb71bd999a1004d9.zip |
Merge pull request #2985 from kennyj/master
fix https://github.com/rails/rails/issues/2582 (with testcase)
Diffstat (limited to 'actionpack/lib/sprockets')
-rw-r--r-- | actionpack/lib/sprockets/assets.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/sprockets/assets.rake b/actionpack/lib/sprockets/assets.rake index 893ecf58fe..db0ddad3c2 100644 --- a/actionpack/lib/sprockets/assets.rake +++ b/actionpack/lib/sprockets/assets.rake @@ -44,7 +44,7 @@ namespace :assets do end end - File.open("#{manifest_path}/manifest.yml", 'w') do |f| + File.open("#{manifest_path}/manifest.yml", 'wb') do |f| YAML.dump(manifest, f) end end |