-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbeaker-aws.gemspec
36 lines (30 loc) · 1.34 KB
/
beaker-aws.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require 'beaker-aws/version'
Gem::Specification.new do |s|
s.name = "beaker-aws"
s.version = BeakerAws::VERSION
s.authors = ["Rishi Javia, Kevin Imber, Tony Vu"]
s.homepage = "https://github.com/puppetlabs/beaker-aws"
s.summary = %q{Beaker DSL Extension Helpers!}
s.description = %q{For use for the Beaker acceptance testing tool}
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', '~> 1.3', '<= 1.4.2'
s.add_development_dependency 'rake', '~> 13.0'
# Documentation dependencies
s.add_development_dependency 'yard'
s.add_development_dependency 'markdown'
s.add_development_dependency 'thin'
# Run time dependencies
s.add_runtime_dependency 'stringify-hash', '~> 0.0.0'
s.add_runtime_dependency 'aws-sdk-ec2', '~> 1.35'
s.add_runtime_dependency 'aws-partitions', '~> 1.91'
end