forked from airbnb/kafkat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kafkat.gemspec
34 lines (30 loc) · 1.41 KB
/
kafkat.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
# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)
require 'kafkat/version'
Gem::Specification.new do |s|
s.name = 'kafkat-onfocusio'
s.version = Kafkat::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Nelson Gauthier", "Nicolas Fouché", "Alexandre Fouché"]
s.email = ['nelson@airbnb.com', "nfouche@onfocus.io", "afouche@onfocus.io"]
s.homepage = 'https://github.com/onfocusio/kafkat'
s.summary = "Simplified command-line administration for Kafka brokers"
s.description = s.summary
s.license = 'Apache-v2'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename f }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_path = 'lib'
s.add_runtime_dependency 'zk', '~> 1.9', '>= 1.9.4'
s.add_runtime_dependency 'trollop', '~> 2.0'
s.add_runtime_dependency 'highline', '~> 1.6', '>= 1.6.21'
s.add_runtime_dependency 'retryable', '~> 1.3', '>= 1.3.5'
s.add_runtime_dependency 'colored', '~> 1.2'
s.add_runtime_dependency 'json', '~> 1.8'
s.add_development_dependency "activesupport", ">= 2", "< 5"
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov', '~> 0.11.0'
s.add_development_dependency 'rspec', '~> 3.2.0'
s.add_development_dependency 'rspec-collection_matchers', '~> 1.1.0'
s.add_development_dependency 'factory_girl', '~> 4.5.0'
end