haml-edge 3.1.29 → 3.1.32
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.
- data/EDGE_GEM_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/haml/exec.rb +2 -0
- data/lib/haml/template.rb +1 -1
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.32
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.32
|
data/lib/haml/exec.rb
CHANGED
|
@@ -710,6 +710,8 @@ END
|
|
|
710
710
|
end
|
|
711
711
|
@options[:output] ||= @options[:input]
|
|
712
712
|
|
|
713
|
+
from = @options[:from]
|
|
714
|
+
from = :sass if from == :sass2
|
|
713
715
|
if @options[:to] == @options[:from] && !@options[:in_place]
|
|
714
716
|
fmt = @options[:from]
|
|
715
717
|
raise "Error: converting from #{fmt} to #{fmt} without --in-place"
|
data/lib/haml/template.rb
CHANGED