ebnf 0.2.0 → 0.2.1
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/VERSION +1 -1
- data/etc/ebnf.ebnf +19 -11
- data/etc/{ebnf.ll1 → ebnf.ll1.sxp} +460 -288
- data/etc/ebnf.rb +451 -507
- data/etc/ebnf.sxp +112 -0
- data/etc/{turtle.ll1 → turtle.ll1.sxp} +836 -66
- data/etc/turtle.rb +1030 -437
- data/etc/turtle.sxp +417 -0
- data/lib/ebnf/base.rb +5 -11
- data/lib/ebnf/bnf.rb +2 -2
- data/lib/ebnf/ll1.rb +92 -125
- data/lib/ebnf/ll1/parser.rb +12 -10
- data/lib/ebnf/parser.rb +6 -3
- data/lib/ebnf/rule.rb +61 -8
- metadata +7 -5
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ebnf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-03-
|
12
|
+
date: 2013-03-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sxp
|
@@ -116,11 +116,13 @@ files:
|
|
116
116
|
- lib/ebnf.rb
|
117
117
|
- etc/doap.ttl
|
118
118
|
- etc/ebnf.ebnf
|
119
|
-
- etc/ebnf.ll1
|
119
|
+
- etc/ebnf.ll1.sxp
|
120
120
|
- etc/ebnf.rb
|
121
|
+
- etc/ebnf.sxp
|
121
122
|
- etc/turtle.ebnf
|
122
|
-
- etc/turtle.ll1
|
123
|
+
- etc/turtle.ll1.sxp
|
123
124
|
- etc/turtle.rb
|
125
|
+
- etc/turtle.sxp
|
124
126
|
- bin/ebnf
|
125
127
|
homepage: http://github.com/gkellogg/ebnf
|
126
128
|
licenses:
|
@@ -143,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
145
|
version: '0'
|
144
146
|
segments:
|
145
147
|
- 0
|
146
|
-
hash:
|
148
|
+
hash: -4479271649691547126
|
147
149
|
requirements: []
|
148
150
|
rubyforge_project:
|
149
151
|
rubygems_version: 1.8.25
|