Sha256: cf5bdfb564ca4feb7b4cdefbcd3d4ced8f479180eabe0422250c1be4fc1b5def

Contents?: true

Size: 973 Bytes

Versions: 3

Compression:

Stored size: 973 Bytes

Contents

# encoding: utf-8
$:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |gem|
  gem.name        = "fluent-plugin-mongo"
  gem.description = "MongoDB plugin for Fluentd"
  gem.homepage    = "https://github.com/fluent/fluent-plugin-mongo"
  gem.summary     = gem.description
  gem.version     = File.read("VERSION").strip
  gem.authors     = ["Masahiro Nakagawa"]
  gem.email       = "repeatedly@gmail.com"
  gem.has_rdoc    = false
  #gem.platform    = Gem::Platform::RUBY
  gem.files       = `git ls-files`.split("\n")
  gem.test_files  = `git ls-files -- {test,spec,features}/*`.split("\n")
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  gem.require_paths = ['lib']

  gem.add_dependency "fluentd", "~> 0.10.9"
  gem.add_dependency "mongo", ">= 1.8.0"
  gem.add_development_dependency "rake", ">= 0.9.2"
  gem.add_development_dependency "simplecov", ">= 0.5.4"
  gem.add_development_dependency "rr", ">= 1.0.0"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-mongo-0.7.5 fluent-plugin-mongo.gemspec
fluent-plugin-mongo-0.7.4 fluent-plugin-mongo.gemspec
fluent-plugin-mongo-0.7.3 fluent-plugin-mongo.gemspec