ruby-fst 0.2.1-aarch64-linux → 0.2.2-aarch64-linux

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: b7297c2f997a0724af49efc7a0f735405de9c396f4ac76315a258a211842f8ad
4
- data.tar.gz: 9becde9374ca944399eb5335979fbce646b60734da69a40e8f75fee7d66a809d
3
+ metadata.gz: e9592fc7ef73cbfd8aaccfef62ac0ef492e999159a02421fcf07571593987262
4
+ data.tar.gz: 5e6122e7ea9a6fb041288f04cfe11f24fa93a4a42de686ac6c9ebaed81f9dce3
5
5
  SHA512:
6
- metadata.gz: 560825b1d99789ee49cad7360eeae3f62c427800261aa34cd381f48f61211c187e5b627aae747ba2dcff183e119616fa440944a2ea660cf66b9480a7beadc9b4
7
- data.tar.gz: 2113fece0cd6034bb2362d5fc311f7f9bc56ba592959d9583ec4071a482ec18b8ed009824be1ae7de695c13162678a840cc0d49226b7893b954caa6fcc13c88d
6
+ metadata.gz: 633f81a2cf9083f03fc59bbb2bca1c68fd9887960452a9f97f0329cdfe3a4da0613a43a8d8e45baa551d938fc44f756732553b881a6387e1efcd842529ffdd0c
7
+ data.tar.gz: 1af5305c3caf55f38322fdc7e29b49e2d724d21aae8810ac932a380c7f71b8f6acb52aa673ef1eebaa0675b4046163bdea1297e659210f3bddd74de98a6945bb
data/CHANGELOG.md CHANGED
@@ -6,6 +6,12 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.2] — 2026-09-24
10
+
11
+ ### Fixed
12
+ - Precompiled gems failed to load: the binaries ship under `lib/ruby_fst/<ruby minor>/`, but
13
+ the loader only looked for the source-build path. It now tries the versioned directory first.
14
+
9
15
  ## [0.2.1] — 2026-09-24
10
16
 
11
17
  ### Fixed
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubyFst
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
data/lib/ruby_fst.rb CHANGED
@@ -1,7 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative 'ruby_fst/version'
4
- require_relative 'ruby_fst/ruby_fst'
4
+ begin
5
+ require_relative "ruby_fst/#{RUBY_VERSION[/\A\d+\.\d+/]}/ruby_fst"
6
+ rescue LoadError
7
+ require_relative 'ruby_fst/ruby_fst'
8
+ end
5
9
 
6
10
  module RubyFst
7
11
  module RangeQuery
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-fst
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Denis Sablic