gerbilcharts 0.5.9 → 0.6.8

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.
Files changed (49) hide show
  1. data/{License.txt → LICENSE.txt} +0 -0
  2. data/{README.txt → README.rdoc} +0 -0
  3. data/lib/gerbilcharts/charts.rb +2 -0
  4. data/lib/gerbilcharts/charts/chart_base.rb +1 -1
  5. data/lib/gerbilcharts/charts/line_chart_table.rb +38 -0
  6. data/lib/gerbilcharts/charts/stacked_area_chart_table.rb +31 -0
  7. data/lib/gerbilcharts/models/bucketized_timeseries_graph_model.rb +10 -7
  8. data/lib/gerbilcharts/models/graph_model_group.rb +1 -1
  9. data/lib/gerbilcharts/models/presets.rb +2 -2
  10. data/lib/gerbilcharts/models/raw_range.rb +1 -0
  11. data/lib/gerbilcharts/surfaces/area_surface.rb +46 -39
  12. data/lib/gerbilcharts/surfaces/conversation_ring.rb +7 -3
  13. data/lib/gerbilcharts/surfaces/detailed_legend.rb +15 -4
  14. data/lib/gerbilcharts/surfaces/impulse_surface.rb +10 -4
  15. data/lib/gerbilcharts/surfaces/line_surface.rb +31 -34
  16. data/lib/gerbilcharts/surfaces/square_line_surface.rb +27 -30
  17. data/lib/gerbilcharts/surfaces/surface.rb +27 -1
  18. data/lib/gerbilcharts/svgdc/svg_polygon.rb +14 -7
  19. data/lib/gerbilcharts/svgdc/svg_polyline.rb +8 -2
  20. data/lib/gerbilcharts/svgdc/svgdc.rb +8 -0
  21. data/lib/gerbilcharts/version.rb +2 -2
  22. metadata +118 -97
  23. data/History.txt +0 -105
  24. data/Manifest.txt +0 -92
  25. data/PostInstall.txt +0 -2
  26. data/Rakefile +0 -4
  27. data/lib/gerbilcharts/public/brushmetal.css +0 -284
  28. data/lib/gerbilcharts/public/gerbil.js +0 -421
  29. data/setup.rb +0 -1585
  30. data/test/test_Scratch.rb +0 -21
  31. data/test/test_bar.rb +0 -39
  32. data/test/test_bubble.rb +0 -52
  33. data/test/test_charts.rb +0 -122
  34. data/test/test_conversation.rb +0 -34
  35. data/test/test_embed_styles.rb +0 -35
  36. data/test/test_gerbilcharts.rb +0 -11
  37. data/test/test_helper.rb +0 -2
  38. data/test/test_lines.rb +0 -46
  39. data/test/test_matrix.rb +0 -34
  40. data/test/test_models.rb +0 -118
  41. data/test/test_negatives.rb +0 -39
  42. data/test/test_noob.rb +0 -86
  43. data/test/test_pie.rb +0 -43
  44. data/test/test_ranges.rb +0 -169
  45. data/test/test_render_string.rb +0 -38
  46. data/test/test_sa.rb +0 -88
  47. data/test/test_scaling.rb +0 -57
  48. data/test/test_svgdc.rb +0 -221
  49. data/test/trafgen.rb +0 -25
@@ -10,50 +10,47 @@ module GerbilCharts::Surfaces
10
10
  # [+scaling+] :auto, :auto_y0
11
11
  #
12
12
  class SquareLineSurface < Surface
13
- def initialize(opts={})
14
- super(opts)
15
- end
13
+ def initialize(opts={})
14
+ super(opts)
15
+ end
16
16
 
17
- def int_render(g)
17
+ def int_render(g)
18
18
 
19
- range_options_x = parent.get_global_option(:scaling_x,:auto)
20
- range_options_y = parent.get_global_option(:scaling_y,:auto)
21
- rx = parent.modelgroup.effective_range_x(range_options_x)
22
- ry = parent.modelgroup.effective_range_y(range_options_y)
19
+ range_options_x = parent.get_global_option(:scaling_x,:auto)
20
+ range_options_y = parent.get_global_option(:scaling_y,:auto)
21
+ rx = parent.modelgroup.effective_range_x(range_options_x)
22
+ ry = parent.modelgroup.effective_range_y(range_options_y)
23
23
 
