forked from criteo/consul-templaterb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
consul-templaterb.gemspec
42 lines (36 loc) · 2.07 KB
/
consul-templaterb.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'consul/async/version'
Gem::Specification.new do |spec|
spec.name = 'consul-templaterb'
spec.version = Consul::Async::VERSION
spec.authors = ['SRE Core Services']
spec.email = ['sre-core-services@criteo.com']
spec.summary = 'Implementation of Consul template using Ruby and .erb templating language'
spec.homepage = 'https://rubygems.org/gems/consul-templaterb'
spec.description = 'A ruby implementation of Consul Template with support of erb templating ' \
'with hi-performance on large clusters and advanced process management features.'
spec.metadata = { 'bug_tracker_uri' => 'https://github.com/criteo/consul-templaterb/issues',
'changelog_uri' => 'https://github.com/criteo/consul-templaterb/blob/master/CHANGELOG.md',
'homepage_uri' => 'https://github.com/criteo/consul-templaterb',
'source_code_uri' => 'https://github.com/criteo/consul-templaterb' }
spec.license = 'Apache-2.0'
spec.files = `git ls-files -z lib/ bin/ samples/`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features|docs)/})
end
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.extra_rdoc_files = ['README.md', 'CHANGELOG.md', 'TemplateAPI.md']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.4.0'
spec.add_runtime_dependency 'em-http-request', '~> 1.1'
spec.add_runtime_dependency 'eventmachine', '~> 1.2'
spec.add_runtime_dependency 'parallel', '~> 1.2'
spec.add_development_dependency 'bundler', '>= 1.14'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rspec_junit_formatter', '~> 0.4.1'
spec.add_development_dependency 'rubocop', '~> 0.80.0'
spec.add_development_dependency 'rubocop-junit-formatter', '0.1.4'
spec.add_development_dependency 'webmock', '~> 2.1'
end