ganglia_js_charts 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +22 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +45 -0
- data/VERSION +1 -0
- data/ganglia_js_charts.gemspec +80 -0
- data/lib/ganglia_js_charts.rb +61 -0
- data/public/ajax-loader.gif +0 -0
- data/public/ganglia-js.js +225 -0
- data/public/index.html +80 -0
- data/public/jquery-1.4.4.js +7179 -0
- data/public/jquery.tmpl.js +482 -0
- data/public/js/adapters/mootools-adapter.js +11 -0
- data/public/js/adapters/mootools-adapter.src.js +214 -0
- data/public/js/adapters/prototype-adapter.js +14 -0
- data/public/js/adapters/prototype-adapter.src.js +254 -0
- data/public/js/highcharts.js +160 -0
- data/public/js/highcharts.src.js +10580 -0
- data/public/js/modules/exporting.js +21 -0
- data/public/js/modules/exporting.src.js +671 -0
- data/public/js/themes/dark-blue.js +170 -0
- data/public/js/themes/dark-green.js +170 -0
- data/public/js/themes/gray.js +164 -0
- data/public/js/themes/grid.js +97 -0
- data/public/json2.js +480 -0
- data/public/knockout-1.1.2.debug.js +1852 -0
- data/public/underscore.js +770 -0
- data/spec/ganglia_js_charts_spec.rb +7 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +9 -0
- data/test-rrds/FetLife/feed01.dal.fetlife/like_service_LikeService_create-count.rrd +0 -0
- data/test-rrds/FetLife/feed02.dal.fetlife/like_service_LikeService_create-count.rrd +0 -0
- data/test-rrds/graphs.json +1 -0
- metadata +118 -0
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/spec/spec_helper.rb
ADDED
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
[{"name":"LikeService-create-count","metrics":[{"name":"FetLife/feed01.dal.fetlife/like_service_LikeService_create-count"},{"name":"FetLife/feed02.dal.fetlife/like_service_LikeService_create-count"}]}]
|
metadata
ADDED
@@ -0,0 +1,118 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ganglia_js_charts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- James Golick
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-01-23 00:00:00 -08:00
|
19
|
+
default_executable: ganglia_js_charts_server
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: rspec
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 13
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 2
|
33
|
+
- 9
|
34
|
+
version: 1.2.9
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
description: ""
|
38
|
+
email: jamesgolick@gmail.com
|
39
|
+
executables:
|
40
|
+
- ganglia_js_charts_server
|
41
|
+
extensions: []
|
42
|
+
|
43
|
+
extra_rdoc_files:
|
44
|
+
- LICENSE
|
45
|
+
- README.rdoc
|
46
|
+
files:
|
47
|
+
- .document
|
48
|
+
- .gitignore
|
49
|
+
- LICENSE
|
50
|
+
- README.rdoc
|
51
|
+
- Rakefile
|
52
|
+
- VERSION
|
53
|
+
- ganglia_js_charts.gemspec
|
54
|
+
- lib/ganglia_js_charts.rb
|
55
|
+
- public/ajax-loader.gif
|
56
|
+
- public/ganglia-js.js
|
57
|
+
- public/index.html
|
58
|
+
- public/jquery-1.4.4.js
|
59
|
+
- public/jquery.tmpl.js
|
60
|
+
- public/js/adapters/mootools-adapter.js
|
61
|
+
- public/js/adapters/mootools-adapter.src.js
|
62
|
+
- public/js/adapters/prototype-adapter.js
|
63
|
+
- public/js/adapters/prototype-adapter.src.js
|
64
|
+
- public/js/highcharts.js
|
65
|
+
- public/js/highcharts.src.js
|
66
|
+
- public/js/modules/exporting.js
|
67
|
+
- public/js/modules/exporting.src.js
|
68
|
+
- public/js/themes/dark-blue.js
|
69
|
+
- public/js/themes/dark-green.js
|
70
|
+
- public/js/themes/gray.js
|
71
|
+
- public/js/themes/grid.js
|
72
|
+
- public/json2.js
|
73
|
+
- public/knockout-1.1.2.debug.js
|
74
|
+
- public/underscore.js
|
75
|
+
- spec/ganglia_js_charts_spec.rb
|
76
|
+
- spec/spec.opts
|
77
|
+
- spec/spec_helper.rb
|
78
|
+
- test-rrds/FetLife/feed01.dal.fetlife/like_service_LikeService_create-count.rrd
|
79
|
+
- test-rrds/FetLife/feed02.dal.fetlife/like_service_LikeService_create-count.rrd
|
80
|
+
- test-rrds/graphs.json
|
81
|
+
- bin/ganglia_js_charts_server
|
82
|
+
has_rdoc: true
|
83
|
+
homepage: http://github.com/jamesgolick/ganglia_js_charts
|
84
|
+
licenses: []
|
85
|
+
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options:
|
88
|
+
- --charset=UTF-8
|
89
|
+
require_paths:
|
90
|
+
- lib
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
hash: 3
|
97
|
+
segments:
|
98
|
+
- 0
|
99
|
+
version: "0"
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
hash: 3
|
106
|
+
segments:
|
107
|
+
- 0
|
108
|
+
version: "0"
|
109
|
+
requirements: []
|
110
|
+
|
111
|
+
rubyforge_project:
|
112
|
+
rubygems_version: 1.3.7
|
113
|
+
signing_key:
|
114
|
+
specification_version: 3
|
115
|
+
summary: ""
|
116
|
+
test_files:
|
117
|
+
- spec/ganglia_js_charts_spec.rb
|
118
|
+
- spec/spec_helper.rb
|