forked from voxpupuli/puppet-wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
35 lines (30 loc) · 889 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
31
32
33
34
35
source 'https://rubygems.org'
puppetversion = ENV.key?('PUPPET_VERSION') ? "= #{ENV['PUPPET_VERSION']}" : ['= 4.8.2']
gem 'coveralls', :require => false
gem 'simplecov', :require => false
gem 'simplecov-console'
gem 'puppet-lint'
gem 'puppet', puppetversion
gem 'rspec', '>= 3.4.4'
gem 'rspec-system-puppet'
gem 'puppetlabs_spec_helper'
gem 'puppet-syntax'
gem 'facter', '>= 1.6.10'
gem 'rubocop', require: false
gem 'rubocop-rspec', '1.5.0'
gem 'puppet-blacksmith'
gem 'metadata-json-lint', '>= 0.0.11'
gem 'google-api-client', '>= 0.9'
gem 'activesupport', '4.2.7.1'
gem 'puppet-strings'
gem 'pry-byebug'
gem 'semantic_puppet'
gem 'rspec-puppet', '~> 2.5.0'
group :acceptance do
gem 'fog', '>= 1.25.0'
gem 'beaker', '3.31.0' if RUBY_VERSION >= '2.3.0'
gem 'beaker-puppet_install_helper'
gem 'beaker-rspec'
gem 'serverspec', '>= 2.0.0'
gem 'beaker-testmode_switcher'
end