Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/tools/gauge/gauge.gemspec

Revision 2454, 0.8 kB (checked in by minam, 3 years ago)

gauge: fleshing it out a bit more

Line 
1 require './lib/gauge/version'
2
3 Gem::Specification.new do |s|
4
5   s.name = 'gauge'
6   s.version = PKG_VERSION
7   s.platform = Gem::Platform::RUBY
8   s.summary = <<-DESC.strip.gsub(/\n/, " ")
9     Gauge is a system for monitoring various statistics in real-time across
10     (potentially) multiple boxes. Statistics that can be monitored include
11     both application stats (requests per second, frequent actions, etc.),
12     machine stats (average load, CPU usage, etc.). Other kinds of statistics
13     may be implemented via plugins.
14   DESC
15
16   s.files = Dir.glob("{lib,test}/**/*")
17   s.files.concat %w(README MIT-LICENSE ChangeLog)
18   s.require_path = 'lib'
19   s.autorequire = 'gauge'
20
21   s.author = "Jamis Buck"
22   s.email = "jamis@37signals.com"
23   s.homepage = "http://www.rubyonrails.com"
24
25 end
Note: See TracBrowser for help on using the browser.