Sha256: 0a74961680ba9de0dc297f695883d7ab83fbce4d2212f2a1dcdce26b2fdbbf8b

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name          = 'fluent-plugin-sakuraio'
  spec.version       = '0.1.3'
  spec.authors       = ['Yuya Kusakabe']
  spec.email         = ['yuya.kusakabe@gmail.com']

  spec.summary       = 'fluentd plugin for sakura.io'
  spec.description   = 'fluentd plugin for sakura.io'
  spec.homepage      = 'https://github.com/sakuraio/fluent-plugin-sakuraio'
  spec.license       = 'MIT'

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

  spec.required_ruby_version = '>= 2.3'

  spec.add_runtime_dependency 'eventmachine'
  spec.add_runtime_dependency 'faye-websocket'
  spec.add_runtime_dependency 'fluentd', '>= 0.14', '< 2'
  spec.add_runtime_dependency 'yajl-ruby'
  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rack'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rubocop'
  spec.add_development_dependency 'rubocop-performance'
  spec.add_development_dependency 'test-unit'
  spec.add_development_dependency 'thin'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fluent-plugin-sakuraio-0.1.3 fluent-plugin-sakuraio.gemspec