Sha256: f89cfc9edb27f807f4b65f4b080e19a4759e0b3d08f9a0d8c0a224e9f2cdd471
Contents?: true
Size: 932 Bytes
Versions: 1
Compression:
Stored size: 932 Bytes
Contents
# encoding: utf-8 $:.push File.expand_path('../lib', __FILE__) Gem::Specification.new do |gem| gem.name = "fluent-plugin-http-puma" gem.description = "Puma based HTTP(S) plugin for Fluentd" gem.homepage = "https://github.com/repeatedly/fluent-plugin-http-puma" 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.license = 'Apache License (2.0)' 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.50" gem.add_dependency "puma", "~> 2.9.0" gem.add_development_dependency "rake", ">= 0.9.2" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-http-puma-0.0.1 | fluent-plugin-http-puma.gemspec |