haml-edge 2.1.22 → 2.1.23
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/test/haml/engine_test.rb +4 -0
- metadata +3 -3
data/EDGE_GEM_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.
|
|
1
|
+
2.1.23
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.1.
|
|
1
|
+
2.1.23
|
data/test/haml/engine_test.rb
CHANGED
|
@@ -763,6 +763,10 @@ END
|
|
|
763
763
|
assert_equal("<a b='a\#{foo}b'></a>\n", render('%a{:b => "a\\#{foo}b"}', :suppress_eval => true))
|
|
764
764
|
end
|
|
765
765
|
|
|
766
|
+
def test_dynamic_hashes_with_suppress_eval
|
|
767
|
+
assert_equal("<a></a>\n", render('%a{:b => "a #{1 + 1} b", :c => "d"}', :suppress_eval => true))
|
|
768
|
+
end
|
|
769
|
+
|
|
766
770
|
# HTML 4.0
|
|
767
771
|
|
|
768
772
|
def test_html_has_no_self_closing_tags
|
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.
|
|
4
|
+
version: 2.1.23
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Weizenbaum
|
|
@@ -26,8 +26,8 @@ extensions: []
|
|
|
26
26
|
extra_rdoc_files:
|
|
27
27
|
- MIT-LICENSE
|
|
28
28
|
- VERSION
|
|
29
|
-
- EDGE_GEM_VERSION
|
|
30
29
|
- REVISION
|
|
30
|
+
- EDGE_GEM_VERSION
|
|
31
31
|
- FAQ.md
|
|
32
32
|
- README.md
|
|
33
33
|
files:
|
|
@@ -230,8 +230,8 @@ files:
|
|
|
230
230
|
- init.rb
|
|
231
231
|
- MIT-LICENSE
|
|
232
232
|
- VERSION
|
|
233
|
-
- EDGE_GEM_VERSION
|
|
234
233
|
- REVISION
|
|
234
|
+
- EDGE_GEM_VERSION
|
|
235
235
|
- FAQ.md
|
|
236
236
|
- README.md
|
|
237
237
|
has_rdoc: true
|