ru_token 0.1.2 → 0.1.5
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 +15 -0
- data/Rakefile +4 -9
- data/lib/ru_token/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: 07f91d0fcb7cfa30a57461e5947e499793e19bdbce2d4b29684d0f9cd433fdd3
|
4
|
+
data.tar.gz: f7354ed63faeb48582273a063cba628187d4be5988d6bd962b444bd2a3ed590b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c83b075ad38f819a27d5daa22f24913b7c183a8811f85fd1dd25471d4e78bc7c52d8716dc3b15acdc38c9a4118d1eea7cf54762612faf722e10703a44d9deea
|
7
|
+
data.tar.gz: 06a0ba7cd6fceee49d023ee5a0080752d7ec303143465de143988a97464391b130311030026bf778b9070d39829960e9b3997adf9dfc03dceae9742e0878667b
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,21 @@ 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.5] - 2025-07-30
|
12
|
+
### Changed
|
13
|
+
- Update Deploy Process for PKG gem names.
|
14
|
+
|
15
|
+
---
|
16
|
+
## [0.1.4] - 2025-07-30
|
17
|
+
### Changed
|
18
|
+
- Removed test runners from release process.
|
19
|
+
|
20
|
+
---
|
21
|
+
## [0.1.3] - 2025-07-30
|
22
|
+
### Changed
|
23
|
+
- Update release process to properly pre-compile native gems.
|
24
|
+
|
10
25
|
---
|
11
26
|
## [0.1.2] - 2025-07-30
|
12
27
|
|
data/Rakefile
CHANGED
@@ -1,22 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "bundler/setup"
|
4
3
|
require "bundler/gem_tasks"
|
5
|
-
require "rake/clean"
|
6
4
|
require "rake/extensiontask"
|
7
|
-
require "rspec/core/rake_task"
|
8
|
-
|
9
|
-
spec = Gem::Specification.load("ru_token.gemspec")
|
10
5
|
|
11
|
-
Rake::ExtensionTask.new("ru_token"
|
6
|
+
Rake::ExtensionTask.new("ru_token") do |ext|
|
12
7
|
ext.lib_dir = "lib/ru_token"
|
8
|
+
ext.ext_dir = "ext/ru_token"
|
13
9
|
end
|
14
10
|
|
15
|
-
|
11
|
+
require "rspec/core/rake_task"
|
12
|
+
|
16
13
|
RSpec::Core::RakeTask.new(:spec)
|
17
14
|
|
18
|
-
# Make the 'spec' task depend on the 'compile' task
|
19
15
|
task spec: :compile
|
20
16
|
|
21
|
-
# Set the default task to run specs
|
22
17
|
task default: :spec
|
data/lib/ru_token/version.rb
CHANGED
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Logan Bresnahan
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: 3.0.0
|
100
100
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
101
|
+
rubygems_version: 3.1.6
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
104
|
summary: Ruby wrapper for the tiktoken Rust library, providing fast tokenization for
|