-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
30 lines (27 loc) · 938 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
29
30
source "https://rubygems.org"
group :test do
gem "rake"
gem "semantic_puppet"
gem "puppet", ENV['PUPPET_GEM_VERSION'] || '~> 4.5'
gem "rspec", '~> 3.4.0'
gem "rspec-puppet", :git => 'https://github.com/rodjek/rspec-puppet.git'
gem "puppetlabs_spec_helper", '~> 2.1.0'
gem "metadata-json-lint"
gem "rspec-puppet-facts"
gem 'rubocop', '0.40.0'
gem 'simplecov', '>= 0.11.0'
gem 'simplecov-console'
gem 'puppet-lint', '>= 2.0.0'
gem 'puppet-syntax', '~> 2.4.0'
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.1.8'
gem 'beaker-rspec' if RUBY_VERSION >= '2.1.8'
end