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
File renamed without changes.
16 changes: 15 additions & 1 deletion kitchen-openstack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,23 @@ Gem::Specification.new do |spec|
spec.homepage = "https://github.com/test-kitchen/kitchen-openstack"
spec.license = "Apache-2.0"

spec.files = Dir["LICENSE", "README.md", "lib/**/*"]
# Named explicitly rather than globbed: Dir[] drops a name it cannot match
# without complaining, which is how every published gem up to 8.0.0 came to
# ship no license file at all -- the glob asked for "LICENSE" while the file
# was named LICENSE.txt. The file is now LICENSE, matching the rest of the
# test-kitchen plugins.
spec.files = %w{LICENSE README.md} + Dir["lib/**/*.rb"]
spec.require_paths = ["lib"]

spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
"documentation_uri" => "https://kitchen.ci/docs/drivers/openstack/",
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"rubygems_mfa_required" => "true",
}

spec.required_ruby_version = ">= 3.1"

spec.add_dependency "test-kitchen", ">= 3.0", "< 5"
Expand Down
Loading