Sha256: 7810f5a07a905121259c25492ba3c8c11ff027037f59037911652e3e41b71b1c

Contents?: true

Size: 1.32 KB

Versions: 13

Compression:

Stored size: 1.32 KB

Contents

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
# a corresponding ENV var is found. Currently, the only supported lib
# is beaker-pe, which can be injected into the dependencies when the
# following ENV vars are defined: BEAKER_PE_PR_AUTHOR,
# BEAKER_PE_PR_COMMIT, BEAKER_PE_PR_REPO_URL. These correspond to the
# ghprb variables ghprbPullAuthorLogin, ghprbActualCommit,
# and ghprbAuthorRepoGitUrl respectively. In the "future", we should
# make this a standard format so we can pull in more than predefined
# variables.

if ENV['BEAKER_PE_PR_REPO_URL']
  lib = ENV['BEAKER_PE_PR_REPO_URL'].match(/\/([^\/]+)\.git$/)[1]
  author = ENV.fetch('BEAKER_PE_PR_AUTHOR', nil)
  ref = ENV.fetch('BEAKER_PE_PR_COMMIT', nil)
  gem lib, :git => "git@github.com:#{author}/#{lib}.git", :branch => ref
end

if ENV['BEAKER_HYPERVISOR']
  # vagrant_libvirt -> vagrant
  gem "beaker-#{ENV['BEAKER_HYPERVISOR'].split('_').first}"
end

group :release do
  gem 'faraday-retry', require: false
  gem 'github_changelog_generator', require: false
end

group :coverage, optional: ENV['COVERAGE'] != 'yes' do
  gem 'codecov', :require => false
  gem 'simplecov-console', :require => false
end

gem 'rdoc' if RUBY_VERSION >= '3.1'

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
beaker-6.4.1 Gemfile
beaker-6.4.0 Gemfile
beaker-6.3.0 Gemfile
beaker-6.2.0 Gemfile
beaker-6.1.0 Gemfile
beaker-5.8.1 Gemfile
beaker-5.8.0 Gemfile
beaker-5.7.0 Gemfile
beaker-5.6.0 Gemfile
beaker-5.5.0 Gemfile
beaker-5.4.0 Gemfile
beaker-5.3.1 Gemfile
beaker-5.3.0 Gemfile