forked from alphagov/ci-puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
23 lines (19 loc) · 805 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'
# Versions can be overridden with environment variables for matrix testing.
# Travis will remove Gemfile.lock before installing deps. As such, it is
# advisable to pin major versions in this Gemfile.
# Puppet core.
gem 'puppet', ENV['PUPPET_VERSION'] || '= 3.7.1'
gem 'facter', ENV['FACTER_VERSION'] || '= 2.2.0'
# Dependency management.
gem "librarian-puppet", '~> 2.0'
# Testing utilities.
gem 'rake'
gem 'puppet-syntax'
gem 'puppet-lint', :github => 'rodjek/puppet-lint', :ref => '2546fe'
gem 'puppet-lint-trailing_comma-check', :require => false
gem 'rspec-puppet', '~> 0.1.0'
gem 'puppetlabs_spec_helper', '~> 0.4.0'
gem 'hiera-puppet-helper', :git => 'git://github.com/bobtfish/hiera-puppet-helper.git'
gem "parallel_tests", "~> 0.16.10"
gem "parallel", "~> 1.0.0"