ruby-fst 0.2.1-x86_64-linux → 0.2.2-x86_64-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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/ruby_fst/3.2/ruby_fst.so +0 -0
- data/lib/ruby_fst/3.3/ruby_fst.so +0 -0
- data/lib/ruby_fst/3.4/ruby_fst.so +0 -0
- data/lib/ruby_fst/4.0/ruby_fst.so +0 -0
- data/lib/ruby_fst/version.rb +1 -1
- data/lib/ruby_fst.rb +5 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a453953e975d4068f96a28eb5a2b29ece5879bc13e556e9c3b08a1a04e25eae3
|
|
4
|
+
data.tar.gz: c3a9c1dff5d755c05b567772c5c3045b80485e387b2d2c8e2ebbe4a15d3a5649
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 256a6906f551033b49b04a4f25fb2ef44699bd2138f34da41f167324e73a0e7c4c687ef6ded252672c396eff315dc914939bf773cf7879b37fb3cf8d39cb9087
|
|
7
|
+
data.tar.gz: c1298bde498c8076adb617050b7aac5541459ce7e1462501847baae9d4e3de184bd13950bd0b7b74015cc3d8dd234413fd2d691bb4a98e6a22879709886b81a4
|
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
|
data/lib/ruby_fst/version.rb
CHANGED
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
|
-
|
|
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
|