Sha256: 74a4250bb2756e13e1a07b4a29e0f37a9bc8caee17e2224dd61468bbe264725f

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

require 'rubygems'
require 'rbconfig'

Gem::Specification.new do |gem|
  gem.name       = 'linux-kstat'
  gem.version    = '0.2.1'
  gem.license    = 'Apache-2.0'
  gem.author     = 'Daniel J. Berger'
  gem.email      = 'djberg96@gmail.com'
  gem.platform   = Gem::Platform.new('universal-linux')
  gem.homepage   = 'https://github.com/djberg96/linux-kstat'
  gem.summary    = 'Ruby interface for Linux kernel stats in /proc/stat'
  gem.test_files = Dir['test/test*']
  gem.files      = Dir['**/*'].reject{ |f| f.include?('git') }
  gem.cert_chain = ['certs/djberg96_pub.pem']

  gem.extra_rdoc_files  = ['README', 'CHANGES', 'MANIFEST']

  gem.add_development_dependency('rspec')

  gem.metadata = {
    'homepage_uri'      => 'https://github.com/djberg96/linux-kstat',
    'bug_tracker_uri'   => 'https://github.com/djberg96/linux-kstat/issues',
    'changelog_uri'     => 'https://github.com/djberg96/linux-kstat/blob/master/CHANGES',
    'documentation_uri' => 'https://github.com/djberg96/linux-kstat/wiki',
    'source_code_uri'   => 'https://github.com/djberg96/linux-kstat',
    'wiki_uri'          => 'https://github.com/djberg96/linux-kstat/wiki'
  }

  gem.description = <<-EOF
    The linux-kstat library provides a hash style interface for reading
    Linux kernel statistics read out of /proc/stat.
  EOF
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
linux-kstat-0.2.1-universal-linux linux-kstat.gemspec