1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Merge branch 'master' into yard

This commit is contained in:
Nathan Weizenbaum 2009-05-19 09:28:15 -07:00
commit 18019ff0c2

View file

@ -106,8 +106,10 @@ module Sass
return if File.exists?(compiled_filename) && !File.writable?(compiled_filename)
FileUtils.mkdir_p(File.dirname(compiled_filename))
File.open(compiled_filename, "w") do |f|
f.puts(Sass::VERSION)
f.puts(sha)
f.write(Sass::VERSION)
f.write("\n")
f.write(sha)
f.write("\n")
f.write(Marshal.dump(root))
end
end