forked from puppetlabs-toy-chest/puppetlabs-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
50 lines (44 loc) · 1.28 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
45
46
47
48
49
50
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
def location_for(place, fake_version = nil)
if place =~ /^(git:[^#]*)#(.*)/
[fake_version, { :git => $1, :branch => $2, :require => false }].compact
elsif place =~ /^file:\/\/(.*)/
['>= 0', { :path => File.expand_path($1), :require => false }]
else
[place, { :require => false }]
end
end
gem 'aws-sdk-core', '2.3.22'
gem 'retries'
group :test do
gem 'rake'
gem 'puppet', *location_for(ENV['PUPPET_LOCATION'] || ENV['PUPPET_GEM_VERSION'])
gem 'puppetlabs_spec_helper'
gem 'webmock'
gem 'vcr'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'metadata-json-lint'
gem 'json_pure', '~>1.0' if RUBY_VERSION == '1.9.3'
end
group :development do
gem 'travis'
gem 'travis-lint'
gem 'puppet-blacksmith'
gem 'guard-rake'
gem 'listen', '= 3.0.7' # last version to support ruby 1.9; the proper fix would be to not install the development group in our internal CI
if RUBY_VERSION =~ /^1\./
gem 'rubocop', '0.41.2'
else
gem 'rubocop'
end
gem 'pry'
gem 'librarian-puppet'
end
group :acceptance do
gem 'mustache', '0.99.8'
gem 'beaker-rspec'
gem 'beaker-puppet_install_helper'
end
if File.exists? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end