forked from basho-labs/puppet-riak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
29 lines (27 loc) · 1014 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
#ruby=1.8.7
#ruby-gemset=puppet-riak
# this Gemfile is for the development of the module, you don't need all of these to RUN the module with puppet
source 'https://rubygems.org'
gem 'mocha'
gem 'puppet'
gem 'puppet-lint'
gem 'hiera' #, :git => 'git://github.com/puppetlabs/hiera.git' <- not working
gem 'hiera-puppet'
gem 'rspec'
gem 'rspec-puppet'
gem 'rspec-hiera-puppet' # for unit-testing using hiera data
gem 'puppetlabs_spec_helper'
group :testing do
gem 'guard' # for running specs easily
gem 'libnotify' #requires: 'sudo apt-get install libnotify-bin'
# for running 'rake vagrant:provision' when editing
gem 'guard-rake', :git => 'git://github.com/joergschiller/guard-rake.git'
gem 'guard-rspec' # for running specs automatically
gem 'guard-puppet-lint'
end
group :integration do
gem 'vagrant'
gem 'vagrant-vbguest'
# gem 'vagrant-hiera', :path => File.join(File.expand_path('.'), '..', 'vagrant-hiera')
# gem 'vagrant-hiera', :git => 'git://github.com/gposton/vagrant-hiera.git'
end