Skip to content
Merged
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
15 changes: 9 additions & 6 deletions cmpfs-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Purpose: Gemspec for cmpfs.Ruby library
#
# Created: 1st March 2019
# Updated: 27th August 2026
# Updated: 28th August 2026
#
# ######################################################################## #

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


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


Gem::Specification.new do |spec|

spec.name = 'cmpfs-ruby'
Expand All @@ -31,16 +34,16 @@ END_DESC
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = 'https://github.com/synesissoftware/cmpfs.Ruby'
spec.homepage = PROJECT_URL
spec.license = 'BSD-3-Clause'

spec.required_ruby_version = [ '>= 1.9.3' ]

spec.metadata = {
'bug_tracker_uri' => 'https://github.com/synesissoftware/cmpfs.Ruby/issues',
'changelog_uri' => 'https://github.com/synesissoftware/cmpfs.Ruby/blob/master/CHANGES.md',
'homepage_uri' => 'https://github.com/synesissoftware/cmpfs.Ruby',
'source_code_uri' => 'https://github.com/synesissoftware/cmpfs.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