aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/sprockets
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-09-12 10:18:19 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2011-09-12 10:18:19 -0700
commitd762e22c048ac67979fec7ecfb71bd999a1004d9 (patch)
tree7fe3edeebdb9e59c7e897812cdaeb1b377735225 /actionpack/lib/sprockets
parent8397a564cb03dec8bd3d083f3376ecdd439dbb70 (diff)
parent3ce830272ee0516eb864a5765abba25d4b07cca4 (diff)
downloadrails-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.rake2
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