ziya 2.0.1 → 2.0.2
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/Manifest.txt +1 -0
- data/README.txt +8 -3
- data/Rakefile +1 -2
- data/charts/charts.swf +0 -0
- data/lib/ziya/components/chart_pref.rb +1 -1
- data/lib/ziya/version.rb +1 -1
- data/release_notes.txt +3 -0
- metadata +5 -3
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
@@ -2,11 +2,16 @@ ziya
|
|
2
2
|
by Fernand Galiana
|
3
3
|
ziya.rubyforge.org
|
4
4
|
|
5
|
+
== RELEASES
|
6
|
+
|
7
|
+
2.0.0 - Added support for XML/SWF 5.02
|
8
|
+
2.0.1 - Additional support for 5.02 + Added donut chart from 5.03
|
9
|
+
|
5
10
|
== DESCRIPTION:
|
6
11
|
|
7
12
|
ZiYa allows you to easily display graphs in your ruby based applications by leveraging
|
8
13
|
SWF Charts (http://www.maani.us/xml_charts/index.php) and SWF gauges (http://www.maani.us/gauge/index.php).
|
9
|
-
This gem bundles version 5.
|
14
|
+
This gem bundles version 5.03 and 1.6 of these flash libraries. Incorporating flash graphs or gauge in your app
|
10
15
|
relieves the server by allowing for delegating graph rendering to the client side. Using this gem, you will
|
11
16
|
be able to easily create great looking charts for your application. You will also be able
|
12
17
|
to use the charts or gauges has a navigation scheme by embedding various link in the graphical components
|
@@ -15,7 +20,7 @@ managers will love you for it !!
|
|
15
20
|
|
16
21
|
Checkout the demo: http://ziya.liquidrail.com ( NEEDS LATEST UPDATE... WORKING ON IT)
|
17
22
|
Video : http://www.youtube.com/watch?v=axIMmMHdXzo ( Out of date but you'll get the basics... )
|
18
|
-
Documentation : http://ziya.
|
23
|
+
Documentation : http://ziya.rubyforge.org
|
19
24
|
Forum : http://groups.google.com/group/ziya-plugin
|
20
25
|
|
21
26
|
|
@@ -54,7 +59,7 @@ managers will love you for it !!
|
|
54
59
|
me a hand with a tutorial app or improving the docs, I am all hears...
|
55
60
|
|
56
61
|
|
57
|
-
|
62
|
+
|
58
63
|
When using within a rails application you will need to create a ziya.rb file in your
|
59
64
|
config/initializers directory ( Rails 2.0 )
|
60
65
|
|
data/Rakefile
CHANGED
data/charts/charts.swf
CHANGED
Binary file
|
@@ -17,6 +17,6 @@ module Ziya::Components
|
|
17
17
|
:type, :bull_color, :bear_color,
|
18
18
|
:reverse, :drag, :min_x, :min_y, :max_x, :max_y,
|
19
19
|
:trend_thickness, :trend_alpha, :line_alpha, :rotation_x,
|
20
|
-
:rotation_y, :grid, :select
|
20
|
+
:rotation_y, :grid, :select, :empty_center
|
21
21
|
end
|
22
22
|
end
|
data/lib/ziya/version.rb
CHANGED
data/release_notes.txt
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ziya
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fernand Galiana
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-08-
|
12
|
+
date: 2008-08-24 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
|
-
- -
|
21
|
+
- - ~>
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 0.9.0
|
24
24
|
version:
|
@@ -32,6 +32,7 @@ extra_rdoc_files:
|
|
32
32
|
- History.txt
|
33
33
|
- README.txt
|
34
34
|
- bin/ziyafy
|
35
|
+
- release_notes.txt
|
35
36
|
files:
|
36
37
|
- History.txt
|
37
38
|
- Manifest.txt
|
@@ -159,6 +160,7 @@ files:
|
|
159
160
|
- lib/ziya/utils/text.rb
|
160
161
|
- lib/ziya/version.rb
|
161
162
|
- lib/ziya/ziya_helper.rb
|
163
|
+
- release_notes.txt
|
162
164
|
- spec/charts/base_spec.rb
|
163
165
|
- spec/charts/chart_type_spec.rb
|
164
166
|
- spec/components/area_spec.rb
|