Gemfile in beaker-4.29.1 vs Gemfile in beaker-4.30.0
- old
+ new
@@ -1,6 +1,6 @@
-source ENV['GEM_SOURCE'] || "https://rubygems.org"
+source ENV['GEM_SOURCE'] || 'https://rubygems.org'
gemspec
# This section of the gemspec is for Puppet CI; it will pull in
# a supported beaker library for testing to overwrite the gemspec if
@@ -16,6 +16,15 @@
if ENV['BEAKER_PE_PR_REPO_URL']
lib = ENV['BEAKER_PE_PR_REPO_URL'].match(/\/([^\/]+)\.git$/)[1]
author = ENV['BEAKER_PE_PR_AUTHOR']
ref = ENV['BEAKER_PE_PR_COMMIT']
gem lib, :git => "git@github.com:#{author}/#{lib}.git", :branch => ref
+end
+
+group :release do
+ gem 'github_changelog_generator', require: false
+end
+
+group :coverage, optional: ENV['COVERAGE']!='yes' do
+ gem 'simplecov-console', :require => false
+ gem 'codecov', :require => false
end