-
Notifications
You must be signed in to change notification settings - Fork 11
/
tfctl.gemspec
39 lines (34 loc) · 1.48 KB
/
tfctl.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
# frozen_string_literal: true
$LOAD_PATH << File.expand_path('lib', __dir__)
require 'tfctl/version'
Gem::Specification.new do |spec|
spec.name = 'tfctl'
spec.version = Tfctl::VERSION
spec.authors = [
'Andrew Wasilczuk',
]
spec.email = [
]
spec.summary = 'Terraform wrapper for managing multi-account AWS infrastructures'
spec.homepage = 'https://github.com/scalefactory/tfctl'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/tfctl}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5.0'
# Think when adding new dependencies. Is it really necessary?
# "The things you own end up owning you" etc.
spec.add_dependency 'aws-sdk-organizations', '~> 1.40'
spec.add_dependency 'json_schemer', '>= 0.2', '< 3.0'
spec.add_dependency 'parallel', '~> 1.19'
spec.add_dependency 'terminal-table', '>= 1.8', '< 4.0'
spec.add_development_dependency 'guard-rspec', '~> 4.7'
spec.add_development_dependency 'rspec', '~> 3.9'
spec.add_development_dependency 'rubocop', '~> 1.3'
spec.add_development_dependency 'rubocop-rspec', '~> 2.2'
spec.metadata['rubygems_mfa_required'] = 'true'
end