-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconstancy.gemspec
33 lines (28 loc) · 908 Bytes
/
constancy.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
require_relative 'lib/constancy/version.rb'
Gem::Specification.new do |s|
s.name = 'constancy'
s.version = Constancy::VERSION
s.authors = ['David Adams']
s.email = '[email protected]'
s.date = Time.now.strftime('%Y-%m-%d')
s.license = 'CC0'
s.homepage = 'https://github.com/daveadams/constancy'
s.required_ruby_version = '>=2.4.0'
s.summary = 'Simple filesystem-to-Consul KV synchronization'
s.description =
'Syncs content from the filesystem to the Consul KV store.'
s.require_paths = ['lib']
s.files = Dir["lib/**/*.rb"] + [
'bin/constancy',
'README.md',
'LICENSE',
'constancy.gemspec'
]
s.bindir = 'bin'
s.executables = ['constancy']
s.add_dependency 'imperium', '~>0.3'
s.add_dependency 'diffy', '~>3.2'
s.add_dependency 'vault', '~>0.12'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rake', '~> 12.0'
end