protege 0.1.0.alpha.1 → 0.1.0.alpha.2
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/Rakefile +9 -0
- data/lib/protege/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: 2e4802d01b5b207b82c7c34dcc937de6d49b393d9d49fdc8e0410e0504cb67a1
|
|
4
|
+
data.tar.gz: b62d7562b055d40a2d884814aed9cf524f2c7e838ee30161d0f496abc649c8dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4ba3c6c051cab06814ed5b3437f2a6e7164a97982dc23a14247d153ec19479a4caf30b325c48d50fe4d91ec41322ad8aba3193972b2af335b27d79de92f29d4
|
|
7
|
+
data.tar.gz: b68781555b283c9e3954bced61070ec78df944c190439ad9d05505ad434b73cfc830c7a3691d0f8cbd26c0ab1b102a67ac9dd2e8c68a95ac4f3a47f9dc639250
|
data/Rakefile
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
require 'bundler/gem_tasks'
|
|
4
4
|
require 'rake/testtask'
|
|
5
5
|
|
|
6
|
+
# In CI (the Publish Gem workflow) the git tag and GitHub Release already exist and the gem is built
|
|
7
|
+
# from a detached-HEAD checkout of the tag, so Bundler's `release:source_control_push` (git tag +
|
|
8
|
+
# `git push origin HEAD`) is both redundant and fails on the detached HEAD. Skip it there so
|
|
9
|
+
# `rake release` only builds and publishes the gem (via trusted publishing); local `rake release`
|
|
10
|
+
# keeps its full behavior.
|
|
11
|
+
if ENV['CI'] && Rake::Task.task_defined?('release:source_control_push')
|
|
12
|
+
Rake::Task['release:source_control_push'].clear
|
|
13
|
+
end
|
|
14
|
+
|
|
6
15
|
Rake::TestTask.new(:test) do |t|
|
|
7
16
|
t.libs << 'test'
|
|
8
17
|
t.pattern = 'test/**/*_test.rb'
|
data/lib/protege/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: protege
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.alpha.
|
|
4
|
+
version: 0.1.0.alpha.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Scholl
|
|
@@ -488,7 +488,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
488
488
|
- !ruby/object:Gem::Version
|
|
489
489
|
version: '0'
|
|
490
490
|
requirements: []
|
|
491
|
-
rubygems_version:
|
|
491
|
+
rubygems_version: 3.6.9
|
|
492
492
|
specification_version: 4
|
|
493
493
|
summary: Email-native AI agent toolkit.
|
|
494
494
|
test_files: []
|