24
- # ajax if used
25
- if parent.usesAjax?
26
- set_ajaxSurfaceContext(rx.rmax,ry.rmax,"LINE")
27
- end
24
+ set_ajaxSurfaceContext(rx.rmax,ry.rmax,"LINE") if parent.usesAjax?
28
25
 
29
- parent.modelgroup.each_model_with_index do | mod, i|
26
+ parent.modelgroup.each_model_with_index do | mod, i|
30
27
 
31
28
  prev_ypos=nil
32
- mod.each_tuple do |x,y|
29
+ mod.each_tuple do |x,y|
33
30
 
34
- # the basic line
35
- xpos = scale_x x,rx
36
- ypos = scale_y y,ry
31
+ # the basic line
32
+ xpos = scale_x x,rx
33
+ ypos = scale_y y,ry
37
34
 
38
- prev_ypos ||= ypos
39
- g.lineto xpos,prev_ypos
40
- g.lineto xpos,ypos
41
- prev_ypos=ypos
35
+ prev_ypos ||= ypos
36
+ g.lineto xpos,prev_ypos
37
+ g.lineto xpos,ypos
38
+ prev_ypos=ypos
42
39
 
43
- # datapoint and a tooltip
44
- opts = {:id => "item#{i}"}
45
- if parent.get_global_option(:auto_tooltips,false)
40
+ # datapoint and a tooltip
41
+ opts = {:id => "item#{i}"}
42
+ if parent.get_global_option(:auto_tooltips,false)
46
43
  opts.merge!(:onmouseover => "OpacityDown(evt)", :onmouseout => "OpacityUp(evt)")
47
44
  opts.store(:gerbiltooltip1, mod.name)
48
45
  opts.store(:gerbiltooltip2, "Val = #{y}")
49
- end
50
- g.circle(xpos,ypos,4,opts) if parent.get_global_option(:circle_data_points,false)
51
- end
52
- g.endline(:id => "lineitem#{i}")
46
+ end
47
+ g.circle(xpos,ypos,4,opts) if parent.get_global_option(:circle_data_points,false)
53
48
  end
54
-
55
- #draw each model in the group
49
+ g.endline(:id => "lineitem#{i}")
56
50
  end
51
+
52
+ draw_ref_model_line(g,rx,ry) if parent.modelgroup.has_ref_model?
53
+ end
57
54
 
58
55
  end
59
56
 
@@ -16,6 +16,32 @@ class Surface < GraphElement
16
16
  def set_ajaxSurfaceContext(mxx, mxy, type)
17
17
  parent.set_ajaxContext(:axmxx => mxx, :axmxy => mxy, :axsurface => type)
18
18
  end
19
- end
19
+
20
+ def draw_ref_model_line(g,rx,ry)
21
+ ref_model = parent.modelgroup.ref_model
22
+
23
+ ref_model.each_tuple do |x,y|
24
+ xpos = scale_x x,rx
25
+ ypos = scale_y y,ry
26
+ g.lineto xpos,ypos
27
+ end
28
+
29
+ g.endline(:class => "refline")
30
+
31
+ # show latest pt & label
32
+ ref_model.first do |x,y|
33
+ g.textout(@bounds.left+5, scale_y(y,ry)-5,
34
+ ref_model.latest_formatted_val,
35
+ {:class => "reflinelabel"})
36
+ end
37
+ ref_model.latest do |x,y|
38
+ g.textout(@bounds.right-5, scale_y(y,ry)-5, ref_model.latest_formatted_val,
39
+ {:class => "reflinelabel", "text-anchor" => "end" })
40
+ end
41
+
42
+
43
+ end
20
44
 
21
45
  end
46
+ end
47
+
@@ -6,18 +6,23 @@ module GerbilCharts::SVGDC
6
6
  # The oper string consists of M x y L x y style commands. See SVG spec.
7
7
  # todo : accept an array of coords and automatically construct the oper string
8
8
  #
9
+ POLYGON_RESOLUTION="%.1f"
10
+
9
11
  class SVGPolygon < SVGShape
10
12
 
11
13
  attr_reader :operstring
