File: vmstat.gemspec

package info (click to toggle)
ruby-vmstat 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 348 kB
  • sloc: ruby: 1,131; ansic: 347; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vmstat/version'

Gem::Specification.new do |gem|
  gem.name          = "vmstat"
  gem.version       = Vmstat::VERSION
  gem.authors       = ["Vincent Landgraf"]
  gem.email         = ["vilandgr@googlemail.com"]
  gem.description   = %q{
    A focused and fast library to gather memory, 
    cpu, network, load avg and disk information
  }
  gem.summary       = %q{A focused and fast library to gather system information}
  gem.homepage      = "http://threez.github.com/ruby-vmstat/"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
  gem.extensions    = ["ext/vmstat/extconf.rb"]

  gem.add_development_dependency('rake', '~> 11.3')
  gem.add_development_dependency('rspec', '~> 2.9')
  gem.add_development_dependency('rake-compiler')
  gem.add_development_dependency('guard-rspec')
  gem.add_development_dependency('timecop')
end