-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyle-aws-role.gemspec
39 lines (32 loc) · 1.03 KB
/
yle-aws-role.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yle/aws/role/version'
Gem::Specification.new do |spec|
spec.name = 'yle-aws-role'
spec.version = Yle::AWS::Role::VERSION
spec.summary = 'Tooling to help to assume AWS IAM roles'
spec.description = spec.summary
spec.homepage = 'https://github.com/Yleisradio/yle-aws-role'
spec.license = 'MIT'
spec.authors = [
'Yleisradio',
'Teemu Matilainen',
'Antti Forsell',
]
spec.email = [
]
spec.files = Dir['bin/**/*'] +
Dir['lib/**/*.rb']
spec.bindir = 'bin'
spec.executables = ['asu']
spec.require_paths = ['lib']
spec.add_dependency 'aws-sdk-core', '~> 3.0'
spec.add_dependency 'slop', '~> 4.4'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.5'
end