forked from djjudas21/puppet-freeradius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
27 lines (24 loc) · 826 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
source "https://rubygems.org"
group :test do
gem "rake"
gem "puppet", ENV['PUPPET_VERSION'] || '~> 3.8.3'
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 'hiera-puppet-helper', :git => 'https://github.com/bobtfish/hiera-puppet-helper.git'
gem "metadata-json-lint"
gem 'puppet-syntax'
gem 'puppet-lint'
end
group :integration do
gem "beaker", :git => 'https://github.com/puppetlabs/beaker.git'
gem "beaker-rspec", :git => 'https://github.com/puppetlabs/beaker-rspec.git'
gem "vagrant-wrapper"
gem 'serverspec'
end
group :development do
gem "travis"
gem "travis-lint"
gem "puppet-blacksmith"
gem "guard-rake"
end