ruby-googlechart 0.6.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.
@@ -0,0 +1,10 @@
1
+ require 'test/unit'
2
+ require 'rubygems'
3
+ require 'shoulda'
4
+ require File.dirname(__FILE__) + '/../lib/google_chart'
5
+
6
+ class MockChart < GoogleChart::AbstractChart
7
+ def chart_type
8
+ 'cht=mock'
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,112 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-googlechart
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.6.4
5
+ platform: ruby
6
+ authors:
7
+ - John Parker
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-11-15 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: ruby-googlechart is yet another wrapper around the Google Charts API
26
+ email: jparker@urgetopunt.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .gitignore
36
+ - CHANGELOG
37
+ - README.rdoc
38
+ - Rakefile
39
+ - VERSION
40
+ - lib/array.rb
41
+ - lib/google_chart.rb
42
+ - lib/google_chart/abstract_chart.rb
43
+ - lib/google_chart/axis.rb
44
+ - lib/google_chart/bar_chart.rb
45
+ - lib/google_chart/bar_style.rb
46
+ - lib/google_chart/color.rb
47
+ - lib/google_chart/data.rb
48
+ - lib/google_chart/grid_line.rb
49
+ - lib/google_chart/legend.rb
50
+ - lib/google_chart/line_chart.rb
51
+ - lib/google_chart/line_style.rb
52
+ - lib/google_chart/range_marker.rb
53
+ - lib/google_chart/title.rb
54
+ - ruby-googlechart.gemspec
55
+ - test/google_chart/test_abstract_chart.rb
56
+ - test/google_chart/test_axis.rb
57
+ - test/google_chart/test_bar_chart.rb
58
+ - test/google_chart/test_bar_style.rb
59
+ - test/google_chart/test_color.rb
60
+ - test/google_chart/test_data.rb
61
+ - test/google_chart/test_grid_line.rb
62
+ - test/google_chart/test_legend.rb
63
+ - test/google_chart/test_line_chart.rb
64
+ - test/google_chart/test_line_style.rb
65
+ - test/google_chart/test_range_marker.rb
66
+ - test/google_chart/test_title.rb
67
+ - test/test_google_chart.rb
68
+ - test/test_helper.rb
69
+ - LICENSE
70
+ has_rdoc: true
71
+ homepage: http://github.com/jparker/ruby-googlechart
72
+ licenses: []
73
+
74
+ post_install_message:
75
+ rdoc_options:
76
+ - --charset=UTF-8
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: "0"
84
+ version:
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ version:
91
+ requirements: []
92
+
93
+ rubyforge_project:
94
+ rubygems_version: 1.3.5
95
+ signing_key:
96
+ specification_version: 3
97
+ summary: Ruby wrapper around the Google Charts API
98
+ test_files:
99
+ - test/google_chart/test_abstract_chart.rb
100
+ - test/google_chart/test_axis.rb
101
+ - test/google_chart/test_bar_chart.rb
102
+ - test/google_chart/test_bar_style.rb
103
+ - test/google_chart/test_color.rb
104
+ - test/google_chart/test_data.rb
105
+ - test/google_chart/test_grid_line.rb
106
+ - test/google_chart/test_legend.rb
107
+ - test/google_chart/test_line_chart.rb
108
+ - test/google_chart/test_line_style.rb
109
+ - test/google_chart/test_range_marker.rb
110
+ - test/google_chart/test_title.rb
111
+ - test/test_google_chart.rb
112
+ - test/test_helper.rb