-
Notifications
You must be signed in to change notification settings - Fork 0
/
paramsync.gemspec
32 lines (27 loc) · 940 Bytes
/
paramsync.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
require_relative 'lib/paramsync/version.rb'
Gem::Specification.new do |s|
s.name = 'paramsync'
s.version = Paramsync::VERSION
s.authors = ['David Adams', 'Jacob Burroughs']
s.email = '[email protected]'
s.date = Time.now.strftime('%Y-%m-%d')
s.license = 'CC0'
s.homepage = 'https://github.com/maths22/paramsync'
s.required_ruby_version = '>=2.4.0'
s.summary = 'Simple filesystem-to-aws parameter store synchronization'
s.description =
'Syncs content from the filesystem to the aws parameter store. Derived from constancy for consul'
s.require_paths = ['lib']
s.files = Dir["lib/**/*.rb"] + [
'bin/paramsync',
'README.md',
'LICENSE',
'paramsync.gemspec'
]
s.bindir = 'bin'
s.executables = ['paramsync']
s.add_dependency 'aws-sdk-ssm', '~> 1.89.0'
s.add_dependency 'aws-sdk-kms', '~> 1.37.0'
s.add_dependency 'diffy', '~> 3.2'
s.add_development_dependency 'rspec', '~> 3.0'
end