derailed-ziya 2.1.0 → 2.1.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.
Files changed (5) hide show
  1. data/README.txt +93 -18
  2. data/bin/ziyafy +7 -6
  3. data/lib/ziya/version.rb +1 -1
  4. data/ziya.gemspec +3 -3
  5. metadata +3 -3
data/README.txt CHANGED
@@ -54,7 +54,10 @@ like applications. Your manager will love you for it !!
54
54
 
55
55
  == REQUIREMENTS:
56
56
 
57
- ZiYa depends on the logging gem version ~> 0.9.0
57
+ ZiYa depends on the following gems
58
+
59
+ * logging gem version ~> 0.9.0
60
+ * color gem version ~> 1.4.0
58
61
 
59
62
  ZiYa comes pre-bundled with the following packages:
60
63
  * XML/SWF charts Version 5.07 (http://www.maani.us/xml_charts/index.php)
@@ -76,37 +79,34 @@ like applications. Your manager will love you for it !!
76
79
 
77
80
  == INSTALL:
78
81
 
79
- sudo gem install derailed-ziya ( preferred )
82
+ sudo gem install derailed-ziya
80
83
 
81
84
  cd to your application directory and issue the following command
82
85
 
83
- > ziyafy
86
+ > ziyafy --charts
84
87
 
85
88
  This will copy the necessary themes and flash files to run ZiYa in your application
86
- public/charts directory.
89
+ public/charts directory. You can install maps and gauges components as well. Type in
87
90
 
88
- > ziyafy --help - for all available options.
89
-
91
+ > ziyafy --help
92
+
93
+ To see all available options.
94
+
90
95
  == SYNOPSIS:
91
96
 
92
97
  This gem version requires a client update to flash 9.0 and possibly you will
93
98
  need to get a new license from XML/SWF >= 5.0, if you want to use
94
99
  advanced features suck as links and live updates.
95
100
 
96
- == Creating a ZiYa chart in a rails application
97
-
98
- 1 - Edit your environment.rb and add
99
-
100
- environment.rb
101
-
102
- config.gem 'derailed-ziya', '~> 2.1.0
101
+ == Creating a ZiYa chart in a Rails 2.3 application
103
102
 
104
- 2 - Create a ziya.rb file under config/initializers
103
+ 1 - Create a ziya.rb file under config/initializers
105
104
 
106
105
  ziya.rb:
107
106
 
108
107
  # Pull in the ZiYa gem framework
109
- require 'derailed-ziya'
108
+ gem 'derailed-ziya', '= 2.1.0'
109
+ require 'ziya'
110
110
 
111
111
  # Initializes the ZiYa Framework
112
112
  Ziya.initialize(
@@ -118,13 +118,14 @@ like applications. Your manager will love you for it !!
118
118
  or specify a file ie File.join( File.dirname(__FILE__), %w[.. log ziya.log]. If you choose to use the
119
119
  ZiYa logger, you can specify the :log_level option to either :warn :info :debug or :error.
120
120
  You will need to specify your themes directory typically located under public/charts/themes or any location
121
- you'll choose.
121
+ you'll like to choose.
122
122
 
123
123
  3 - Create a chart controller
124
124
 
125
125
  blee_controller.rb:
126
126
 
127
127
  class BleeController < ApplicationController
128
+ # Load ZiYa necessary helpers
128
129
  helper Ziya::HtmlHelpers::Charts
129
130
  helper Ziya::YamlHelpers::Charts
130
131
 
@@ -155,13 +156,87 @@ like applications. Your manager will love you for it !!
155
156
 
156
157
  map.load_chart '/blee/load_chart', :controller => 'blee', :action => 'load_chart'
157
158
 
158
- == Creating a gauge
159
+ == Styling a chart
160
+
161
+ === Basic Theme
162
+
163
+ 1 - Create a directory fred in public/charts/themes
164
+ 2 - Create a file called column_chart.yml under the fred directory
165
+ 2 - Edit column_chart.yml and add the following lines mind the yaml 2 space indentation!
166
+
167
+ <%= chart :column %>
168
+ <%=comp :axis_category %>
169
+ color: ff0000
170
+
171
+ 3 - In fred_controller add the following directive to the chart to associate your new theme with the chart
172
+
173
+ chart.add( :theme, 'fred' )
174
+
175
+ 4 - reload the page and you should now see the red x axis label
176
+
177
+ === Cascading themes
178
+
179
+ To override the default column chart theme, you may now create an instance theme.
180
+
181
+ 1 - Create fred.yml in public/chart/themes/fred
182
+
183
+ 2 - Edit fred.yml as follows
184
+
185
+ <%= chart :column %>
186
+ <%=comp :axis_category %>
187
+ color: 00ff00
188
+
189
+ 3 - Edit your controller to indicate the instance theme name
190
+
191
+ chart = Ziya::Charts.Column.new( nil, 'fred' )
192
+
193
+ 4 - Reload the page - The x axis category labels should now be green.
194
+
195
+ NOTE: There are lots of setup example for themes in the ziya-galeria app at
196
+ git://github.com/derailed/ziya-galeria.git.
197
+ The themes component follows the xml/swf xml settings for configuration which
198
+ are documented here http://www.maani.us/xml_charts/index.php?menu=Reference
199
+
200
+ === Using theme helpers
201
+
202
+ Just like rails view template helpers, ZiYa support helpers for theme stylesheets.
203
+ In order to use a helper for your chart you will need to use the following steps:
204
+
205
+ 1 - Create a ziya directory under app/helpers
206
+ 2 - Create a file called fred_helper.rb
207
+ 3 - Edit fred_helper.rb and add the following lines
208
+
209
+ module Ziya::FredHelper
210
+ def random_color
211
+ %w[ffaa00 aaff00 aabbff][rand(3)]
212
+ end
213
+ end
214
+
215
+ 4 - Edit you theme stylesheet to call the helper method
216
+
217
+ In fred.yml
218
+
219
+ <%= chart :column %>
220
+ <%=comp :axis_category %>
221
+ color: <%= random_color %>
222
+
223
+ 5 - Edit you config/initializer/ziya.rb and add the following line
224
+
225
+ # Initializes the ZiYa Framework
226
+ Ziya.initialize( :logger => RAILS_DEFAULT_LOGGER,
227
+ :helpers_dir => File.join( File.dirname(__FILE__), %w[.. .. app helpers ziya] ), # <-- New line !!
228
+ :themes_dir => File.join( File.dirname(__FILE__), %w[.. .. public charts themes])
229
+ )
230
+
231
+ 6 - Restart your app server
232
+ 7 - Reload the page serveral time and watch the x axis label color change
233
+
234
+ == Creating a gauge for a rails application
159
235
 
160
236
  You will need to modify the ziya initializer and add the following directive
161
237
 
162
238
  Ziya.initialize(
163
239
  :logger => RAILS_DEFAULT_LOGGER,
164
- :helpers_dir => File.join( File.dirname(__FILE__), %w[.. .. app helpers ziya] ),
165
240
  :designs_dir => File.join( File.dirname(__FILE__), %w[.. .. public gauges designs] ), # => Add this !!
166
241
  :themes_dir => File.join( File.dirname(__FILE__), %w[.. .. public charts themes]) )
167
242
 
data/bin/ziyafy CHANGED
@@ -12,6 +12,7 @@ module Ziya
12
12
  def initialize( argv=ARGV )
13
13
  option_parser = default_option_parser
14
14
  option_parser.parse!(argv)
15
+ puts 'You must specify at least one off --charts, --gauges or --maps' unless options.charts or options.gauges or options.maps
15
16
  copy_artifacts
16
17
  end
17
18
 
@@ -21,28 +22,28 @@ module Ziya
21
22
  if options.send( s )
22
23
  dest_dir = File.join( options.public_dir )
23
24
  src_dir = File.expand_path( File.join( File.dirname(__FILE__), %w[.. resources], s ) )
24
- puts "Installing ZiYa artifacts in `#{dest_dir}"
25
- FileUtils.cp_r( src_dir, dest_dir )
25
+ puts "Installing ZiYa `#{s} artifacts in `#{dest_dir}"
26
+ ::FileUtils.cp_r( src_dir, dest_dir )
26
27
  end
27
28
  end
28
29
  end
29
30
 
30
31
  # access the options
31
32
  def options #:nodoc:
32
- if not @options then
33
+ unless @options
33
34
  @options = OpenStruct.new
34
35
  # Unless specified copy artifacts to the public directory
35
- @options.public_dir = File.join( Dir.pwd, %w[public] )
36
+ @options.public_dir = ::File.join( Dir.pwd, %w[public] )
36
37
  @options.charts = false
37
38
  @options.gauges = false
38
39
  @options.maps = false
39
40
  end
40
- return @options
41
+ @options
41
42
  end
42
43
 
43
44
  # sets up cmd line args
44
45
  def default_option_parser #:nodoc:
45
- OptionParser.new do |op|
46
+ ::OptionParser.new do |op|
46
47
  op.separator ""
47
48
  op.separator "ziyafy options:"
48
49
 
data/lib/ziya/version.rb CHANGED
@@ -2,7 +2,7 @@ module Ziya
2
2
  module Version
3
3
  MAJOR = 2
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  # Returns the version string for the library.
8
8
  def self.version
data/ziya.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{ziya}
5
- s.version = "2.1.0"
5
+ s.version = "2.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Fernand Galiana"]
9
- s.date = %q{2009-05-26}
9
+ s.date = %q{2009-06-08}
10
10
  s.default_executable = %q{ziyafy}
11
11
  s.description = %q{Easily add charting to your rails/merb applications}
12
12
  s.email = %q{fernand@liquidrail.com}
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.extra_rdoc_files = ["History.txt", "README.txt", "bin/ziyafy", "examples/charts/public/charts/themes/readme.txt", "examples/maps/public/maps/themes/readme.txt", "release_notes.txt", "resources/charts/themes/readme.txt", "resources/maps/themes/readme.txt"]
15
15
  s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/ziyafy", "examples/charts/basic_chart.rb", "examples/charts/public/charts/AC_RunActiveContent.js", "examples/charts/public/charts/charts.swf", "examples/charts/public/charts/charts_library/ar3d.swf", "examples/charts/public/charts/charts_library/arno.swf", "examples/charts/public/charts/charts_library/ars3.swf", "examples/charts/public/charts/charts_library/arst.swf", "examples/charts/public/charts/charts_library/brfl.swf", "examples/charts/public/charts/charts_library/brno.swf", "examples/charts/public/charts/charts_library/brst.swf", "examples/charts/public/charts/charts_library/buno.swf", "examples/charts/public/charts/charts_library/cl3d.swf", "examples/charts/public/charts/charts_library/clfl.swf", "examples/charts/public/charts/charts_library/clim.swf", "examples/charts/public/charts/charts_library/clno.swf", "examples/charts/public/charts/charts_library/clp3.swf", "examples/charts/public/charts/charts_library/cls3.swf", "examples/charts/public/charts/charts_library/clst.swf", "examples/charts/public/charts/charts_library/cnno.swf", "examples/charts/public/charts/charts_library/dono.swf", "examples/charts/public/charts/charts_library/lnno.swf", "examples/charts/public/charts/charts_library/mxno.swf", "examples/charts/public/charts/charts_library/pi3d.swf", "examples/charts/public/charts/charts_library/piim.swf", "examples/charts/public/charts/charts_library/pino.swf", "examples/charts/public/charts/charts_library/pono.swf", "examples/charts/public/charts/charts_library/scno.swf", "examples/charts/public/charts/full_screen.swf", "examples/charts/public/charts/scripts/output_jpg.php", "examples/charts/public/charts/sliders/black.swf", "examples/charts/public/charts/sliders/preview_handle_1.swf", "examples/charts/public/charts/sliders/preview_handle_2.swf", "examples/charts/public/charts/themes/cool_theme/column_chart.yml", "examples/charts/public/charts/themes/readme.txt", "examples/charts/views/index.erb", "examples/maps/basic_map.rb", "examples/maps/helpers/map_helper.rb", "examples/maps/models/confidential_herpes_report.rb", "examples/maps/public/javascripts/jquery-1.3.2.js", "examples/maps/public/map.xml", "examples/maps/public/maps/js/Exception.js", "examples/maps/public/maps/js/FlashProxy.js", "examples/maps/public/maps/js/FlashSerializer.js", "examples/maps/public/maps/js/FlashTag.js", "examples/maps/public/maps/js/JavaScriptFlashGateway.js", "examples/maps/public/maps/js/JavaScriptFlashGateway.swf", "examples/maps/public/maps/map_library/australia.swf", "examples/maps/public/maps/map_library/belgium.swf", "examples/maps/public/maps/map_library/brazil.swf", "examples/maps/public/maps/map_library/canada.swf", "examples/maps/public/maps/map_library/europe.swf", "examples/maps/public/maps/map_library/france.swf", "examples/maps/public/maps/map_library/germany.swf", "examples/maps/public/maps/map_library/italy.swf", "examples/maps/public/maps/map_library/mexico.swf", "examples/maps/public/maps/map_library/sweden.swf", "examples/maps/public/maps/map_library/uk_ireland.swf", "examples/maps/public/maps/map_library/us.swf", "examples/maps/public/maps/map_library/us_canada.swf", "examples/maps/public/maps/map_library/world.swf", "examples/maps/public/maps/themes/default/base_map.yml", "examples/maps/public/maps/themes/default/us_map.yml", "examples/maps/public/maps/themes/default/us_map_2.yml", "examples/maps/public/maps/themes/readme.txt", "examples/maps/public/stylesheets/map.css", "examples/maps/views/index.erb", "examples/maps/views/layout.erb", "lib/ziya.rb", "lib/ziya/charts/area.rb", "lib/ziya/charts/area_threed.rb", "lib/ziya/charts/bar.rb", "lib/ziya/charts/base.rb", "lib/ziya/charts/bubble.rb", "lib/ziya/charts/candle_stick.rb", "lib/ziya/charts/column.rb", "lib/ziya/charts/column_threed.rb", "lib/ziya/charts/custom.rb", "lib/ziya/charts/donut.rb", "lib/ziya/charts/floating_bar.rb", "lib/ziya/charts/floating_column.rb", "lib/ziya/charts/image_column.rb", "lib/ziya/charts/image_pie.rb", "lib/ziya/charts/line.rb", "lib/ziya/charts/mixed.rb", "lib/ziya/charts/parallel_threed_column.rb", "lib/ziya/charts/pie.rb", "lib/ziya/charts/pie_threed.rb", "lib/ziya/charts/polar.rb", "lib/ziya/charts/scatter.rb", "lib/ziya/charts/stacked_area.rb", "lib/ziya/charts/stacked_bar.rb", "lib/ziya/charts/stacked_column.rb", "lib/ziya/charts/stacked_threed_area.rb", "lib/ziya/charts/stacked_threed_column.rb", "lib/ziya/charts/support/area.rb", "lib/ziya/charts/support/axis_category.rb", "lib/ziya/charts/support/axis_ticks.rb", "lib/ziya/charts/support/axis_value.rb", "lib/ziya/charts/support/base.rb", "lib/ziya/charts/support/bevel.rb", "lib/ziya/charts/support/blur.rb", "lib/ziya/charts/support/button.rb", "lib/ziya/charts/support/chart_border.rb", "lib/ziya/charts/support/chart_grid_h.rb", "lib/ziya/charts/support/chart_grid_v.rb", "lib/ziya/charts/support/chart_guide.rb", "lib/ziya/charts/support/chart_label.rb", "lib/ziya/charts/support/chart_note.rb", "lib/ziya/charts/support/chart_pref.rb", "lib/ziya/charts/support/chart_rect.rb", "lib/ziya/charts/support/chart_transition.rb", "lib/ziya/charts/support/circle.rb", "lib/ziya/charts/support/context_menu.rb", "lib/ziya/charts/support/draw.rb", "lib/ziya/charts/support/draw_base.rb", "lib/ziya/charts/support/filter.rb", "lib/ziya/charts/support/flash_to_javascript.rb", "lib/ziya/charts/support/glow.rb", "lib/ziya/charts/support/image.rb", "lib/ziya/charts/support/legend.rb", "lib/ziya/charts/support/line.rb", "lib/ziya/charts/support/link.rb", "lib/ziya/charts/support/link_data.rb", "lib/ziya/charts/support/rect.rb", "lib/ziya/charts/support/scroll.rb", "lib/ziya/charts/support/series.rb", "lib/ziya/charts/support/series_color.rb", "lib/ziya/charts/support/series_explode.rb", "lib/ziya/charts/support/shadow.rb", "lib/ziya/charts/support/text.rb", "lib/ziya/charts/support/tooltip.rb", "lib/ziya/charts/support/update.rb", "lib/ziya/core_ext/string.rb", "lib/ziya/gauges/base.rb", "lib/ziya/gauges/radial.rb", "lib/ziya/gauges/signal.rb", "lib/ziya/gauges/support/area.rb", "lib/ziya/gauges/support/base.rb", "lib/ziya/gauges/support/circle.rb", "lib/ziya/gauges/support/design.rb", "lib/ziya/gauges/support/image.rb", "lib/ziya/gauges/support/line.rb", "lib/ziya/gauges/support/link.rb", "lib/ziya/gauges/support/move.rb", "lib/ziya/gauges/support/point.rb", "lib/ziya/gauges/support/polygon.rb", "lib/ziya/gauges/support/radial_base.rb", "lib/ziya/gauges/support/radial_numbers.rb", "lib/ziya/gauges/support/radial_ticks.rb", "lib/ziya/gauges/support/rect.rb", "lib/ziya/gauges/support/rotate.rb", "lib/ziya/gauges/support/scale.rb", "lib/ziya/gauges/support/text.rb", "lib/ziya/gauges/support/update.rb", "lib/ziya/gauges/thermo.rb", "lib/ziya/html_helpers.rb", "lib/ziya/html_helpers/base.rb", "lib/ziya/html_helpers/charts.rb", "lib/ziya/html_helpers/gauges.rb", "lib/ziya/html_helpers/maps.rb", "lib/ziya/maps/australia.rb", "lib/ziya/maps/base.rb", "lib/ziya/maps/belgium.rb", "lib/ziya/maps/brazil.rb", "lib/ziya/maps/canada.rb", "lib/ziya/maps/europe.rb", "lib/ziya/maps/france.rb", "lib/ziya/maps/geocode.rb", "lib/ziya/maps/germany.rb", "lib/ziya/maps/italy.rb", "lib/ziya/maps/mexico.rb", "lib/ziya/maps/support/arc.rb", "lib/ziya/maps/support/arc_color.rb", "lib/ziya/maps/support/arc_range.rb", "lib/ziya/maps/support/background_color.rb", "lib/ziya/maps/support/base.rb", "lib/ziya/maps/support/default_color.rb", "lib/ziya/maps/support/default_point.rb", "lib/ziya/maps/support/first_zoom.rb", "lib/ziya/maps/support/heat_range.rb", "lib/ziya/maps/support/hover.rb", "lib/ziya/maps/support/line.rb", "lib/ziya/maps/support/line_color.rb", "lib/ziya/maps/support/line_range.rb", "lib/ziya/maps/support/outline_color.rb", "lib/ziya/maps/support/point.rb", "lib/ziya/maps/support/point_range.rb", "lib/ziya/maps/support/range.rb", "lib/ziya/maps/support/ranges.rb", "lib/ziya/maps/support/region.rb", "lib/ziya/maps/support/scale_points.rb", "lib/ziya/maps/support/show_name.rb", "lib/ziya/maps/support/state.rb", "lib/ziya/maps/support/state_info_icon.rb", "lib/ziya/maps/support/zoom_mode.rb", "lib/ziya/maps/support/zoom_out_button.rb", "lib/ziya/maps/support/zoom_out_scale.rb", "lib/ziya/maps/sweden.rb", "lib/ziya/maps/uk.rb", "lib/ziya/maps/us.rb", "lib/ziya/maps/world.rb", "lib/ziya/utils/logger.rb", "lib/ziya/version.rb", "lib/ziya/yaml_helpers.rb", "lib/ziya/yaml_helpers/base.rb", "lib/ziya/yaml_helpers/charts.rb", "lib/ziya/yaml_helpers/gauges.rb", "lib/ziya/yaml_helpers/maps.rb", "release_notes.txt", "resources/charts/AC_RunActiveContent.js", "resources/charts/charts.swf", "resources/charts/charts_library/ar3d.swf", "resources/charts/charts_library/arno.swf", "resources/charts/charts_library/ars3.swf", "resources/charts/charts_library/arst.swf", "resources/charts/charts_library/brfl.swf", "resources/charts/charts_library/brno.swf", "resources/charts/charts_library/brst.swf", "resources/charts/charts_library/buno.swf", "resources/charts/charts_library/cl3d.swf", "resources/charts/charts_library/clfl.swf", "resources/charts/charts_library/clim.swf", "resources/charts/charts_library/clno.swf", "resources/charts/charts_library/clp3.swf", "resources/charts/charts_library/cls3.swf", "resources/charts/charts_library/clst.swf", "resources/charts/charts_library/cnno.swf", "resources/charts/charts_library/dono.swf", "resources/charts/charts_library/lnno.swf", "resources/charts/charts_library/mxno.swf", "resources/charts/charts_library/pi3d.swf", "resources/charts/charts_library/piim.swf", "resources/charts/charts_library/pino.swf", "resources/charts/charts_library/pono.swf", "resources/charts/charts_library/scno.swf", "resources/charts/full_screen.swf", "resources/charts/scripts/output_jpg.php", "resources/charts/sliders/black.swf", "resources/charts/sliders/preview_handle_1.swf", "resources/charts/sliders/preview_handle_2.swf", "resources/charts/themes/readme.txt", "resources/gauges/designs/circle.yml", "resources/gauges/designs/signal.yml", "resources/gauges/designs/thermo.yml", "resources/gauges/designs/title.yml", "resources/gauges/gauge.swf", "resources/maps/js/Exception.js", "resources/maps/js/FlashProxy.js", "resources/maps/js/FlashSerializer.js", "resources/maps/js/FlashTag.js", "resources/maps/js/JavaScriptFlashGateway.js", "resources/maps/js/JavaScriptFlashGateway.swf", "resources/maps/map_library/australia.swf", "resources/maps/map_library/belgium.swf", "resources/maps/map_library/brazil.swf", "resources/maps/map_library/canada.swf", "resources/maps/map_library/europe.swf", "resources/maps/map_library/france.swf", "resources/maps/map_library/germany.swf", "resources/maps/map_library/italy.swf", "resources/maps/map_library/mexico.swf", "resources/maps/map_library/sweden.swf", "resources/maps/map_library/uk_ireland.swf", "resources/maps/map_library/us.swf", "resources/maps/map_library/us_canada.swf", "resources/maps/map_library/world.swf", "resources/maps/themes/readme.txt", "spec/charts/base_spec.rb", "spec/charts/chart_type_spec.rb", "spec/charts/support/area_spec.rb", "spec/charts/support/draw_spec.rb", "spec/charts/support/filter_spec.rb", "spec/charts/support/link_spec.rb", "spec/charts/support/series.rb", "spec/charts/support/series_color_spec.rb", "spec/charts/support/series_explode.rb", "spec/charts/support/series_explode_spec.rb", "spec/core_ext/string_spec.rb", "spec/designs/circle.yml", "spec/designs/crapping_out.yml", "spec/designs/gauge_1.yml", "spec/designs/gauge_2.yml", "spec/designs/gauge_no_name.yml", "spec/designs/gauge_raw.yml", "spec/designs/thermo.yml", "spec/gauges/base_spec.rb", "spec/gauges/signal_spec.rb", "spec/gauges/support/area_spec.rb", "spec/gauges/support/circle_spec.rb", "spec/gauges/support/image_spec.rb", "spec/gauges/support/line_spec.rb", "spec/gauges/support/link_spec.rb", "spec/gauges/support/move_spec.rb", "spec/gauges/support/polygon_spec.rb", "spec/gauges/support/radial_numbers_spec.rb", "spec/gauges/support/radial_ticks_spec.rb", "spec/gauges/support/rotate_spec.rb", "spec/gauges/support/scale_spec.rb", "spec/gauges/support/text_spec.rb", "spec/gauges/thermo_spec.rb", "spec/html_helpers/base_spec.rb", "spec/html_helpers/charts_spec.rb", "spec/html_helpers/gauges_spec.rb", "spec/html_helpers/maps_spec.rb", "spec/maps/base_spec.rb", "spec/maps/support/default_color_spec.rb", "spec/maps/support/heat_range_spec.rb", "spec/maps/us_spec.rb", "spec/maps/world_spec.rb", "spec/spec_helper.rb", "spec/test_helpers/gauge_2_helper.rb", "spec/themes/default/fred.yml", "spec/themes/default/line_chart.yml", "spec/themes/maps/base_map.yml", "spec/themes/maps/us_map.yml", "spec/themes/maps/world_map.yml", "spec/themes/maps/world_ov_map.yml", "spec/utils/logger_spec.rb", "spec/yaml_helpers/charts_spec.rb", "spec/yaml_helpers/gauges_spec.rb", "spec/ziya_helper_spec.rb", "spec/ziya_spec.rb", "tasks/ann.rake", "tasks/annotations.rake", "tasks/doc.rake", "tasks/gem.rake", "tasks/manifest.rake", "tasks/post_load.rake", "tasks/rubyforge.rake", "tasks/setup.rb", "tasks/spec.rake", "tasks/svn.rake", "tasks/test.rake", "ziya.gemspec"]
16
16
  s.has_rdoc = true
17
- s.homepage = %q{http://ziya.rubyforge.org}
17
+ s.homepage = %q{http://github.com/derailed/ziya/tree/master}
18
18
  s.rdoc_options = ["--main", "README.txt"]
19
19
  s.require_paths = ["lib"]
20
20
  s.rubyforge_project = %q{ziya}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: derailed-ziya
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
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: 2009-05-26 00:00:00 -07:00
12
+ date: 2009-06-08 00:00:00 -07:00
13
13
  default_executable: ziyafy
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -388,7 +388,7 @@ files:
388
388
  - tasks/test.rake
389
389
  - ziya.gemspec
390
390
  has_rdoc: true
391
- homepage: http://ziya.rubyforge.org
391
+ homepage: http://github.com/derailed/ziya/tree/master
392
392
  post_install_message:
393
393
  rdoc_options:
394
394
  - --main