-
Notifications
You must be signed in to change notification settings - Fork 0
/
consul_watcher.gemspec
31 lines (27 loc) · 1.1 KB
/
consul_watcher.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
# frozen_string_literal: true
lib = File.expand_path('lib', '..')
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'consul_watcher'
spec.version = IO.read('VERSION').chomp
spec.authors = ['Ryan Fortman']
spec.email = ['[email protected]']
spec.summary = 'Send consul watch events to an amqp.'
spec.homepage = 'https://github.com/fortman/consul_watcher'
spec.metadata = {
'docker_image_name' => 'rfortman/consul_watcher'
}
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_dependency 'flazm_ruby_helpers', '~> 0.0.1'
spec.add_runtime_dependency 'bunny', '~> 1.7.0'
spec.add_runtime_dependency 'diplomat', '~> 2.2.4'
spec.add_runtime_dependency 'hashdiff', '= 0.3.9'
spec.add_runtime_dependency 'slop', '~> 4.6'
end