gchartrb 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.4.1
2
+
3
+ * Removed some spurious debug statements
4
+
1
5
  == 0.4
2
6
 
3
7
  * Fixed issue when all data points are 0 in Line XY Chart (Thanks Cedric)
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ class Hoe
8
8
  def extra_deps; @extra_deps.reject { |x| Array(x).first == "hoe" } end
9
9
  end # copied from the Rakefile of the sup project
10
10
 
11
- Hoe.new('gchartrb', "0.4.0") do |p|
11
+ Hoe.new('gchartrb', "0.4.1") do |p|
12
12
  p.rubyforge_name = 'gchartrb'
13
13
  p.author = 'Deepak Jois'
14
14
  p.email = 'deepak.jois@gmail.com'
@@ -292,7 +292,6 @@ module GoogleChart
292
292
 
293
293
  chart_data = values.collect do |val|
294
294
  if val.to_i >=0
295
- puts max_value
296
295
  if max_value == 0
297
296
  SIMPLE_ENCODING[0]
298
297
  else
@@ -18,12 +18,10 @@ module GoogleChart
18
18
  end
19
19
 
20
20
  def max_x_value
21
- puts "Max x value is #{x_data.flatten.max}"
22
21
  x_data.flatten.max
23
22
  end
24
23
 
25
24
  def max_y_value
26
- puts "Max y value is #{y_data.flatten.max}"
27
25
  y_data.flatten.max
28
26
  end
29
27
 
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: gchartrb
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.4.0
6
+ version: 0.4.1
7
7
  date: 2007-12-12 00:00:00 +08:00
8
8
  summary: Ruby Wrapper for the Google Chart API
9
9
  require_paths: