dag / ruby-statgrab

Ruby bindings to the libstatgrab portable system statistics library

This URL has Read+Write access

ruby-statgrab / statgrab.gemspec
100644 20 lines (19 sloc) 0.767 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
  s.name = 'statgrab'
  s.version = '0.1'
  s.summary = 'Ruby bindings to libstatgrab portable system statistics library'
  s.files = ['statgrab.c', 'README.mkdn', 'LICENSE']
  s.extensions << 'extconf.rb'
  s.has_rdoc = true
  s.extra_rdoc_files = ['statgrab.c']
  s.rdoc_options << '--charset' << 'utf-8' <<
                    '--inline-source' << '--line-numbers' <<
                    '--webcvs' <<
                      'http://github.com/dag/ruby-statgrab/tree/master/%s' <<
                    '--title' << 'Statgrab for Ruby API' <<
                    '--main' << 'Statgrab'
  s.author = 'Dag Odenhall'
  s.email = 'dag.odenhall@gmail.com'
  s.homepage = 'http://statgrab.rubyforge.org'
  s.rubyforge_project = 'statgrab'
end