forked from puppetlabs-toy-chest/puppetlabs-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
44 lines (38 loc) · 1.02 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
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.0.5'
gem 'retries'
group :test do
gem 'rake'
gem 'puppet', *location_for(ENV['PUPPET_LOCATION'] || '~> 3.7.0')
gem 'puppetlabs_spec_helper'
gem 'webmock'
gem 'vcr'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'metadata-json-lint'
gem 'beaker-rspec'
gem 'beaker-puppet_install_helper'
end
group :development do
gem 'travis'
gem 'travis-lint'
gem 'puppet-blacksmith'
gem 'guard-rake'
gem 'rubocop', require: false
gem 'pry'
gem 'librarian-puppet'
end
group :acceptance do
gem 'mustache', '0.99.8'
end
if File.exists? "#{__FILE__}.local"
eval(File.read("#{__FILE__}.local"), binding)
end