herbgobbler 0.1.5 → 0.1.6
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/grammer/erb_grammer.treetop +5 -1
- metadata +3 -3
data/grammer/erb_grammer.treetop
CHANGED
|
@@ -99,6 +99,10 @@ grammar ERBGrammer
|
|
|
99
99
|
def node_name
|
|
100
100
|
"processing_instruction"
|
|
101
101
|
end
|
|
102
|
+
|
|
103
|
+
def can_be_combined?
|
|
104
|
+
false
|
|
105
|
+
end
|
|
102
106
|
}
|
|
103
107
|
end
|
|
104
108
|
|
|
@@ -279,7 +283,7 @@ grammar ERBGrammer
|
|
|
279
283
|
end
|
|
280
284
|
|
|
281
285
|
rule whitespace
|
|
282
|
-
((![a-zA-Z] !('<' [a-zA-Z]+) !('</' [a-zA-Z]+) !'<%' !'"' ) . )+ <NonTextNode>
|
|
286
|
+
((![a-zA-Z] !('<' [a-zA-Z]+) !('</' [a-zA-Z]+) !'<%' !'"' !'<!' ) . )+ <NonTextNode>
|
|
283
287
|
{
|
|
284
288
|
def can_be_combined?
|
|
285
289
|
true
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: herbgobbler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.1.6
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Douglas Sellers
|