forked from computology/computology-packagecloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
41 lines (36 loc) · 870 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
36
37
38
39
40
41
source 'http://rubygems.org'
group :test do
if puppetversion = ENV['PUPPET_GEM_VERSION']
gem 'puppet', puppetversion, :require => false
else
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 3.8.0'
end
# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rspec', '~> 2.0'
end
gem 'rake'
gem 'puppet-lint'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'puppet-syntax'
gem 'puppetlabs_spec_helper'
gem 'simplecov'
gem 'metadata-json-lint'
end
group :development do
gem 'travis'
gem 'travis-lint'
gem 'puppet-blacksmith'
gem 'guard-rake'
end
group :system_tests do
gem 'librarian-puppet'
gem 'test-kitchen'
gem 'serverspec'
gem 'busser-serverspec'
gem 'busser'
gem 'psych'
gem 'kitchen-vagrant'
gem 'kitchen-puppet'
gem 'vagrant-wrapper'
end