forked from voxpupuli/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beaker.gemspec
60 lines (52 loc) · 2.38 KB
/
beaker.gemspec
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
52
53
54
55
56
57
58
59
60
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'beaker/version'
Gem::Specification.new do |s|
s.name = "beaker"
s.version = Beaker::Version::STRING
s.authors = ["Puppetlabs"]
s.email = ["delivery@puppetlabs.com"]
s.homepage = "https://github.com/puppetlabs/beaker"
s.summary = %q{Let's test Puppet!}
s.description = %q{Puppetlabs accceptance testing harness}
s.license = 'Apache2'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# Testing dependencies
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-its'
s.add_development_dependency 'fakefs', '~> 0.6'
s.add_development_dependency 'rake', '~> 10.1'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'pry', '~> 0.10'
# Documentation dependencies
s.add_development_dependency 'yard'
s.add_development_dependency 'markdown'
s.add_development_dependency 'thin'
# Run time dependencies
s.add_runtime_dependency 'minitest', '~> 5.4'
s.add_runtime_dependency 'json', '~> 1.8'
s.add_runtime_dependency 'hocon', '~> 0.1'
s.add_runtime_dependency 'net-ssh', '~> 2.9'
s.add_runtime_dependency 'net-scp', '~> 1.2'
s.add_runtime_dependency 'inifile', '~> 2.0'
s.add_runtime_dependency 'rsync', '~> 1.0.9'
s.add_runtime_dependency 'open_uri_redirections', '~> 0.2.1'
# Run time dependencies that are Beaker libraries
s.add_runtime_dependency 'beaker-answers', '~> 0.0'
s.add_runtime_dependency 'stringify-hash', '~> 0.0'
s.add_runtime_dependency 'beaker-hiera', '~> 0.0'
# Optional provisioner specific support
s.add_runtime_dependency 'rbvmomi', '~> 1.8'
s.add_runtime_dependency 'fission', '~> 0.4'
s.add_runtime_dependency 'google-api-client', '~> 0.8'
s.add_runtime_dependency 'aws-sdk', '~> 1.57'
s.add_runtime_dependency 'docker-api'
s.add_runtime_dependency 'mime-types', '~> 2.99' if RUBY_VERSION < '2.0' # dropped ruby 1.9 rupport in 3.0
s.add_runtime_dependency 'fog-google', '~> 0.0.9' # dropped ruby 1.9 support in 0.1
s.add_runtime_dependency 'fog', ['~> 1.25', '< 1.35.0']
# So fog doesn't always complain of unmet AWS dependencies
s.add_runtime_dependency 'unf', '~> 0.1'
end