haml-edge 2.3.63 → 2.3.64
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/engine.rb +2 -2
- metadata +1 -1
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.3.
|
|
1
|
+
2.3.64
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.3.
|
|
1
|
+
2.3.64
|
data/lib/haml/engine.rb
CHANGED
|
@@ -179,7 +179,7 @@ module Haml
|
|
|
179
179
|
@haml_buffer = buffer
|
|
180
180
|
end
|
|
181
181
|
|
|
182
|
-
eval(precompiled + "
|
|
182
|
+
str = eval(precompiled + ";" + precompiled_method_return_value,
|
|
183
183
|
scope, @options[:filename], @options[:line])
|
|
184
184
|
|
|
185
185
|
# Get rid of the current buffer
|
|
@@ -187,7 +187,7 @@ module Haml
|
|
|
187
187
|
@haml_buffer = buffer.upper
|
|
188
188
|
end
|
|
189
189
|
|
|
190
|
-
|
|
190
|
+
str
|
|
191
191
|
end
|
|
192
192
|
alias_method :to_html, :render
|
|
193
193
|
|