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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +9 -0
  3. data/lib/protege/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdeee28284c2eefde0269a56da60be2a03f47ae5519b0568d61d272dbba20fb0
4
- data.tar.gz: f75cf1806e7256c8935ebdf3a9a173d0f560ebaf4bad0a5eedcb167cf40068ad
3
+ metadata.gz: 2e4802d01b5b207b82c7c34dcc937de6d49b393d9d49fdc8e0410e0504cb67a1
4
+ data.tar.gz: b62d7562b055d40a2d884814aed9cf524f2c7e838ee30161d0f496abc649c8dc
5
5
  SHA512:
6
- metadata.gz: a2c94293d86d4f1bd0a326ba0bd06acaf776504369317117cfdb4c93d880f2cebdebed7fdb96219b2283b29da55fa0d36ec6119fc3301910acb21d58ed350848
7
- data.tar.gz: e1d9ab241eeb28d77cd184c09e1f1f42d9fd26642a8dc2f74c00cdd118a431fe6fc6f4b1c4bac55cb38c4bdb7cdbf912d12129c8d2b5cae82340c4a67c40a888
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'
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Protege
4
4
  # Current gem version, following Semantic Versioning.
5
- VERSION = '0.1.0.alpha.1'
5
+ VERSION = '0.1.0.alpha.2'
6
6
  end
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.1
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: 4.0.10
491
+ rubygems_version: 3.6.9
492
492
  specification_version: 4
493
493
  summary: Email-native AI agent toolkit.
494
494
  test_files: []