-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRakefile
23 lines (21 loc) · 1.04 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = %q{webstats}
s.version = "0.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brenton Fletcher"]
s.date = Date.today.strftime("%Y-%m-%d")
s.description = s.summary = %q{Monitor server CPU/Memory/Disk Usage/URL Loading, so that you can view those statistics on a web page, as well as providing an interface to client prorams to read those statistics.}
s.email = %q{[email protected]}
s.files = Dir['**/*'].reject { |fn| fn =~ /(\.o|\.so|\.bundle|Makefile|\.gem)$/ }
s.executables = ['webstats', 'webstats_growl_notifier', 'webstats_email_notifier']
s.extensions = ["server/data_providers/extconf.rb"]
s.has_rdoc = false
s.homepage = %q{http://github.com/bloopletech/webstats}
s.require_paths = [""]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end