kanayago 0.8.0 → 0.8.1

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: 5283a3ef35351dafb71c6c2a394662a475b7bba10243cac2314550e74ac8165f
4
- data.tar.gz: 36f2786f6b3c0d401ac8ee394ec6efaf455dba5271892115a6203708341bef40
3
+ metadata.gz: adcfdeedc934308e3ea34c474b42a8d5e7a716c2a6d251eca3d885fc4ac37bf3
4
+ data.tar.gz: 177d12e68b17c1623a058045129409781f86765fb5826406c4fa9ef50cc1f9cf
5
5
  SHA512:
6
- metadata.gz: 1d0fd20fed3fce2e4e585a770f7682eeebc5af08882e523d7e5a958cf0ca231470096836630fb7e7961e8127f7c03f5190370b2a554dda1a26acd2cf34c8f943
7
- data.tar.gz: 0f1f7106913a17aeaa9bb91b60975470273407ed62744aa86ac90344815d8ff376fc5cb0d689f8fc6f76f668a6def2862721e89b17eea0fe6e3bc8ac68ea0f52
6
+ metadata.gz: dca3cf511e55566182bbf574bdcbec51a285ebf52ab3673bf861446c6c6152e22f670df6b95cca0dde83983e6f9028ebb83c8f3273a46a827f4cf8456790d4b8
7
+ data.tar.gz: 54e13752c7f422f78c2a08eefbb1179291a693e5cd378c9127356a747733882d40d2a315f633d252cfbb8876329b19ef6e632b1b9ee85958499c49fad67cad53
data/.rubocop_todo.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2026-02-23 12:14:17 UTC using RuboCop version 1.84.2.
3
+ # on 2026-03-06 14:26:51 UTC using RuboCop version 1.85.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
@@ -12,6 +12,15 @@ Lint/Debugger:
12
12
  Exclude:
13
13
  - 'test.rb'
14
14
 
15
+ # Offense count: 5
16
+ # This cop supports unsafe autocorrection (--autocorrect-all).
17
+ Lint/InterpolationCheck:
18
+ Exclude:
19
+ - 'test/kanayago/parse_dynamic_string_node_test.rb'
20
+ - 'test/kanayago/parse_dynamic_symbol_node_test.rb'
21
+ - 'test/kanayago/parse_embedded_expression_string_node_test.rb'
22
+ - 'test/kanayago/parse_match3_node_test.rb'
23
+
15
24
  # Offense count: 1
16
25
  # This cop supports safe autocorrection (--autocorrect).
17
26
  Lint/RedundantStringCoercion:
@@ -47,7 +56,7 @@ Metrics/MethodLength:
47
56
  Metrics/ModuleLength:
48
57
  Max: 142
49
58
 
50
- # Offense count: 2
59
+ # Offense count: 4
51
60
  # Configuration parameters: AllowedMethods, AllowedPatterns.
52
61
  Metrics/PerceivedComplexity:
53
62
  Max: 10
@@ -62,3 +71,9 @@ Security/Open:
62
71
  Style/GlobalVars:
63
72
  Exclude:
64
73
  - 'ext/kanayago/extconf.rb'
74
+
75
+ # Offense count: 1
76
+ # This cop supports unsafe autocorrection (--autocorrect-all).
77
+ Style/RedundantStructKeywordInit:
78
+ Exclude:
79
+ - 'sample/linter.rb'
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.8.1] - 2026-03-06
11
+
12
+ ### Fixed
13
+ - Fix build failure when install path contains spaces
14
+
10
15
  ## [0.8.0] - 2026-02-23
11
16
 
12
17
  ### Added
@@ -5,7 +5,7 @@ require 'mkmf'
5
5
  # Run setup script to prepare Ruby parser files before building
6
6
  setup_script = File.expand_path('../../script/setup_parser.rb', __dir__)
7
7
  puts 'Running parser setup script...'
8
- unless system("ruby #{setup_script}")
8
+ unless system('ruby', setup_script)
9
9
  warn 'Failed to setup parser files. Please check the error messages above.'
10
10
  exit 1
11
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kanayago
4
- VERSION = '0.8.0'
4
+ VERSION = '0.8.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kanayago
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - S-H-GAMELINKS