forked from waveclaw/puppet-subscription_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (40 loc) · 1.31 KB
/
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
36
37
38
39
40
41
42
43
44
source "https://rubygems.org"
group :test do
gem "rake"
gem "listen","2.1.0"
gem "puppet", ENV['PUPPET_VERSION'] || '~> 4.9.0'
gem "rspec-puppet", :git => 'https://github.com/rodjek/rspec-puppet.git'
gem "puppetlabs_spec_helper"
gem 'rspec-puppet-utils', :git => 'https://github.com/Accuity/rspec-puppet-utils.git'
gem 'rspec-puppet-facts', :git => 'https://github.com/mcanevet/rspec-puppet-facts.git'
gem 'hiera-puppet-helper', :git => 'https://github.com/bobtfish/hiera-puppet-helper.git'
# there seems to be a bug with puppet-blacksmith and metadata-json-lint
# removing metadata for now
gem "metadata-json-lint"
gem 'puppet-syntax'
gem 'puppet-lint'
gem 'codeclimate-test-reporter', :require => false
gem 'pry', :require => false
# beaker tests that usually end up in something like :system_tests
gem 'serverspec', :require => false
gem 'beaker-puppet_install_helper', :require => false
gem 'beaker-module_install_helper', :require => false
gem 'master_manipulator', :require => false
gem 'beaker-hostgenerator'
if RUBY_VERSION < '2.2.5'
# lock beaker version
gem 'beaker', '~> 2.0'
gem 'beaker-rspec', '~> 5.6'
# lock nokogirii
gem 'nokogiri', '1.6.8'
else
gem 'beaker-rspec'
gem 'nokogiri'
end
end
group :development do
gem "travis"
gem "travis-lint"
gem "puppet-blacksmith"
gem "guard-rake"
end