Sha256: 95a5b33a0c5e7cd454edf13845bc1f0b517ad1e1763df8ff904d4f1799354840

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name    = "fluent-plugin-cassandra-json"
  spec.version = "0.1.2"
  spec.authors = ["joker1007"]
  spec.email   = ["kakyoin.hierophant@gmail.com"]

  spec.summary       = %q{Insert data to cassandra plugin for fluentd (Use INSERT JSON).}
  spec.description   = %q{Insert data to cassandra plugin for fluentd (Use INSERT JSON).}
  spec.homepage      = "https://github.com/joker1007/fluent-plugin-cassandra-json"
  spec.license       = "Apache-2.0"

  test_files, files  = `git ls-files -z`.split("\x0").partition do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.files         = files
  spec.executables   = files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = test_files
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 12.0"
  spec.add_development_dependency "test-unit", "~> 3.0"
  spec.add_runtime_dependency "fluentd", [">= 0.14.10", "< 2"]
  spec.add_runtime_dependency "cassandra-driver", ">= 3"
  spec.add_runtime_dependency "oj"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-cassandra-json-0.1.2 fluent-plugin-cassandra-json.gemspec