haml-edge 2.3.63 → 2.3.64
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/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
|
|