ru_token 0.1.16-aarch64-linux-musl → 0.1.18-aarch64-linux-musl
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 +11 -0
- data/README.md +7 -3
- data/lib/ru_token/version.rb +1 -1
- data/ru_token.gemspec +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: 4a9c82d9dd0ca291235805a249b1d03db7d90c034fcc48a1b417c26dc7eb9405
|
4
|
+
data.tar.gz: 363ab29ca04d8f685a47aa07d18159de0658f1fb74b4a5f2da397f0a8962caf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2c7050198b1457dc11d900c8eae8bb1d0d8bf168530c16adfdd4ac0ff52f8068d83b7b12b313ac9f8877aa245fd95b245bac5ce833c6ce16fb89260f53164d6
|
7
|
+
data.tar.gz: 7d7bcb909bc78ba00b993b00ab80b508305cfe5ba978811044a012a768c49b30f7e6b9ee4a8cc956ad17c00a9acdd2a0b94775e7c57c6bf6ce2d492dfcdc9962
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
---
|
11
|
+
## [0.1.18] - 2025-07-31
|
12
|
+
### Change
|
13
|
+
- Update README
|
14
|
+
|
15
|
+
---
|
16
|
+
## [0.1.17] - 2025-07-31
|
17
|
+
### Change
|
18
|
+
- Update gemspec license entry
|
19
|
+
- Remove platform x64-mingw-ucrt from Gemfile.lock
|
20
|
+
|
10
21
|
---
|
11
22
|
## [0.1.16] - 2025-07-31
|
12
23
|
### Change
|
data/README.md
CHANGED
@@ -41,7 +41,9 @@ The gem automatically maps dozens of model names and prefixes to the correct und
|
|
41
41
|
## Developing RuToken Locally
|
42
42
|
|
43
43
|
### Install Ruby and Rust dependencies
|
44
|
-
Ruby >= 2.7
|
44
|
+
Ruby >= 2.7.0
|
45
|
+
|
46
|
+
RubyGems >= 3.0.0
|
45
47
|
|
46
48
|
Rust edtion 2021
|
47
49
|
|
@@ -57,8 +59,10 @@ Both:
|
|
57
59
|
|
58
60
|
You can open an interactive console for experimentation with bin/console.
|
59
61
|
|
60
|
-
Contributing
|
62
|
+
## Contributing
|
63
|
+
|
61
64
|
Bug reports and pull requests are welcome on GitHub at https://github.com/LoganBresnahan/ru_token.
|
62
65
|
|
63
|
-
License
|
66
|
+
## License
|
67
|
+
|
64
68
|
The gem is available as open source under the terms of the MIT License.
|
data/lib/ru_token/version.rb
CHANGED
data/ru_token.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = "Ruby wrapper for the tiktoken Rust library, providing fast tokenization for OpenAI models."
|
12
12
|
spec.description = "RuToken is a Ruby gem that wraps the tiktoken Rust library, enabling fast and efficient tokenization for OpenAI models. It supports multiple models including o200k_base, cl100k_base, p50k_base, and r50k_base."
|
13
13
|
spec.homepage = "https://github.com/LoganBresnahan/ru_token"
|
14
|
-
spec.license = "
|
14
|
+
spec.license = "MIT"
|
15
15
|
spec.required_ruby_version = ">= 2.7.0"
|
16
16
|
spec.required_rubygems_version = ">= 3.0.0"
|
17
17
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ru_token
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.18
|
5
5
|
platform: aarch64-linux-musl
|
6
6
|
authors:
|
7
7
|
- Logan Bresnahan
|
@@ -78,7 +78,7 @@ files:
|
|
78
78
|
- sig/ru_token.rbs
|
79
79
|
homepage: https://github.com/LoganBresnahan/ru_token
|
80
80
|
licenses:
|
81
|
-
-
|
81
|
+
- MIT
|
82
82
|
metadata:
|
83
83
|
allowed_push_host: https://rubygems.org
|
84
84
|
homepage_uri: https://github.com/LoganBresnahan/ru_token
|