ziya 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest.txt CHANGED
@@ -124,6 +124,7 @@ lib/ziya/utils/logger.rb
124
124
  lib/ziya/utils/text.rb
125
125
  lib/ziya/version.rb
126
126
  lib/ziya/ziya_helper.rb
127
+ release_notes.txt
127
128
  spec/charts/base_spec.rb
128
129
  spec/charts/chart_type_spec.rb
129
130
  spec/components/area_spec.rb
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.02 and 1.6 of these flash libraries. Incorporating flash graphs or gauge in your app
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.liquidrail.com/rdoc ( New docs coming soon... )
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
@@ -41,5 +41,4 @@ end
41
41
 
42
42
  task 'gem:package' => 'manifest:assert'
43
43
 
44
-
45
- depend_on "logging", "= 0.9.0"
44
+ depend_on "logging", "~> 0.9.0"
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
@@ -2,7 +2,7 @@ module Ziya
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  # Returns the version string for the library.
8
8
  #
data/release_notes.txt ADDED
@@ -0,0 +1,3 @@
1
+ 2.0.0 - Gem release - Update to xml/swf 5.0.2 added xml/gauge 1.6
2
+ 2.0.1 - Update for xml/swf 5.0.3
3
+ 2.0.2 - Changed logging required to 0.9.X - Update to xml/swf 5.0.4
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.1
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-20 00:00:00 -06:00
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