forked from walkamongus/centrify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
28 lines (25 loc) · 924 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
24
25
26
27
28
source 'https://rubygems.org'
group :test do
gem 'rake'
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 4.0'
gem 'rspec', '~> 3.5.0'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'puppetlabs_spec_helper', '>= 1.2.1'
gem 'metadata-json-lint'
gem 'rspec-puppet-facts'
gem 'simplecov', '>= 0.11.0'
gem 'rubocop', '0.40.0'
gem 'puppet-lint', '~> 2.0'
gem 'puppet-syntax', :git => 'https://github.com/voxpupuli/puppet-syntax'
gem 'json_pure', '<= 2.0.1' if RUBY_VERSION < '2.0.0'
end
group :development do
gem "travis" if RUBY_VERSION >= '2.1.0'
gem "travis-lint" if RUBY_VERSION >= '2.1.0'
gem "guard-rake" if RUBY_VERSION >= '2.2.5' # per dependency https://rubygems.org/gems/ruby_dep
gem "puppet-blacksmith"
end
group :system_tests do
gem 'beaker' if RUBY_VERSION >= '2.2.5'
gem 'beaker-rspec' if RUBY_VERSION >= '2.2.5'
end