Sha256: bf855231eac950bd740f346cbd42a68732fcb09b15b3e0e28b143c2e61a786d8
Contents?: true
Size: 766 Bytes
Versions: 22
Compression:
Stored size: 766 Bytes
Contents
source 'https://rubygems.org' # Specify the global dependencies in puppetlabs_spec_helper.gemspec # Note that only ruby 1.9 compatible dependencies may go there, everything else needs to be documented and pulled in manually, and optionally by everyone who wants to use the extended features. gemspec group :development do gem "puppet", ENV['PUPPET_GEM_VERSION'] || ENV['PUPPET_VERSION'] || '~> 4.0' if RUBY_VERSION =~ /^1\./ gem 'rubocop', '0.41.2' else gem 'rubocop' gem 'rubocop-rspec', '~> 1.6' if RUBY_VERSION >= '2.3.0' end end # json_pure 2.0.2 added a requirement on ruby >= 2. We pin to json_pure 2.0.1 # if using ruby 1.x gem 'json_pure', '<=2.0.1', :require => false if RUBY_VERSION =~ /^1\./ gem 'rack', '~> 1' # vim:filetype=ruby
Version data entries
22 entries across 22 versions & 1 rubygems
Version | Path |
---|---|
puppetlabs_spec_helper-1.2.2 | Gemfile |
puppetlabs_spec_helper-1.2.1 | Gemfile |