Sha256: ef1fa078a4d7f0151e1b4c5c4162df47c18a32e0aa6039590fc91aff60a02b91

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "fluent-plugin-gelf-hs"
  s.version   = ENV.key?('RUBYGEM_VERSION') ? ENV['RUBYGEM_VERSION'] : '1.0.3'
  s.authors     = ["Alex Yamauchi", "Eric Searcy"]
  s.email       = ["oss@hotschedules.com"]
  s.homepage    = "https://github.com/bodhi-space/fluent-plugin-gelf-hs"
  s.summary     = "Buffered fluentd output plugin to GELF (Graylog2)"
  # When building gems, there is always a stupid warning message thrown
  # if the summary and description are identical.
  s.description = s.summary + '.'
  s.licenses    = ["Apache-2.0"]

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_runtime_dependency "fluentd"
  s.add_runtime_dependency "gelf", ">= 2.0.0"

  s.signing_key = File.expand_path( ENV.key?('RUBYGEM_SIGNING_KEY') ? ENV['RUBYGEM_SIGNING_KEY'] : '~/certs/oss@hotschedules.com.key' ) if $0 =~ /\bgem[\.0-9]*\z/
  s.cert_chain    = %w[certs/oss@hotschedules.com.cert]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fluent-plugin-gelf-hs-1.0.7 fluent-plugin-gelf-hs.gemspec
fluent-plugin-gelf-hs-1.0.6 fluent-plugin-gelf-hs.gemspec
fluent-plugin-gelf-hs-1.0.5 fluent-plugin-gelf-hs.gemspec
fluent-plugin-gelf-hs-1.0.4 fluent-plugin-gelf-hs.gemspec
fluent-plugin-gelf-hs-1.0.3 fluent-plugin-gelf-hs.gemspec