informers 1.2.1 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dfeaf81a8a597d5c25d340e38d0f0be665d3737a1cc271ece883e5b83472da31
4
- data.tar.gz: 36943e4c472c864e5951a02ea336c47192e77bcc51161113e022675cce552b82
3
+ metadata.gz: c78e4031693d60c8df2736dcb8360780e489a75bc06ac4d1aacd59f75793e689
4
+ data.tar.gz: fd4d9eadfa51758c8e19b231f9c295cf89f76d0270fcf672868f99123e44dcd6
5
5
  SHA512:
6
- metadata.gz: f6f9a35abcdcb57ddd24c3d81498fa517df554a48b722d7fcee0776e950762ef6412f90916688ca273b95bac79b2441a92a26bcecdc27e2e3c504eafc2b39793
7
- data.tar.gz: b85b9a12439001996c4a1580bfdca650ae920791867a3245531b8b13de0b082ebca5ee76be70e8581947e38cf7ebd8c6474d537234ccef4cddb04cc2c6b3dfa5
6
+ metadata.gz: 83a23498f591a2fe7f3e89da3af146a0b637e1edb178e8468c75ead60a73949b61899dfab8026ea1d675b6f8a6b5d24644807763a6f5f4bacdea879eefaf9fe0
7
+ data.tar.gz: 61c3c2f55e92669825822d54db248320f3713ac29de7018ffe79617f68944a0c79806f53d84007fda50208e8f38934804a36b705afa081e5e21f963b616c6547
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.3.0 (2026-04-14)
2
+
3
+ - Dropped support for Ruby < 3.3
4
+
1
5
  ## 1.2.1 (2025-02-01)
2
6
 
3
7
  - Fixed error when terminal width is zero
data/README.md CHANGED
@@ -456,22 +456,6 @@ Informers.pipeline("embedding", session_options: {log_severity_level: 2})
456
456
 
457
457
  This library was ported from [Transformers.js](https://github.com/huggingface/transformers.js) and is available under the same license.
458
458
 
459
- ## Upgrading
460
-
461
- ### 1.0
462
-
463
- Task classes have been replaced with the `pipeline` method.
464
-
465
- ```ruby
466
- # before
467
- model = Informers::SentimentAnalysis.new("sentiment-analysis.onnx")
468
- model.predict("This is super cool")
469
-
470
- # after
471
- model = Informers.pipeline("sentiment-analysis")
472
- model.("This is super cool")
473
- ```
474
-
475
459
  ## History
476
460
 
477
461
  View the [changelog](https://github.com/ankane/informers/blob/master/CHANGELOG.md)
@@ -1,3 +1,3 @@
1
1
  module Informers
2
- VERSION = "1.2.1"
2
+ VERSION = "1.3.0"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: informers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-01 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: onnxruntime
@@ -29,14 +29,14 @@ dependencies:
29
29
  requirements:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 0.5.3
32
+ version: '0.6'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 0.5.3
39
+ version: '0.6'
40
40
  email: andrew@ankane.org
41
41
  executables: []
42
42
  extensions: []
@@ -75,14 +75,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - ">="
77
77
  - !ruby/object:Gem::Version
78
- version: '3.1'
78
+ version: '3.3'
79
79
  required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  requirements: []
85
- rubygems_version: 3.6.2
85
+ rubygems_version: 4.0.6
86
86
  specification_version: 4
87
87
  summary: Fast transformer inference for Ruby
88
88
  test_files: []