-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
35 lines (27 loc) · 834 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
# vim: set ts=2 sw=2 ai et syntax=ruby:
source 'https://rubygems.org'
if ENV.key?('PUPPET_VERSION')
puppet_version = "= #{ENV['PUPPET_VERSION']}"
else
puppet_version = ['>= 2.7']
end
# https://github.com/jimweirich/rake
gem 'rake', '~> 10.0'
# https://github.com/rspec/rspec
# https://www.relishapp.com/rspec/rspec-core/v/2-0/docs
gem 'rspec'
gem 'rspec-core'
gem 'rspec-expectations'
gem 'rspec-mocks'
gem 'minitest', '~> 5.0.0'
# https://github.com/freerange/mocha#bundler
gem 'mocha', :require => false
# https://github.com/puppetlabs/puppet
gem 'puppet', puppet_version
# https://github.com/jumanjiman/jumanjiman_spec_helper
gem 'jumanjiman_spec_helper'
# https://github.com/travis-ci/travis
gem 'travis'
# http://about.travis-ci.org/docs/user/travis-lint/
# https://github.com/travis-ci/travis-lint
gem 'travis-lint'