rchart 1.2.2 → 2.0.1
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 +3 -3
- data/VERSION +1 -1
- data/lib/bar_chart.rb +166 -0
- data/lib/color_palette.rb +56 -0
- data/lib/cubic_chart.rb +271 -0
- data/lib/gd2_helper.rb +161 -0
- data/lib/graph.rb +24 -0
- data/lib/graph_helper.rb +414 -0
- data/lib/layout.rb +247 -0
- data/lib/legend.rb +243 -0
- data/lib/line_chart.rb +164 -0
- data/lib/pie_chart.rb +479 -0
- data/lib/plot_chart.rb +192 -0
- data/lib/rchart.rb +13 -3189
- data/lib/rchart_helper.rb +265 -0
- data/lib/rdata.rb +15 -14
- data/lib/scale.rb +538 -0
- metadata +49 -16
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rchart
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 13
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
|
-
- 1
|
8
7
|
- 2
|
9
|
-
-
|
10
|
-
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 2.0.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- amardaxini
|
@@ -15,23 +15,21 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2010-11-10 00:00:00 +05:30
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
name:
|
22
|
+
name: rgd2-ffij
|
23
23
|
prerelease: false
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
hash:
|
29
|
+
hash: 3
|
30
30
|
segments:
|
31
31
|
- 0
|
32
|
-
|
33
|
-
- 0
|
34
|
-
version: 0.8.0
|
32
|
+
version: "0"
|
35
33
|
type: :development
|
36
34
|
version_requirements: *id001
|
37
35
|
description: Ruby port of the slick pChart charting library
|
@@ -80,8 +78,21 @@ files:
|
|
80
78
|
- fonts/Silkscreen.ttf
|
81
79
|
- fonts/pf_arma_five.ttf
|
82
80
|
- fonts/tahoma.ttf
|
81
|
+
- lib/bar_chart.rb
|
82
|
+
- lib/color_palette.rb
|
83
|
+
- lib/cubic_chart.rb
|
84
|
+
- lib/gd2_helper.rb
|
85
|
+
- lib/graph.rb
|
86
|
+
- lib/graph_helper.rb
|
87
|
+
- lib/layout.rb
|
88
|
+
- lib/legend.rb
|
89
|
+
- lib/line_chart.rb
|
90
|
+
- lib/pie_chart.rb
|
91
|
+
- lib/plot_chart.rb
|
83
92
|
- lib/rchart.rb
|
93
|
+
- lib/rchart_helper.rb
|
84
94
|
- lib/rdata.rb
|
95
|
+
- lib/scale.rb
|
85
96
|
- test/helper.rb
|
86
97
|
- test/test_rchart.rb
|
87
98
|
has_rdoc: true
|
@@ -89,8 +100,8 @@ homepage: http://github.com/amardaxini/rchart
|
|
89
100
|
licenses: []
|
90
101
|
|
91
102
|
post_install_message:
|
92
|
-
rdoc_options:
|
93
|
-
|
103
|
+
rdoc_options:
|
104
|
+
- --charset=UTF-8
|
94
105
|
require_paths:
|
95
106
|
- lib
|
96
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -114,9 +125,31 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
125
|
requirements:
|
115
126
|
- libgd-ruby, libpng-dev, libgd-dev package are required
|
116
127
|
rubyforge_project: rchart
|
117
|
-
rubygems_version: 1.
|
128
|
+
rubygems_version: 1.3.7
|
118
129
|
signing_key:
|
119
130
|
specification_version: 3
|
120
131
|
summary: Ruby port of the slick pChart charting library
|
121
|
-
test_files:
|
122
|
-
|
132
|
+
test_files:
|
133
|
+
- test/helper.rb
|
134
|
+
- test/test_rchart.rb
|
135
|
+
- examples/example21.rb
|
136
|
+
- examples/example17.rb
|
137
|
+
- examples/example20.rb
|
138
|
+
- examples/example12.rb
|
139
|
+
- examples/example2.rb
|
140
|
+
- examples/example18.rb
|
141
|
+
- examples/example1.rb
|
142
|
+
- examples/example11.rb
|
143
|
+
- examples/example7.rb
|
144
|
+
- examples/example8.rb
|
145
|
+
- examples/example16.rb
|
146
|
+
- examples/example5.rb
|
147
|
+
- examples/example19.rb
|
148
|
+
- examples/example14.rb
|
149
|
+
- examples/example3.rb
|
150
|
+
- examples/example6.rb
|
151
|
+
- examples/example4.rb
|
152
|
+
- examples/example9.rb
|
153
|
+
- examples/example10.rb
|
154
|
+
- examples/example13.rb
|
155
|
+
- examples/example15.rb
|