12
14
 
13
15
  def initialize
14
16
  @operstring = ""
17
+ @last_svg = ""
15
18
  end
16
19
 
17
20
  def addpoint(x,y)
18
21
  # truncate to 2 significant places (cuts down SVG size)
19
- xf,yf = "%.2f"%x, "%.2f"%y
20
- @operstring << "#{xf},#{yf} "
22
+ xf,yf = POLYGON_RESOLUTION%x, POLYGON_RESOLUTION%y
23
+ s = "#{xf},#{yf} "
24
+ @operstring << "#{xf},#{yf} " unless s == @last_svg
25
+ @last_svg = s
21
26
  end
22
27
 
23
28
  def render(xfrag)
@@ -38,14 +43,16 @@ class SVGSquarizedPolygon < SVGPolygon
38
43
  def addpoint(x,y)
39
44
  @lastpt ||= []
40
45
 
41
- unless @lastpt.empty?
42
- xf,yf = "%.2f"%x, "%.2f"%@lastpt[1]
43
- @operstring << "#{xf},#{yf} "
44
- xf,yf = "%.2f"%x, "%.2f"%y
45
- @operstring << "#{xf},#{yf} "
46
+ # truncate to 2 significant places (cuts down SVG size)
47
+ s = " #{POLYGON_RESOLUTION%x}, #{POLYGON_RESOLUTION%y} "
48
+
49
+ unless s == @last_svg or @lastpt.empty?
50
+ @operstring << " #{POLYGON_RESOLUTION%x}, #{POLYGON_RESOLUTION%@lastpt[1]} "
51
+ @operstring << s
46
52
  end
47
53
 
48
54
  @lastpt = [x,y]
55
+ @last_svg = s
49
56
  end
50
57
 
51
58
  end
@@ -5,17 +5,23 @@ module GerbilCharts::SVGDC
5
5
  #
6
6
  # Send this a series of lineto messages
7
7
  #
8
+ #
9
+
8
10
  class SVGPolyline < SVGShape
9
11
 
12
+ POLYLINE_RESOLUTION="%.1f"
13
+
10
14
  attr_reader :operstring
11
15
 
12
16
  def initialize
13
17
  @operstring = ""
18
+ @last_svg = ""
14
19
  end
15
20
 
16
21
  def lineto(x,y)
17
- fmt="%.2f"
18
- @operstring << "#{fmt%x},#{fmt%y} "
22
+ s = "#{POLYLINE_RESOLUTION%x},#{POLYLINE_RESOLUTION%y} "
23
+ @operstring.concat(s) unless @last_svg == s
24
+ @last_svg=s
19
25
  end
20
26
 
21
27
  def render(xfrag)
@@ -289,6 +289,10 @@ class SVGDC
289
289
  @curr_win << prime_object(SVGCircle.new(x,y,r),opt)
290
290
  end
291
291
 
292
+ def ellipse(x,y,r1,r2,opt={})
293
+ @curr_win << prime_object(SVGEllipse.new(x,y,r1,r2),opt)
294
+ end
295
+
292
296
  def moveto(x,y)
293
297
  @curr_polyline=SVGPolyline.new
294
298
  @curr_polyline.lineto(x,y)
@@ -309,6 +313,10 @@ class SVGDC
309
313
  def begin_polygon
310
314
  @curr_polygon=SVGPolygon.new
311
315
  end
316
+
317
+ def begin_squarized_polygon
318
+ @curr_polygon=SVGSquarizedPolygon.new
319
+ end
312
320
 
313
321
  def polygon_point(x,y)
314
322
  @curr_polygon ||= SVGPolygon.new
@@ -1,8 +1,8 @@
1
1
  module GerbilCharts
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
- MINOR = 5
5
- TINY = 9
4
+ MINOR = 6
5
+ TINY = 1
6
6
  STRING = [MAJOR, MINOR, TINY].join('.')
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,79 +1,127 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gerbilcharts
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 6
8
+ - 8
9
+ version: 0.6.8
5
10
  platform: ruby
6
11
  authors:
7
- - Vivek Rajagopalan
12
+ - vivek
8
13
  autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2011-01-14 00:00:00 +05:30
