bloopletech-webstats 0.10.2 → 0.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/webstats.gemspec +2 -2
- metadata +2 -1
data/Rakefile
CHANGED
|
@@ -12,7 +12,7 @@ begin
|
|
|
12
12
|
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.}
|
|
13
13
|
s.email = %q{i@bloople.net}
|
|
14
14
|
s.files = Dir['**/*'].reject { |fn| fn =~ /(\.o|\.so|\.bundle|Makefile|\.gem)$/ }
|
|
15
|
-
s.executables = ['webstats', 'webstats_growl_notifier']
|
|
15
|
+
s.executables = ['webstats', 'webstats_growl_notifier', 'webstats_email_notifier']
|
|
16
16
|
s.extensions = ["server/data_providers/extconf.rb"]
|
|
17
17
|
s.has_rdoc = false
|
|
18
18
|
s.homepage = %q{http://github.com/bloopletech/webstats}
|
data/VERSION.yml
CHANGED
data/webstats.gemspec
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{webstats}
|
|
5
|
-
s.version = "0.10.
|
|
5
|
+
s.version = "0.10.4"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Brenton Fletcher"]
|
|
9
9
|
s.date = %q{2009-05-15}
|
|
10
10
|
s.description = %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.}
|
|
11
11
|
s.email = %q{i@bloople.net}
|
|
12
|
-
s.executables = ["webstats", "webstats_growl_notifier"]
|
|
12
|
+
s.executables = ["webstats", "webstats_growl_notifier", "webstats_email_notifier"]
|
|
13
13
|
s.extensions = ["server/data_providers/extconf.rb"]
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"LICENSE",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bloopletech-webstats
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brenton Fletcher
|
|
@@ -18,6 +18,7 @@ email: i@bloople.net
|
|
|
18
18
|
executables:
|
|
19
19
|
- webstats
|
|
20
20
|
- webstats_growl_notifier
|
|
21
|
+
- webstats_email_notifier
|
|
21
22
|
extensions:
|
|
22
23
|
- server/data_providers/extconf.rb
|
|
23
24
|
extra_rdoc_files:
|