From 615e6f398ca770bbfc098074354d1eb3cf25cf4b Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Fri, 28 Aug 2026 12:41:19 +1000 Subject: [PATCH 1/3] chore(gemspec): wire gemspec URLs through PROJECT_URL --- woad.gemspec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/woad.gemspec b/woad.gemspec index b65ee2d..214fc36 100644 --- a/woad.gemspec +++ b/woad.gemspec @@ -4,7 +4,7 @@ # Purpose: Gemspec for woad.Ruby library # # Created: 15th August 2026 -# Updated: 19th August 2026 +# Updated: 28th August 2026 # # ######################################################################## # @@ -14,6 +14,9 @@ $:.unshift File.join(File.dirname(__FILE__), 'lib') require 'woad/version' +PROJECT_URL = 'https://github.com/synesissoftware/woad.Ruby' + + Gem::Specification.new do |spec| spec.name = 'woad' @@ -31,16 +34,16 @@ END_DESC spec.email = [ 'matthew@synesis.com.au', ] - spec.homepage = 'https://github.com/synesissoftware/woad.Ruby' + spec.homepage = PROJECT_URL spec.license = 'BSD-3-Clause' spec.required_ruby_version = [ '>= 2.0' ] spec.metadata = { - 'bug_tracker_uri' => 'https://github.com/synesissoftware/woad.Ruby/issues', - 'changelog_uri' => 'https://github.com/synesissoftware/woad.Ruby/blob/master/CHANGES.md', - 'homepage_uri' => 'https://github.com/synesissoftware/woad.Ruby', - 'source_code_uri' => 'https://github.com/synesissoftware/woad.Ruby', + 'bug_tracker_uri' => "#{PROJECT_URL}/issues", + 'changelog_uri' => "#{PROJECT_URL}/blob/master/CHANGES.md", + 'homepage_uri' => PROJECT_URL, + 'source_code_uri' => PROJECT_URL, } spec.files = Dir[ From 8f10395875a455e47933a666d2d1e3a02fd5616a Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Fri, 28 Aug 2026 13:14:32 +1000 Subject: [PATCH 2/3] chore(ci): added target(s) --- .github/workflows/ruby.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index aed069b..c7171c5 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,7 +7,7 @@ # # Created: 15th August 2026 -# Updated: 19th August 2026 +# Updated: 28th August 2026 # name: Ruby @@ -18,6 +18,7 @@ on: - master - dev - boilerplate + - bp-2 - idiomatic - rc1 - rc2 From 6542ef90923e556e7c830bded231e4960a0d542c Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Fri, 28 Aug 2026 13:20:03 +1000 Subject: [PATCH 3/3] typo --- woad.gemspec | 2 -- 1 file changed, 2 deletions(-) diff --git a/woad.gemspec b/woad.gemspec index a7c1509..6ad6606 100644 --- a/woad.gemspec +++ b/woad.gemspec @@ -15,8 +15,6 @@ require 'woad/version' PROJECT_URL = 'https://github.com/synesissoftware/woad.Ruby' -PROJECT_URL = 'https://github.com/synesissoftware/woad.Ruby' - Gem::Specification.new do |spec|