haml-edge 2.1.9 → 2.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/EDGE_GEM_VERSION +1 -1
  2. data/VERSION +1 -1
  3. data/lib/sass/files.rb +4 -2
  4. metadata +1 -1
data/EDGE_GEM_VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.9
1
+ 2.1.10
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.9
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.puts(Sass::VERSION)
83
- f.puts(sha)
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haml-edge
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.9
4
+ version: 2.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Weizenbaum