hermann/hermann.gemspec

28 lines
850 B
Ruby
Raw Normal View History

$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + '/lib'))
require 'hermann/version'
SPEC = Gem::Specification.new do |s|
s.name = "hermann"
s.version = Hermann::VERSION
s.authors = ["Stan Campbell", 'R. Tyler Croy']
s.description = 'Ruby gem wrapper for librdkafka'
s.summary = 'A Kafka consumer/producer gem based on the librdkafka C library.'
s.email = ['stan.campbell3@gmail.com', 'rtyler.croy@lookout.com']
s.homepage = 'https://github.com/lookout/Hermann'
2014-07-25 19:50:20 +00:00
s.licenses = ['MIT']
s.files = [ "Rakefile"]
s.files += `git ls-files -- lib`.split($\)
s.files += `git ls-files -- ext`.split($\)
s.extensions = Dir['ext/**/extconf.rb']
s.require_paths = ["lib", "ext/hermann"]
s.rubygems_version = '2.2.2'
2014-08-18 18:31:26 +00:00
s.specification_version = 3 if s.respond_to?(:specification_version)
2014-07-22 18:37:41 +00:00
end