Sha256: 93ac41fd1ad5acc9e44a29b4a665fcfda87c145e5eb858665337d6746a21e660

Contents?: true

Size: 1.59 KB

Versions: 1

Compression:

Stored size: 1.59 KB

Contents

source "https://rubygems.org"

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

# Specify your gem's dependencies in puppet-resource_api.gemspec
gemspec

group :tests do
  gem 'codecov'
  # license_finder does not install on windows using older versions of rubygems.
  # ruby 2.4 is confirmed working on appveyor.
  gem 'license_finder' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.4.0')
  gem 'rake', '~> 10.0'
  gem 'rspec', '~> 3.0'
  gem 'rubocop-rspec'
  # rubocop 0.58 throws when testing against ruby 2.1, so pin to the latest,
  # unless we're dealing with jruby...
  if RUBY_PLATFORM == 'java'
    gem 'rubocop'
  else
    gem 'rubocop', '0.57.2'
  end
  gem 'simplecov-console'
  # the test gems required for module testing
  gem 'puppetlabs_spec_helper', '~> 2.7'
  gem 'rspec-puppet'
end

group :development do
  gem 'github_changelog_generator', '~> 1.14'
  gem 'pry-byebug'
end

# Find a location or specific version for a gem. place_or_version can be a
# version, which is most often used. It can also be git, which is specified as
# `git://somewhere.git#branch`. You can also use a file source location, which
# is specified as `file://some/location/on/disk`.
def location_for(place_or_version, fake_version = nil)
  if place_or_version =~ /^((?:git|https)[:@][^#]*)#(.*)/
    [fake_version, { :git => $1, :branch => $2, :require => false }].compact
  elsif place_or_version =~ /^file:\/\/(.*)/
    ['>= 0', { :path => File.expand_path($1), :require => false }]
  else
    [place_or_version, { :require => false }]
  end
end

gem 'puppet', *location_for(ENV['PUPPET_GEM_VERSION'])

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet-resource_api-1.5.0 Gemfile