uniword 1.5.4 → 1.6.0
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/exe/uniword +8 -0
- data/lib/uniword/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1153bb3528efaa764919405fb7e3ac11e0e9aedcaae81e6dd0b692293e3876a2
|
|
4
|
+
data.tar.gz: 0e59bf185f59fc2377dc56c1dd1bfacbc773814d47dcef9f19bb6f855cf0298c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 540da6a280c292c6563daf77a1c024fefbc1266048d7fab197cff2e7bb7d0529d2953e1cc596d8b426668702adc03a3b1821645a8bd028fc6d71cfe937862a0c
|
|
7
|
+
data.tar.gz: 9543bd3d00ce96e4d47480f5db92a05ab60a7fc1a6e85cf60037ace089106f703f30d6be825dcaa939319c5fe559d5e35b9669f8103a6c9cabd8c5c4415552f1
|
data/exe/uniword
CHANGED
|
@@ -2,5 +2,13 @@
|
|
|
2
2
|
# frozen_string_literal: true
|
|
3
3
|
|
|
4
4
|
require "bundler/setup"
|
|
5
|
+
|
|
6
|
+
# Hydration-heavy workloads run ~1.75x under YJIT (measured on the
|
|
7
|
+
# 608KB corpus). Opt out with UNIWORD_DISABLE_YJIT=1.
|
|
8
|
+
if defined?(RubyVM::YJIT) && !RubyVM::YJIT.enabled? &&
|
|
9
|
+
ENV["UNIWORD_DISABLE_YJIT"] != "1"
|
|
10
|
+
RubyVM::YJIT.enable
|
|
11
|
+
end
|
|
12
|
+
|
|
5
13
|
require "uniword"
|
|
6
14
|
Uniword::CLI.start(ARGV)
|
data/lib/uniword/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uniword
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ribose Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: logger
|