Sha256: 26285fb215a9f306b591e9ef15cc71b425fe7fee1c075c950dab834de9bff050
Contents?: true
Size: 751 Bytes
Versions: 13
Compression:
Stored size: 751 Bytes
Contents
source ENV['GEM_SOURCE'] || "https://rubygems.org" gemspec def location_for(place, fake_version = nil) if place =~ /^(git:[^#]*)#(.*)/ [fake_version, { :git => $1, :branch => $2, :require => false }].compact elsif place =~ /^file:\/\/(.*)/ ['>= 0', { :path => File.expand_path($1), :require => false }] else [place, { :require => false }] end end group :test do gem "beaker", *location_for(ENV['BEAKER_VERSION'] || ['>= 4.30.0', '< 5.0.0']) gem "beaker-abs", *location_for(ENV['ABS_VERSION'] || '~> 0.4.0') 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
Version data entries
13 entries across 13 versions & 1 rubygems