17
+ date: 2012-06-30 00:00:00 +05:30
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
- name: hoe
21
+ name: shoulda
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
17
30
  type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
31
+ prerelease: false
32
+ version_requirements: *id001
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: &id002 !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ segments:
41
+ - 1
42
+ - 0
43
+ - 0
44
+ version: 1.0.0
45
+ type: :development
46
+ prerelease: false
47
+ version_requirements: *id002
48
+ - !ruby/object:Gem::Dependency
49
+ name: jeweler
50
+ requirement: &id003 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 1
57
+ - 5
58
+ - 2
59
+ version: 1.5.2
60
+ type: :development
61
+ prerelease: false
62
+ version_requirements: *id003
63
+ - !ruby/object:Gem::Dependency
64
+ name: rcov
65
+ requirement: &id004 !ruby/object:Gem::Requirement
66
+ none: false
20
67
  requirements:
21
68
  - - ">="
22
69
  - !ruby/object:Gem::Version
23
- version: 2.3.3
24
- version:
25
- description: SVG based charting library for timeseries data
26
- email:
27
- - vivek at unleashnetworks
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ type: :development
74
+ prerelease: false
75
+ version_requirements: *id004
76
+ description: Gerbilcharts is a server side charting library that outputs SVG text
77
+ email: vivek_rajagopal@yahoo.com
28
78
  executables: []
29
79
 
30
80
  extensions: []
31
81
 
32
82
  extra_rdoc_files:
33
- - History.txt
34
- - License.txt
35
- - Manifest.txt
36
- - PostInstall.txt
37
- - README.txt
83
+ - LICENSE.txt
84
+ - README.rdoc
38
85
  files:
39
- - History.txt
40
- - License.txt
41
- - Manifest.txt
42
- - PostInstall.txt
43
- - README.txt
44
- - Rakefile
45
- - setup.rb
46
- - test/trafgen.rb
47
- - test/test_noob.rb
48
- - test/test_render_string.rb
49
- - test/test_helper.rb
50
- - test/test_scaling.rb
51
86
  - lib/gerbilcharts.rb
52
- - lib/gerbilcharts/version.rb
53
- - lib/gerbilcharts/models.rb
54
- - lib/gerbilcharts/svgdc.rb
55
- - lib/gerbilcharts/surfaces.rb
56
87
  - lib/gerbilcharts/charts.rb
57
- - lib/gerbilcharts/public/brushmetal.css
58
- - lib/gerbilcharts/public/gerbil.js
88
+ - lib/gerbilcharts/charts/area_chart.rb
89
+ - lib/gerbilcharts/charts/bar_chart.rb
90
+ - lib/gerbilcharts/charts/bar_chart_compact.rb
91
+ - lib/gerbilcharts/charts/bubble_chart.rb
92
+ - lib/gerbilcharts/charts/chart_base.rb
93
+ - lib/gerbilcharts/charts/conversation_ring.rb
94
+ - lib/gerbilcharts/charts/impulse_chart.rb
95
+ - lib/gerbilcharts/charts/line_chart.rb
96
+ - lib/gerbilcharts/charts/line_chart_table.rb
97
+ - lib/gerbilcharts/charts/matrix_chart.rb
98
+ - lib/gerbilcharts/charts/pie_chart.rb
99
+ - lib/gerbilcharts/charts/square_line_chart.rb
100
+ - lib/gerbilcharts/charts/stacked_area_chart.rb
101
+ - lib/gerbilcharts/charts/stacked_area_chart_table.rb
102
+ - lib/gerbilcharts/models.rb
59
103
  - lib/gerbilcharts/models/bucketized_timeseries_graph_model.rb
60
- - lib/gerbilcharts/models/graph_model_group.rb
104
+ - lib/gerbilcharts/models/discrete_time_range.rb
61
105
  - lib/gerbilcharts/models/graph_model.rb
106
+ - lib/gerbilcharts/models/graph_model_group.rb
107
+ - lib/gerbilcharts/models/matrix_model.rb
62
108
  - lib/gerbilcharts/models/monotonous_graph_model.rb
63
109
  - lib/gerbilcharts/models/presets.rb
64
110
  - lib/gerbilcharts/models/raw_range.rb
