This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Gemfile
51 lines (45 loc) · 1.44 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
51
source ENV['GEM_SOURCE'] || "https://rubygems.org"
gem 'azure', '~> 0.7.0'
gem 'azure_mgmt_storage', '~> 0.3.0'
gem 'azure_mgmt_compute', '~> 0.3.0'
gem 'azure_mgmt_resources', '~> 0.3.0'
gem 'azure_mgmt_network', '~> 0.3.0'
gem 'hocon'
gem 'retries'
group :test do
gem 'rake'
gem 'puppet', ENV['PUPPET_GEM_VERSION'] || '~> 4'
gem 'facter', '>= 2.0'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'puppetlabs_spec_helper'
gem 'metadata-json-lint'
# json_pure 2.0.2 added a requirement on ruby >= 2. We pin to json_pure 2.0.1
# if using ruby 1.x
gem 'json_pure', '<=2.0.1', :require => false if RUBY_VERSION =~ /^1\./
gem 'rubocop', '~> 0.41.0'
gem 'simplecov', '>= 0.11.0'
gem 'simplecov-console'
gem 'parallel_tests', '< 2.10.0' if RUBY_VERSION < '2.0.0'
gem 'parallel_tests' if RUBY_VERSION >= '2.0.0'
gem 'listen', '~> 3.0.0'
gem 'public_suffix', '~> 1.4.0' #used for azure, 1.5.0 dropped ruby 1.9
end
group :development do
gem 'pry'
gem 'puppet-blacksmith'
# required by puppet-blacksmith
gem 'rest-client', '~> 1.8.0' # for ruby 1.9 compatibility
gem 'guard-rake'
gem 'pry-rescue'
gem 'pry-stack_explorer'
end
group :acceptance do
gem 'winrm', '~> 1.3'
gem 'mustache'
gem 'ssh-exec'
gem "beaker-puppet_install_helper", :require => false
gem "beaker-testmode_switcher"
gem 'beaker', ENV['BEAKER_VERSION'] || '~> 2.0'
gem 'master_manipulator', '~> 1.0'
gem 'beaker-rspec'
end