fluent-plugin-flume.gemspec in fluent-plugin-flume-0.1.1 vs fluent-plugin-flume.gemspec in fluent-plugin-flume-0.1.2

- old
+ new

@@ -1,56 +1,24 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' -# -*- encoding: utf-8 -*- +$:.push File.expand_path('../lib', __FILE__) Gem::Specification.new do |s| - s.name = "fluent-plugin-flume" - s.version = "0.1.1" + s.name = 'fluent-plugin-flume' + s.version = File.read("VERSION").strip + s.authors = ["Muga Nishizawa"] + s.email = ["muga.nishizawa@gmail.com"] + s.description = "Flume Input/Output plugin for Fluentd event collector" + s.summary = s.description + s.homepage = 'https://github.com/fluent/fluent-plugin-flume' + s.license = 'MIT' + s.has_rdoc = false - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Muga Nishizawa"] - s.date = "2012-05-20" - s.email = "muga.nishizawa@gmail.com" - s.executables = ["fluent-flume-remote"] - s.extra_rdoc_files = [ - "ChangeLog", - "README.rdoc" - ] - s.files = [ - "AUTHORS", - "Rakefile", - "VERSION", - "bin/fluent-flume-remote", - "fluent-plugin-flume.gemspec", - "lib/fluent/plugin/in_flume.rb", - "lib/fluent/plugin/out_flume.rb", - "lib/fluent/plugin/thrift/flume.thrift", - "lib/fluent/plugin/thrift/flume.thrift.orig", - "lib/fluent/plugin/thrift/flume_constants.rb", - "lib/fluent/plugin/thrift/flume_types.rb", - "lib/fluent/plugin/thrift/thrift_flume_event_server.rb", - "test/plugin/test_in_flume.rb", - "test/plugin/test_out_flume.rb" - ] - s.homepage = "https://github.com/muga/fluent-plugin-flume" - s.require_paths = ["lib"] - s.rubygems_version = "1.8.15" - s.summary = "Flume Input/Output plugin for Fluentd event collector" - s.test_files = ["test/plugin/test_in_flume.rb", "test/plugin/test_out_flume.rb"] + s.files = `git ls-files`.split($/) + s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } + s.test_files = s.files.grep(%r{^(test|spec|features)/}) + s.require_paths = ['lib'] - if s.respond_to? :specification_version then - s.specification_version = 3 + s.add_runtime_dependency 'fluentd', '>= 0.10.43' + s.add_runtime_dependency 'thrift', '~> 0.9.0' - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<fluentd>, ["~> 0.10.16"]) - s.add_runtime_dependency(%q<thrift>, ["~> 0.8.0"]) - else - s.add_dependency(%q<fluentd>, ["~> 0.10.16"]) - s.add_dependency(%q<thrift>, ["~> 0.8.0"]) - end - else - s.add_dependency(%q<fluentd>, ["~> 0.10.16"]) - s.add_dependency(%q<thrift>, ["~> 0.8.0"]) - end + s.add_development_dependency 'rake', '>= 0.9.2' + s.add_development_dependency 'test-unit', '~> 3.1.0' end -