-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathaws_account_utils.gemspec
31 lines (26 loc) · 1.39 KB
/
aws_account_utils.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'aws_account_utils/version'
Gem::Specification.new do |spec|
spec.name = "aws_account_utils"
spec.version = AwsAccountUtils::VERSION
spec.authors = ["keviny22"]
spec.email = ["[email protected]"]
spec.summary = %q{A set of helper methods for configuring aspects of AWS that do not have an API.}
spec.description = %q{A set of helper methods that are webdriven.}
spec.homepage = "https://github.com/intuit/aws_account_utils"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '~> 2.2'
spec.add_development_dependency 'bundler', '>= 1.6.5'
spec.add_development_dependency 'webmock', '~> 1.21', '>= 1.21.0'
spec.add_development_dependency 'guard-rspec', '~> 4.3', '>= 4.3.1'
spec.add_development_dependency 'simplecov', '~> 0.8', '>= 0.8.2'
spec.add_development_dependency 'fakefs', '~> 0.6', '>= 0.6.7'
spec.add_runtime_dependency 'rake', '~> 10.3.2', '~> 10.0'
spec.add_runtime_dependency 'watir-webdriver', '~> 0.9', '>= 0.9.1'
spec.add_runtime_dependency 'random-word', '~> 1.3', '>= 1.3.0'
end