haml-edge 2.1.9 → 2.1.10
Sign up to get free protection for your applications and to get access to all the features.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/sass/files.rb +4 -2
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.10
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.10
|
data/lib/sass/files.rb
CHANGED
@@ -79,8 +79,10 @@ module Sass
|
|
79
79
|
return if File.exists?(compiled_filename) && !File.writable?(compiled_filename)
|
80
80
|
FileUtils.mkdir_p(File.dirname(compiled_filename))
|
81
81
|
File.open(compiled_filename, "w") do |f|
|
82
|
-
f.
|
83
|
-
f.
|
82
|
+
f.write(Sass::VERSION)
|
83
|
+
f.write("\n")
|
84
|
+
f.write(sha)
|
85
|
+
f.write("\n")
|
84
86
|
f.write(Marshal.dump(root))
|
85
87
|
end
|
86
88
|
end
|