Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
# libpath.Ruby - TODO <!-- omit in toc -->


## Functional improvements

* [ ] quiet Ruby 3.4+ `literal string will be frozen in the future` warnings from `gsub!` in **lib/libpath/internal_/windows/form.rb** (tests already pass under `-W`);


## Performance improvements

* \<none>
Expand All @@ -19,8 +14,8 @@
* [x] ~~~gemspec polish: README tagline as `spec.summary`, package docs, exclude **Gemfile.lock** / **.ruby-version**~~~;
* [x] ~~~README canonical structure (tagline before badges; **Dependencies**; CI badge → **ruby.yml**)~~~;
* [x] ~~~after the packaging/boilerplate/CI baseline: bump **VERSION** and align **CHANGES**/**NEWS**~~~;
* [ ] **git rm** **Gemfile.lock** when committing this lift (deleted in the work tree and gitignored; still in HEAD);
* [ ] this lift is on **bp-2**, which is not in CI `on.push.branches` (gold seven-name set); use a PR (unfiltered `pull_request:`) or merge to a listed branch to run push CI;
* [x] ~~~confirm **Gemfile.lock** is neither tracked nor packaged~~~ - ✅;
* [x] ~~~confirm the lift is on a CI push branch (`boilerplate`)~~~ - ✅;


<!-- ########################### end of file ########################### -->
15 changes: 9 additions & 6 deletions libpath-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Purpose: Gemspec for libpath.Ruby library
#
# Created: 8th January 2019
# Updated: 19th August 2026
# Updated: 28th August 2026
#
# ######################################################################## #

Expand All @@ -14,6 +14,9 @@ $:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'libpath/version'


PROJECT_URL = 'https://github.com/synesissoftware/libpath.Ruby'


Gem::Specification.new do |spec|

spec.name = 'libpath-ruby'
Expand All @@ -31,16 +34,16 @@ END_DESC
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = 'https://github.com/synesissoftware/libpath.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/libpath.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/libpath.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/libpath.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/libpath.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[
Expand Down