Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix license identifier Apache2->Apache-2.0, fix version boundary for simplecov, Build gems with strict and verbose mode #87

Merged
merged 3 commits into from
May 28, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
env:
BUNDLE_WITHOUT: release:development:rubocop
- name: Build gem
run: gem build *.gemspec
run: gem build --strict --verbose *.gemspec
- name: Publish gem to rubygems.org
run: gem push *.gem
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: spec tests
run: bundle exec rake test:spec
- name: Build gem
run: gem build *.gemspec
run: gem build --strict --verbose *.gemspec
# It seems some additonal setup of Docker may be needed for
# the acceptance tests to work.
# - name: Run acceptance tests
Expand Down
4 changes: 2 additions & 2 deletions beaker-vagrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/puppetlabs/beaker-vagrant'
s.summary = 'Beaker DSL Extension Helpers!'
s.description = 'For use for the Beaker acceptance testing tool'
s.license = 'Apache2'
s.license = 'Apache-2.0'

s.required_ruby_version = Gem::Requirement.new('>= 2.7')

Expand All @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'pry', '~> 0.10'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov', '~> 0.22.0'
s.add_development_dependency 'voxpupuli-rubocop', '~> 2.7.0'

s.add_runtime_dependency 'beaker', '>= 4', '< 6'
Expand Down
Loading