Sha256: d00b033bd547ed94fdad466342a2b586e9ce3d00b3bab1da2a50a4f337113e26

Contents?: true

Size: 990 Bytes

Versions: 14

Compression:

Stored size: 990 Bytes

Contents

# frozen_string_literal: true

require 'rubygems'
require 'rubygems/package_task'
require 'rdoc/task'
require 'find'

# Don't include resource forks in tarballs on Mac OS X.
ENV['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
ENV['COPYFILE_DISABLE'] = 'true'

# Gemspec
gemspec = Gem::Specification.new do |s|
  s.name = 'riemann-chronos'
  s.version = '0.1.3'
  s.author = 'Peter Ericson'
  s.email = 'peter.ericson@cba.com.au'
  s.homepage = 'https://github.com/riemann/riemann-tools'
  s.platform = Gem::Platform::RUBY
  s.summary = 'Submits Chronos stats to riemann.'
  s.license = 'MIT'

  s.add_runtime_dependency 'riemann-tools', '~> 1.0', '>= 1.1.1'
  s.add_runtime_dependency 'faraday', '~> 2.3', '>= 2.3.0'
  s.add_runtime_dependency 'json', '~> 2.6', '>=2.6.2'

  s.files = FileList['bin/*', 'lib/**/*.rb', 'LICENSE', 'README.md'].to_a
  s.executables |= Dir.entries('bin/')

  s.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
end

Gem::PackageTask.new gemspec do |p|
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
riemann-tools-1.11.0 tools/riemann-chronos/Rakefile
riemann-tools-1.10.0 tools/riemann-chronos/Rakefile
riemann-tools-1.9.1 tools/riemann-chronos/Rakefile
riemann-tools-1.9.0 tools/riemann-chronos/Rakefile
riemann-tools-1.8.2 tools/riemann-chronos/Rakefile
riemann-tools-1.8.1 tools/riemann-chronos/Rakefile
riemann-tools-1.8.0 tools/riemann-chronos/Rakefile
riemann-tools-1.7.1 tools/riemann-chronos/Rakefile
riemann-tools-1.7.0 tools/riemann-chronos/Rakefile
riemann-tools-1.6.0 tools/riemann-chronos/Rakefile
riemann-tools-1.5.0 tools/riemann-chronos/Rakefile
riemann-tools-1.4.0 tools/riemann-chronos/Rakefile
riemann-tools-1.3.0 tools/riemann-chronos/Rakefile
riemann-tools-1.2.0 tools/riemann-chronos/Rakefile