racc 1.6.1 → 1.6.2

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
  SHA256:
3
- metadata.gz: d3140410adc1a0eea76ac4c19b3b03b9de9a4dd4c271971fef8675c3bec43260
4
- data.tar.gz: 3bbbb46621a165b7f68dfbdb3cfebb508078db7984eb443b0acaebf5b98642b5
3
+ metadata.gz: 7f818fe943a0bd022e4bc6d58e4c014ecd53fabef972ae98822b155b8d3c24b0
4
+ data.tar.gz: 649c807b04a435eff16318026ee39d4fa24d3422afc2ffe38fdc0737eb1c30eb
5
5
  SHA512:
6
- metadata.gz: 62602fcf78f448a79c997e09084a7577257eb895b8ecae5880086b54fb05105b4140618f72c237e31d89d09347b420105a9e964068308404a30e01385a12ba15
7
- data.tar.gz: 6f206c5cc183b836b50cfd84e71fe0b1b28dc2666e6d41c11055280a68a5497f3567f21931666e2c59495682bd310ec52e1704c4cb3fe5a434fa5e09da985d85
6
+ metadata.gz: db8d75ac8360c95552ecffd24eaa96e1f2252771fd715a8fed8f2fcfca7d8bfb3e51211089d05464ff42eacac7a063944cfe64fce571ccb6e4eca84e6391a5de
7
+ data.tar.gz: '04971d555f03bfd242a4f5d75d810c5917d528b647e60fa8197d472aa9b1d3cf44b318406730e3a87427f4adad6c37b1b8427174e3480efaf237f97dc5fbac6e'
@@ -7,8 +7,6 @@
7
7
  This library is free software.
8
8
  You can distribute/modify this program under the same terms of ruby.
9
9
 
10
- $originalId: cparse.c,v 1.8 2006/07/06 11:39:46 aamine Exp $
11
-
12
10
  */
13
11
 
14
12
  #include <ruby.h>
@@ -24,7 +22,7 @@
24
22
  Important Constants
25
23
  ----------------------------------------------------------------------- */
26
24
 
27
- #define RACC_VERSION "1.4.15"
25
+ #define RACC_VERSION "1.6.2"
28
26
 
29
27
  #define DEFAULT_TOKEN -1
30
28
  #define ERROR_TOKEN 1
data/lib/racc/info.rb CHANGED
@@ -11,7 +11,7 @@
11
11
  #++
12
12
 
13
13
  module Racc
14
- VERSION = '1.6.1'
14
+ VERSION = '1.6.2'
15
15
  Version = VERSION
16
16
  Copyright = 'Copyright (c) 1999-2006 Minero Aoki'
17
17
  end
@@ -216,7 +216,7 @@ module Racc
216
216
  end
217
217
  i = ii
218
218
  end
219
- Regexp.compile(map, nil, 'n')
219
+ Regexp.compile(map, Regexp::NOENCODING)
220
220
  end
221
221
 
222
222
  def set_table(entries, dummy, tbl, chk, ptr)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: racc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.1
4
+ version: 1.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Minero Aoki
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-12-05 00:00:00.000000000 Z
12
+ date: 2022-12-23 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: |
15
15
  Racc is a LALR(1) parser generator.