-
Notifications
You must be signed in to change notification settings - Fork 1
/
yle_tf.gemspec
43 lines (35 loc) · 1.19 KB
/
yle_tf.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yle_tf/version'
Gem::Specification.new do |spec|
spec.name = 'yle_tf'
spec.version = YleTf::VERSION
spec.summary = 'Tooling for Terraform'
spec.description = 'Tooling for Terraform to support environments, hooks, etc.'
spec.homepage = 'https://github.com/Yleisradio/yle_tf'
spec.license = 'MIT'
spec.authors = [
'Yleisradio',
'Teemu Matilainen',
'Antti Forsell',
]
spec.email = [
]
spec.files = Dir['bin/**/*'] +
Dir['lib/**/*.rb'] +
Dir['vendor/**/*']
spec.bindir = 'bin'
spec.executables = ['tf']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_runtime_dependency 'thwait', '~> 0.2.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'guard-rspec', '~> 4.7'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'serverspec', '~> 2.41'
end