rgviz 0.28 → 0.29

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.
Files changed (3) hide show
  1. data/lib/rgviz/parser.rb +1 -1
  2. data/lib/rgviz/token.rb +1 -1
  3. metadata +3 -3
@@ -18,7 +18,7 @@ module Rgviz
18
18
  parse_format
19
19
  parse_options
20
20
 
21
- check Token::EOF
21
+ raise ParseException.new "Expecting end of query" if @token.value != Token::EOF
22
22
  @query
23
23
  end
24
24
 
@@ -73,7 +73,7 @@ module Rgviz
73
73
  GTE = :'>='
74
74
  NEQ = :'!='
75
75
 
76
- EOF = :'<EOF'
76
+ EOF = :'<EOF>'
77
77
 
78
78
  attr_accessor :start
79
79
  attr_accessor :value
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rgviz
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 28
9
- version: "0.28"
8
+ - 29
9
+ version: "0.29"
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ary Borenszweig