bel_parser 1.0.0.alpha.54-java → 1.0.0.alpha.55-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/{bel_debug_ast → bel2_debug_ast} +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90614dd2dc0ce9fbb17e01e51ec3bb203b064c26
|
4
|
+
data.tar.gz: 8452877cf9fb328feed6d6f91b032f0286f3757b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5dcc028b6ad8df12788b3f2522235f0e4e948661b6de15e254a30af492f2fc4603d3f31affae8bb6cf40ddc9def28c2a337b332d71f03fa1a0fd8632f86ee6f
|
7
|
+
data.tar.gz: bd19840310b1034352a9b6590a41af52ba0779073f6d9e202f1519e6fdabdf4295be87e50f62d6cca3a4f6ab24f2be3e1ca0046865ad0ec90901c017041e86da
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0.alpha.
|
1
|
+
1.0.0.alpha.55
|
@@ -8,12 +8,12 @@ require 'bel_parser'
|
|
8
8
|
options = {}
|
9
9
|
OptionParser.new do |opts|
|
10
10
|
opts.banner = <<-USAGE.gsub(/^ {4}/, '')
|
11
|
-
Debug the AST.
|
11
|
+
Debug the AST of BEL Script.
|
12
12
|
|
13
|
-
Read from a BEL file.
|
13
|
+
Read from a BEL Script file.
|
14
14
|
usage: #$PROGRAM_NAME --file [FILE]
|
15
15
|
|
16
|
-
Read from standard input.
|
16
|
+
Read BEL Script from standard input.
|
17
17
|
usage: #$PROGRAM_NAME
|
18
18
|
USAGE
|
19
19
|
|
@@ -69,8 +69,8 @@ BELParser::ASTGenerator.new(io).each do |result|
|
|
69
69
|
line_number, line, asts = result
|
70
70
|
puts line
|
71
71
|
asts.each do |ast|
|
72
|
-
next if options[:complete] && ast.incomplete?
|
73
72
|
if ast
|
73
|
+
next if options[:complete] && ast.incomplete?
|
74
74
|
puts ast.to_sexp(1)
|
75
75
|
else
|
76
76
|
puts ' (null)'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bel_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.alpha.
|
4
|
+
version: 1.0.0.alpha.55
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Anthony Bargnesi
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
description: Implements language versions 1.0 and 2.0.
|
43
43
|
email: abargnesi@selventa.com
|
44
44
|
executables:
|
45
|
-
-
|
45
|
+
- bel2_debug_ast
|
46
46
|
- bel2_validator
|
47
47
|
- bel_script_reader
|
48
48
|
extensions: []
|
@@ -53,8 +53,8 @@ files:
|
|
53
53
|
- LICENSE
|
54
54
|
- README.md
|
55
55
|
- VERSION
|
56
|
+
- bin/bel2_debug_ast
|
56
57
|
- bin/bel2_validator
|
57
|
-
- bin/bel_debug_ast
|
58
58
|
- bin/bel_script_reader
|
59
59
|
- lib/bel/translator/plugins/bel_script.rb
|
60
60
|
- lib/bel/translator/plugins/bel_script/bel_citation_serialization.rb
|