bel_parser 1.0.0.alpha.54-java → 1.0.0.alpha.55-java

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea635cc6a0106b31a7410915b57d6e76b007ea8b
4
- data.tar.gz: 1cc0e36412e5c61be5ad6db101cbd856a0517763
3
+ metadata.gz: 90614dd2dc0ce9fbb17e01e51ec3bb203b064c26
4
+ data.tar.gz: 8452877cf9fb328feed6d6f91b032f0286f3757b
5
5
  SHA512:
6
- metadata.gz: 5b30b7cd2a2c6f48112f18940f0fbc0078d00524c01caf3628335b487f0cb2399e17be6a5dfafa0a7b9b3bb5eae49e48c32a9bd5ca8d4c4ae396704a6698cc1a
7
- data.tar.gz: 2ab9b0d174824ce802295d9ddb6afd3ac7f38ba5c9d947003027d124e38cfa02718ac5cbde2ee6f92adc2b388f28b3f86c81eec405faf424e2863a1e421c933f
6
+ metadata.gz: d5dcc028b6ad8df12788b3f2522235f0e4e948661b6de15e254a30af492f2fc4603d3f31affae8bb6cf40ddc9def28c2a337b332d71f03fa1a0fd8632f86ee6f
7
+ data.tar.gz: bd19840310b1034352a9b6590a41af52ba0779073f6d9e202f1519e6fdabdf4295be87e50f62d6cca3a4f6ab24f2be3e1ca0046865ad0ec90901c017041e86da
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0.alpha.54
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.54
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
- - bel_debug_ast
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