65
111
  - lib/gerbilcharts/models/round_range.rb
66
112
  - lib/gerbilcharts/models/round_time_range.rb
67
- - lib/gerbilcharts/models/discrete_time_range.rb
68
113
  - lib/gerbilcharts/models/sampled_timeseries_graph_model.rb
69
- - lib/gerbilcharts/models/time_series_graph_model.rb
70
114
  - lib/gerbilcharts/models/simple_timeseries_model_group.rb
71
- - lib/gerbilcharts/models/matrix_model.rb
115
+ - lib/gerbilcharts/models/time_series_graph_model.rb
116
+ - lib/gerbilcharts/surfaces.rb
72
117
  - lib/gerbilcharts/surfaces/area_surface.rb
73
118
  - lib/gerbilcharts/surfaces/axis.rb
74
119
  - lib/gerbilcharts/surfaces/bar_surface.rb
75
120
  - lib/gerbilcharts/surfaces/basic_grid.rb
121
+ - lib/gerbilcharts/surfaces/bubble_surface.rb
76
122
  - lib/gerbilcharts/surfaces/chart.rb
123
+ - lib/gerbilcharts/surfaces/conversation_ring.rb
124
+ - lib/gerbilcharts/surfaces/detailed_legend.rb
77
125
  - lib/gerbilcharts/surfaces/graph_element.rb
78
126
  - lib/gerbilcharts/surfaces/grid.rb
79
127
  - lib/gerbilcharts/surfaces/horizontal_axis.rb
@@ -81,100 +129,73 @@ files:
81
129
  - lib/gerbilcharts/surfaces/horizontal_time_axis.rb
82
130
  - lib/gerbilcharts/surfaces/impulse_surface.rb
83
131
  - lib/gerbilcharts/surfaces/legend.rb
84
- - lib/gerbilcharts/surfaces/detailed_legend.rb
85
132
  - lib/gerbilcharts/surfaces/line_surface.rb
86
133
  - lib/gerbilcharts/surfaces/mark_band.rb
134
+ - lib/gerbilcharts/surfaces/matrix_surface.rb
87
135
  - lib/gerbilcharts/surfaces/panel.rb
88
136
  - lib/gerbilcharts/surfaces/pie_surface.rb
89
137
  - lib/gerbilcharts/surfaces/rect.rb
138
+ - lib/gerbilcharts/surfaces/square_line_surface.rb
90
139
  - lib/gerbilcharts/surfaces/stacked_area_surface.rb
91
140
  - lib/gerbilcharts/surfaces/stacked_grid.rb
92
- - lib/gerbilcharts/surfaces/surface_background.rb
93
141
  - lib/gerbilcharts/surfaces/surface.rb
142
+ - lib/gerbilcharts/surfaces/surface_background.rb
94
143
  - lib/gerbilcharts/surfaces/title_panel.rb
95
- - lib/gerbilcharts/surfaces/bubble_surface.rb
96
144
  - lib/gerbilcharts/surfaces/tracker.rb
97
145
  - lib/gerbilcharts/surfaces/vertical_axis.rb
98
- - lib/gerbilcharts/surfaces/square_line_surface.rb
99
- - lib/gerbilcharts/surfaces/matrix_surface.rb
100
- - lib/gerbilcharts/surfaces/conversation_ring.rb
101
- - lib/gerbilcharts/charts/area_chart.rb
102
- - lib/gerbilcharts/charts/bar_chart_compact.rb
103
- - lib/gerbilcharts/charts/bar_chart.rb
104
- - lib/gerbilcharts/charts/chart_base.rb
105
- - lib/gerbilcharts/charts/impulse_chart.rb
106
- - lib/gerbilcharts/charts/line_chart.rb
107
- - lib/gerbilcharts/charts/stacked_area_chart.rb
108
- - lib/gerbilcharts/charts/pie_chart.rb
109
- - lib/gerbilcharts/charts/square_line_chart.rb
110
- - lib/gerbilcharts/charts/matrix_chart.rb
111
- - lib/gerbilcharts/charts/conversation_ring.rb
112
- - lib/gerbilcharts/charts/bubble_chart.rb
113
- - lib/gerbilcharts/svgdc/svgdc.rb
114
- - lib/gerbilcharts/svgdc/svg_element.rb
146
+ - lib/gerbilcharts/svgdc.rb
147
+ - lib/gerbilcharts/svgdc/css_inliner.rb
115
148
  - lib/gerbilcharts/svgdc/filters.rb
