regexp_parser 2.11.2 → 2.11.3

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: 4a040acf8a74a8fba3bb10e289258195ecfbd78a0708da8757230fc6d6e9fe23
4
- data.tar.gz: 2c444d8dcb5f24d752e00eca09adb0c2c9b1f4612accf3356b923b19c47cae57
3
+ metadata.gz: ba0845a7ebcd158dc60281b731adb0d597b71028a734209a9cf6e850986c03b4
4
+ data.tar.gz: '078369f6bdbf716aff8f435a318e3f1a8e83593951ee7b21c94bbcd597213d54'
5
5
  SHA512:
6
- metadata.gz: 57021cd49ca2c5db4b62de77b6e929e717f44520eeff6d39a195f15b8a5b2e9bdb98eb74e849465dd2648a24a2c8c0102c38b9f938b41bc4ca40059925d038c4
7
- data.tar.gz: 0e03ce414e29548f4923c98396262297f61260a1960b9849ffb24ed6da32788fd728cc42e0949b176fa9e1404790d4b3f788219f345607c187f81c0b9352ea3c
6
+ metadata.gz: e4539f7196c10d233aca76dc0da3fc8ae8df48b11afd3cc8c7548eedf5893a1202ba06f5fa841444b8afc7d4b0178b6cfb2f16db5e4d05401c64ba26fb05d1de
7
+ data.tar.gz: 801716036ad9a094641094077a8f1695d82cda38020369fb7385a9a7c34d7df0fc90c1629865072d22921fdcfa02a11f70c504220be2bd8df699a10d6d787647
data/Gemfile CHANGED
@@ -12,6 +12,6 @@ group :development, :test do
12
12
  if RUBY_VERSION.to_f >= 2.7
13
13
  gem 'benchmark-ips', '~> 2.1'
14
14
  gem 'gouteur', '~> 1.1'
15
- gem 'rubocop', '~> 1.59'
15
+ gem 'rubocop', '>= 1.80.2'
16
16
  end
17
17
  end
@@ -247,7 +247,7 @@
247
247
  # Treat all remaining escapes - those not supported in sets - as literal.
248
248
  # (This currently includes \^, \-, \&, \:, although these could potentially
249
249
  # be meta chars when not escaped, depending on their position in the set.)
250
- any > (escaped_set_alpha, 1) {
250
+ (any | utf8_multibyte) > (escaped_set_alpha, 1) {
251
251
  emit(:escape, :literal, copy(data, ts-1, te))
252
252
  fret;
253
253
  };