onnx-ruby 0.1.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.
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: onnx-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Johannes Dwi Cahyo
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rice
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '4.0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '4.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: rake
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '13.0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '13.0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: rake-compiler
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.2'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '1.2'
54
+ - !ruby/object:Gem::Dependency
55
+ name: minitest
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '5.0'
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '5.0'
68
+ description: High-performance ONNX Runtime bindings for Ruby using Rice. Run ONNX
69
+ models locally for embeddings, classification, NER, and more.
70
+ email:
71
+ - johannesdwicahyo@gmail.com
72
+ executables: []
73
+ extensions:
74
+ - ext/onnx_ruby/extconf.rb
75
+ extra_rdoc_files: []
76
+ files:
77
+ - CLAUDE.md
78
+ - Gemfile
79
+ - LICENSE
80
+ - README.md
81
+ - Rakefile
82
+ - examples/classification.rb
83
+ - examples/embedding.rb
84
+ - examples/real_world_demo.rb
85
+ - examples/with_zvec.rb
86
+ - ext/onnx_ruby/extconf.rb
87
+ - ext/onnx_ruby/onnx_ruby_ext.cpp
88
+ - lib/onnx_ruby.rb
89
+ - lib/onnx_ruby/classifier.rb
90
+ - lib/onnx_ruby/configuration.rb
91
+ - lib/onnx_ruby/embedder.rb
92
+ - lib/onnx_ruby/hub.rb
93
+ - lib/onnx_ruby/lazy_session.rb
94
+ - lib/onnx_ruby/model.rb
95
+ - lib/onnx_ruby/reranker.rb
96
+ - lib/onnx_ruby/session.rb
97
+ - lib/onnx_ruby/session_pool.rb
98
+ - lib/onnx_ruby/tensor.rb
99
+ - lib/onnx_ruby/version.rb
100
+ - onnx-ruby.gemspec
101
+ homepage: https://github.com/johannesdwicahyo/onnx-ruby
102
+ licenses:
103
+ - MIT
104
+ metadata:
105
+ homepage_uri: https://github.com/johannesdwicahyo/onnx-ruby
106
+ source_code_uri: https://github.com/johannesdwicahyo/onnx-ruby
107
+ changelog_uri: https://github.com/johannesdwicahyo/onnx-ruby/blob/main/CHANGELOG.md
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: 3.1.0
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubygems_version: 3.6.9
123
+ specification_version: 4
124
+ summary: Ruby bindings for ONNX Runtime
125
+ test_files: []