lrama 0.5.0 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lrama
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuichiro Kaneko
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-15 00:00:00.000000000 Z
11
+ date: 2023-06-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: LALR (1) parser generator written by Ruby
14
14
  email:
@@ -18,6 +18,7 @@ executables:
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - ".github/dependabot.yml"
21
22
  - ".github/workflows/test.yaml"
22
23
  - ".gitignore"
23
24
  - ".rspec"
@@ -26,6 +27,7 @@ files:
26
27
  - MIT
27
28
  - README.md
28
29
  - Rakefile
30
+ - Steepfile
29
31
  - doc/TODO.md
30
32
  - exe/lrama
31
33
  - lib/lrama.rb
@@ -37,16 +39,27 @@ files:
37
39
  - lib/lrama/lexer.rb
38
40
  - lib/lrama/output.rb
39
41
  - lib/lrama/parser.rb
42
+ - lib/lrama/parser/token_scanner.rb
40
43
  - lib/lrama/report.rb
44
+ - lib/lrama/state.rb
45
+ - lib/lrama/state/reduce.rb
46
+ - lib/lrama/state/shift.rb
41
47
  - lib/lrama/states.rb
42
48
  - lib/lrama/states_reporter.rb
43
49
  - lib/lrama/version.rb
44
50
  - lib/lrama/warning.rb
45
51
  - lrama.gemspec
52
+ - rbs_collection.lock.yaml
53
+ - rbs_collection.yaml
54
+ - sample/calc.output
55
+ - sample/calc.y
46
56
  - sample/parse.y
57
+ - sig/lrama/bitmap.rbs
58
+ - sig/lrama/report.rbs
59
+ - sig/lrama/warning.rbs
47
60
  - template/bison/yacc.c
48
61
  - template/bison/yacc.h
49
- homepage: https://github.com/yui-knk/lrama
62
+ homepage: https://github.com/ruby/lrama
50
63
  licenses:
51
64
  - GNU GPLv3
52
65
  metadata: {}
@@ -65,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
78
  - !ruby/object:Gem::Version
66
79
  version: '0'
67
80
  requirements: []
68
- rubygems_version: 3.4.1
81
+ rubygems_version: 3.5.0.dev
69
82
  signing_key:
70
83
  specification_version: 4
71
84
  summary: LALR (1) parser generator written by Ruby