forked from joekiller/jruby-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjruby-kafka.gemspec
27 lines (24 loc) · 1 KB
/
jruby-kafka.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
Gem::Specification.new do |spec|
files = []
dirs = %w{ lib }
dirs.each do |dir|
files += Dir["#{dir}/**/*"]
end
spec.name = "jruby-kafka"
spec.version = "0.0.10"
spec.authors = ["Joseph Lawson"]
spec.email = ["joe@joekiller.com"]
spec.description = "primarily to take advantage of consumer groups"
spec.summary = "jruby Kafka wrapper"
spec.homepage = "https://github.com/joekiller/jruby-kafka"
spec.license = "Apache 2.0"
spec.files = files
spec.require_paths << "lib"
spec.requirements << "jar 'org.slf4j:slf4j-api', '1.6.4'"
spec.requirements << "jar 'com.github.sgroschupf:zkclient', '0.1'"
spec.requirements << "jar 'org.apache.zookeeper:zookeeper', '3.3.4'"
spec.requirements << "jar 'log4j:log4j', '1.2.17'"
spec.requirements << "jar 'org.scala-lang:scala-library', '2.8.0'"
spec.requirements << "jar 'net.sf.jopt-simple:jopt-simple', '3.2'"
spec.requirements << "jar 'com.visiblemeasures.kafka:kafka', '0.7.2'"
end