hermann/hermann.gemspec

31 lines
959 B
Ruby
Raw Normal View History

SPEC = Gem::Specification.new do |s|
s.name = "hermann"
2014-07-22 18:37:41 +00:00
s.version = "0.11"
s.default_executable = "hermann"
s.authors = ["Stan Campbell"]
s.date = %q{2014-05-29}
2014-06-13 18:27:33 +00:00
s.description = %q{Ruby gem wrapper for the RdKafka C library}
s.email = %q{stan.campbell3@gmail.com}
s.files = [ "Rakefile", "ext/hermann_lib.h", "ext/hermann_lib.c", "ext/extconf.rb", "bin/hermann",
"lib/hermann.rb", "ext/hermann_lib.o"]
s.extensions = [ "ext/extconf.rb"]
s.test_files = ["test/test_hermann.rb"]
s.homepage = %q{http://rubygems.org/gems/hermann}
s.require_paths = ["lib", "ext"]
s.rubygems_version = %q{2.2.2}
s.summary = %q{The Kafka consumer is based on the librdkafka C library.}
s.platform = Gem::Platform::CURRENT
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
2014-07-22 18:37:41 +00:00
end