j_r_r_token 1.0.0-aarch64-linux → 1.0.3-aarch64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abb05eb801e901fa53307ae767cdc53b20b65db5b426f35f2512c227a16c734f
4
- data.tar.gz: ef2e6951426477d271bd7754b49585045917e36b862d0bb323b8531528350a07
3
+ metadata.gz: 16108781b5b88e432725d0010f46a18b74b7861907f4c90512dcc2578bf90cc9
4
+ data.tar.gz: ebff763742b97bc0cdff786fb0d9d121d2b43298cbf87387ec9066b2e29c5b99
5
5
  SHA512:
6
- metadata.gz: 18fd5d46e0d358f57397ee77f89ea2e4523a17f3562e5422d04ff0887ac153799513466fe94beefd2f0e57b7de713fd30e19457ce8978ccb760748109481a5ef
7
- data.tar.gz: d9aa3b02b9f3b83e36598c66765a3dc92ec91f09655b5b846daa0abdfba48551df13c6f618ced5c43a80fcd63bc2928e0e6e1600ba2aeae46163fc640fd8eea1
6
+ metadata.gz: 7d04632c9dfd2c8dca1d981cab13e2fd3d30072f072333e4e4ee7fa0b88a3eb2472d340d41dea8de2c885bad9b2f4685e5fc2df7fb3e4cc76dc45af7617afce4
7
+ data.tar.gz: f4e46033f5bd8d37d8ce76cbde88d5264d9a69e8c6626b4b495bc30e855e483bd1b45537ce1008baee7874e731569f43c2493a307bb67555d6832b9d0d9267a9
data/CHANGELOG.md CHANGED
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ---
11
+ ## [1.0.3] - 2025-08-01
12
+ ### Fix
13
+ - Add Cargo files back to the gemspec.
14
+ ### Change
15
+ - Adjust specs.
16
+
17
+ ---
18
+ ## [1.0.2] - 2025-08-01
19
+ ### Change
20
+ - Refine Model Prefix Matching so 4 and 4* match to the correct Core BPE.
21
+
22
+ ---
23
+ ## [1.0.1] - 2025-08-01
24
+ ### Change
25
+ - Slim down gem by removing unnecessary files defined in the gemspec.
26
+ - Refine Model Prefix Matching so 4 and 4* match to the correct Core BPE.
27
+
10
28
  ---
11
29
  ## [1.0.0] - 2025-08-01
12
30
  ### Breaking Change
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # JRRToken [<img src="ring.png" width="32px" alt="One ring to rule them all, one ring to find them, One ring to bring them all and in the darkness bind them.">](https://youtu.be/lemgdzLDYqA?si=Z_Ls3hbJ-Xv38oJN)
1
+ # JRRToken [<img src="https://github.com/LoganBresnahan/j_r_r_token/raw/main/.github/assets/ring.png" width="32px" alt="One ring to rule them all, one ring to find them, One ring to bring them all and in the darkness bind them.">](https://www.youtube.com/watch?v=lemgdzLDYqA)
2
2
 
3
3
  (Just Ruby Rust Tokens)
4
4
 
@@ -15,10 +15,10 @@ Extensive Model Support: Includes tokenizers for all modern and legacy OpenAI mo
15
15
  ## Install
16
16
 
17
17
  #### Gemfile
18
- `gem 'j_r_r_token', '~> 1.0.0'`
18
+ `gem 'j_r_r_token', '~> 1.0'`
19
19
 
20
20
  #### Command Line
21
- `gem install j_r_r_token -v '~> 1.0.0'`
21
+ `gem install j_r_r_token -v '~> 1.0'`
22
22
 
23
23
  ## Use
24
24
 
data/j_r_r_token.gemspec CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.files = Dir.chdir(__dir__) do
26
26
  `git ls-files -z`.split("\x0").reject do |f|
27
27
  (File.expand_path(f) == __FILE__) ||
28
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
28
+ f.start_with?(*%w[bin/ test/ spec/ features/ .github/ .git .circleci .rspec appveyor Gemfile Rakefile])
29
29
  end
30
30
  end
31
31
  spec.bindir = "exe"
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JRRToken
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: j_r_r_token
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.3
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Logan Bresnahan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-01 00:00:00.000000000 Z
11
+ date: 2025-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -61,11 +61,9 @@ executables: []
61
61
  extensions: []
62
62
  extra_rdoc_files: []
63
63
  files:
64
- - ".rspec"
65
64
  - CHANGELOG.md
66
65
  - LICENSE
67
66
  - README.md
68
- - Rakefile
69
67
  - j_r_r_token.gemspec
70
68
  - lib/j_r_r_token.rb
71
69
  - lib/j_r_r_token/2.7/j_r_r_token.so
@@ -75,7 +73,6 @@ files:
75
73
  - lib/j_r_r_token/3.3/j_r_r_token.so
76
74
  - lib/j_r_r_token/3.4/j_r_r_token.so
77
75
  - lib/j_r_r_token/version.rb
78
- - ring.png
79
76
  - sig/j_r_r_token.rbs
80
77
  homepage: https://github.com/LoganBresnahan/j_r_r_token
81
78
  licenses:
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/Rakefile DELETED
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rake/extensiontask"
5
- require "rb_sys/extensiontask"
6
-
7
- GEMSPEC = Gem::Specification.load("j_r_r_token.gemspec")
8
-
9
- RbSys::ExtensionTask.new("j_r_r_token", GEMSPEC) do |ext|
10
- ext.lib_dir = "lib/j_r_r_token"
11
- end
12
-
13
- # Only require rspec if it's available
14
- begin
15
- require "rspec/core/rake_task"
16
- RSpec::Core::RakeTask.new(:spec)
17
- task default: %i[compile spec]
18
- rescue LoadError
19
- puts "RSpec not available"
20
- task default: :compile
21
- end
22
-
23
- task :native, [:platform] do |_t, platform:|
24
- sh "bundle", "exec", "rb-sys-dock", "--platform", platform, "--build"
25
- end
26
-
27
- task build: :compile
data/ring.png DELETED
Binary file