Skip to content

Commit

Permalink
Merge pull request #87 from bastelfreak/strict
Browse files Browse the repository at this point in the history
Fix license identifier Apache2->Apache-2.0, fix version boundary for simplecov, Build gems with strict and verbose mode
  • Loading branch information
bastelfreak authored May 28, 2024
2 parents 1e89d93 + 4379105 commit f8f4f47
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit f8f4f47

Please sign in to comment.