116
- - lib/gerbilcharts/svgdc/transformations.rb
117
149
  - lib/gerbilcharts/svgdc/presentation_attributes.rb
118
- - lib/gerbilcharts/svgdc/svg_win.rb
119
- - lib/gerbilcharts/svgdc/svg_custom_win.rb
120
- - lib/gerbilcharts/svgdc/svg_shape.rb
150
+ - lib/gerbilcharts/svgdc/svg_arc.rb
121
151
  - lib/gerbilcharts/svgdc/svg_circle.rb
152
+ - lib/gerbilcharts/svgdc/svg_custom_win.rb
153
+ - lib/gerbilcharts/svgdc/svg_element.rb
122
154
  - lib/gerbilcharts/svgdc/svg_ellipse.rb
123
155
  - lib/gerbilcharts/svgdc/svg_line.rb
124
156
  - lib/gerbilcharts/svgdc/svg_polygon.rb
125
157
  - lib/gerbilcharts/svgdc/svg_polyline.rb
126
158
  - lib/gerbilcharts/svgdc/svg_rect.rb
159
+ - lib/gerbilcharts/svgdc/svg_shape.rb
127
160
  - lib/gerbilcharts/svgdc/svg_text.rb
128
- - lib/gerbilcharts/svgdc/svg_arc.rb
129
- - lib/gerbilcharts/svgdc/css_inliner.rb
161
+ - lib/gerbilcharts/svgdc/svg_win.rb
162
+ - lib/gerbilcharts/svgdc/svgdc.rb
163
+ - lib/gerbilcharts/svgdc/transformations.rb
164
+ - lib/gerbilcharts/version.rb
165
+ - LICENSE.txt
166
+ - README.rdoc
130
167
  has_rdoc: true
131
- homepage: http://gerbilcharts.rubyforge.org
132
- licenses: []
168
+ homepage: http://github.com/vivekrajan/gerbilcharts
169
+ licenses:
170
+ - MIT
171
+ post_install_message:
172
+ rdoc_options: []
133
173
 
134
- post_install_message: |+
135
- Thanks for installing GerbilCharts SVG
136
-
137
- rdoc_options:
138
- - --main
139
- - README.txt
140
174
  require_paths:
141
175
  - lib
142
176
  required_ruby_version: !ruby/object:Gem::Requirement
177
+ none: false
143
178
  requirements:
144
179
  - - ">="
145
180
  - !ruby/object:Gem::Version
181
+ hash: 117781501
182
+ segments:
183
+ - 0
146
184
  version: "0"
147
- version:
148
185
  required_rubygems_version: !ruby/object:Gem::Requirement
186
+ none: false
149
187
  requirements:
150
188
  - - ">="
151
189
  - !ruby/object:Gem::Version
190
+ segments:
191
+ - 0
152
192
  version: "0"
153
- version:
154
193
  requirements: []
155
194
 
156
- rubyforge_project: gerbilcharts
157
- rubygems_version: 1.3.4
195
+ rubyforge_project:
196
+ rubygems_version: 1.3.7
158
197
  signing_key:
159
198
  specification_version: 3
160
- summary: SVG based charting library for timeseries data
161
- test_files:
162
- - test/test_conversation.rb
163
- - test/test_bubble.rb
164
- - test/test_embed_styles.rb
165
- - test/test_gerbilcharts.rb
166
- - test/test_ranges.rb
167
- - test/test_sa.rb
168
- - test/test_helper.rb
169
- - test/test_matrix.rb
170
- - test/test_svgdc.rb
171
- - test/test_noob.rb
172
- - test/test_lines.rb
173
- - test/test_pie.rb
174
- - test/test_render_string.rb
175
- - test/test_bar.rb
176
- - test/test_models.rb
177
- - test/test_charts.rb
178
- - test/test_negatives.rb
179
- - test/test_scaling.rb
180
- - test/test_Scratch.rb
199
+ summary: SVG timeseries charting
200
+ test_files: []
201
+