derailed-ziya 2.1.4 → 2.1.5
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/README.txt +4 -1
- data/examples/maps/basic_map.rb +0 -9
- data/lib/ziya/charts/base.rb +1 -0
- data/lib/ziya/charts/support/draw.rb +8 -0
- data/lib/ziya/charts/support/link.rb +8 -0
- data/lib/ziya/html_helpers/gauges.rb +2 -2
- data/lib/ziya/version.rb +1 -1
- data/spec/html_helpers/gauges_spec.rb +1 -1
- data/ziya.gemspec +3 -3
- metadata +3 -4
- data/History.txt +0 -4
    
        data/README.txt
    CHANGED
    
    | @@ -31,7 +31,10 @@ | |
| 31 31 | 
             
                      You can now add extra attributes that will be passed to the generated image component.
         | 
| 32 32 | 
             
              2.1.4 - Added support for xm/swf 5.0.8
         | 
| 33 33 | 
             
                    - Removed dependency on logging gem version
         | 
| 34 | 
            -
             | 
| 34 | 
            +
              2.1.5 - Added ability to enhance draw and link components in subsequent stylesheets. The old
         | 
| 35 | 
            +
                      behavior was to simply override the whole component. Now you can keep enhancing these components
         | 
| 36 | 
            +
                      in higher level stylesheets.
         | 
| 37 | 
            +
                      
         | 
| 35 38 | 
             
            == DESCRIPTION:
         | 
| 36 39 |  | 
| 37 40 | 
             
            ZiYa allows you to easily create interactive charts, gauges and maps for your web applications. ZiYa leverages
         | 
    
        data/examples/maps/basic_map.rb
    CHANGED
    
    | @@ -29,11 +29,6 @@ helpers do | |
| 29 29 | 
             
              include Ziya::YamlHelpers::Maps    
         | 
| 30 30 | 
             
            end
         | 
| 31 31 |  | 
| 32 | 
            -
            # get '/blee' do
         | 
| 33 | 
            -
            #   puts "AJAX Request", request.xhr?
         | 
| 34 | 
            -
            # end
         | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 32 | 
             
            # -----------------------------------------------------------------------------
         | 
| 38 33 | 
             
            # Point of entry. Sets up the map and the map callback to get the map data
         | 
| 39 34 | 
             
            get '/' do
         | 
| @@ -58,10 +53,6 @@ get '/load_map_2' do | |
| 58 53 | 
             
              map.to_xml
         | 
| 59 54 | 
             
            end
         | 
| 60 55 |  | 
| 61 | 
            -
            get '/blee' do
         | 
| 62 | 
            -
              puts "HERE!!!!"
         | 
| 63 | 
            -
            end
         | 
| 64 | 
            -
             | 
| 65 56 | 
             
            # -----------------------------------------------------------------------------
         | 
| 66 57 | 
             
            # Map callback - Gets the state information and setup theme for look and feel.
         | 
| 67 58 | 
             
            get '/refresh_map_2' do
         | 
    
        data/lib/ziya/charts/base.rb
    CHANGED
    
    | @@ -304,6 +304,7 @@ module Ziya::Charts | |
| 304 304 | 
             
                    categories.each do |category|
         | 
| 305 305 | 
             
                      case
         | 
| 306 306 | 
             
                        when category.nil?                 : @xml.null
         | 
| 307 | 
            +
                        when category.instance_of?(Symbol) : @xml.string( category.to_s )
         | 
| 307 308 | 
             
                        when category.instance_of?(String) : @xml.string( category )
         | 
| 308 309 | 
             
                        when category.respond_to?(:zero?)  : @xml.number( category )
         | 
| 309 310 | 
             
                        when category.is_a?(Hash)          : categ = category.clone;gen_row_data( categ.delete( :value ), categ, @xml )
         | 
| @@ -22,6 +22,14 @@ module Ziya::Charts::Support | |
| 22 22 |  | 
| 23 23 | 
             
                has_attribute :components
         | 
| 24 24 |  | 
| 25 | 
            +
                # -------------------------------------------------------------------------
         | 
| 26 | 
            +
                # Override merge attributes enhance component definitions vs override
         | 
| 27 | 
            +
                def merge( parent_attributes, override=false )
         | 
| 28 | 
            +
                  comps = send( :components ) || []
         | 
| 29 | 
            +
                  comps = comps + parent_attributes.send( :components ) if parent_attributes.send( :components )
         | 
| 30 | 
            +
                  send( "components=", comps )      
         | 
| 31 | 
            +
                end
         | 
| 32 | 
            +
                                     
         | 
| 25 33 | 
             
                # -------------------------------------------------------------------------
         | 
| 26 34 | 
             
                # Dump has_attribute into xml element
         | 
| 27 35 | 
             
                def flatten( xml, composite_urls=nil )
         | 
| @@ -16,6 +16,14 @@ module Ziya::Charts::Support | |
| 16 16 | 
             
              class Link < Base  
         | 
| 17 17 | 
             
                has_attribute :areas
         | 
| 18 18 |  | 
| 19 | 
            +
                # -------------------------------------------------------------------------
         | 
| 20 | 
            +
                # Override merge attributes enhance component definitions vs override
         | 
| 21 | 
            +
                def merge( parent_attributes, override=false )
         | 
| 22 | 
            +
                  comps = send( :areas ) || []
         | 
| 23 | 
            +
                  comps = comps + parent_attributes.send( :areas ) if parent_attributes.send( :areas )
         | 
| 24 | 
            +
                  send( "areas=", comps )
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
                                 
         | 
| 19 27 | 
             
                # -------------------------------------------------------------------------
         | 
| 20 28 | 
             
                # Dump has_attribute into xml element
         | 
| 21 29 | 
             
                def flatten( xml )
         | 
| @@ -34,7 +34,7 @@ module Ziya::HtmlHelpers::Gauges | |
| 34 34 | 
             
                  :id             => "ziya_gauge",
         | 
| 35 35 | 
             
                  :swf_path       => gauge_path,
         | 
| 36 36 | 
             
                  :use_cache      => false,
         | 
| 37 | 
            -
                  :timeout        =>  | 
| 37 | 
            +
                  :timeout        => 30,
         | 
| 38 38 | 
             
                  :retry          => 2,
         | 
| 39 39 | 
             
                  :use_stage      => false }    
         | 
| 40 40 | 
             
              end
         | 
| @@ -51,7 +51,7 @@ module Ziya::HtmlHelpers::Gauges | |
| 51 51 |  | 
| 52 52 | 
             
                xml_swf_path = swf_path % [options[:swf_path], url]
         | 
| 53 53 | 
             
                xml_swf_path << "&timestamp=#{Time.now.to_i}" if options[:use_cache] == true
         | 
| 54 | 
            -
                xml_swf_path << "&timeout=#{options[:timeout]}&retry=#{options[:retry]}" if options[:timeout] | 
| 54 | 
            +
                xml_swf_path << "&timeout=#{options[:timeout]}&retry=#{options[:retry]}" if options[:timeout]
         | 
| 55 55 | 
             
                xml_swf_path << "&stage_width=#{options[:width]}&stage_height=#{options[:height]}" if options[:use_stage] == true
         | 
| 56 56 | 
             
                tags = <<-TAGS
         | 
| 57 57 | 
             
                  <object codebase="#{codebase}" classid="#{options[:class_id]}" id="#{options[:id]}" height="#{options[:height]}" width="#{options[:width]}">
         | 
    
        data/lib/ziya/version.rb
    CHANGED
    
    
| @@ -9,7 +9,7 @@ describe Ziya::HtmlHelpers::Gauges do | |
| 9 9 | 
             
              end
         | 
| 10 10 |  | 
| 11 11 | 
             
              it "should generate the correct flash embed tag" do
         | 
| 12 | 
            -
                ziya_gauge( "/test/test_me", :swf_path => '/blee' ).should == "      <object codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"ziya_gauge\" height=\"200\" width=\"200\">\n        <param name=\"scale\" value=\"noscale\"/>\n        <param name=\"align\" value=\"middle\"/>            \n        <param name=\"bgcolor\" value=\"#FFFFFF\"/>\n        <param name=\"wmode\" value=\"transparent\"/>                                  \n        <param name=\"movie\" value=\"/blee/gauge.swf?xml_source=/test/test_me\"/>\n        <param name=\"menu\" value=\"true\"/>\n        <param name=\"allowFullScreen\" value=\"true\"/>\n        <param name=\"allowScriptAccess\" value=\"sameDomain\"/>            \n        <param name=\"quality\" value=\"high\"/>\n        <param name=\"play\" value=\"true\"/>                        \n        <param name=\"devicefont\" value=\"false\"/>\n        <embed scale=\"noscale\"\n          allowfullscreen=\"true\" \n          allowscriptaccess=\"sameDomain\" \n          bgcolor=\"#FFFFFF\" \n          devicefont=\"false\" \n          src=\"/blee/gauge.swf?xml_source=/test/test_me\" \n          menu=\"true\" \n          name=\"ziya_gauge\" \n          play=\"true\" \n          pluginspage=\"http://www.macromedia.com/go/getflashplayer\" \n          quality=\"high\" \n          salign=\"\" \n          src=\"/blee/gauge.swf?xml_source=/test/test_me\" \n          type=\"application/x-shockwave-flash\" \n          wmode=\"transparent\" \n          salign=\"\" \n          height=\"200\" \n          width=\"200\">\n     </object>        \n"
         | 
| 12 | 
            +
                ziya_gauge( "/test/test_me", :swf_path => '/blee' ).should == "      <object codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" id=\"ziya_gauge\" height=\"200\" width=\"200\">\n        <param name=\"scale\" value=\"noscale\"/>\n        <param name=\"align\" value=\"middle\"/>            \n        <param name=\"bgcolor\" value=\"#FFFFFF\"/>\n        <param name=\"wmode\" value=\"transparent\"/>                                  \n        <param name=\"movie\" value=\"/blee/gauge.swf?xml_source=/test/test_me&timeout=30&retry=2\"/>\n        <param name=\"menu\" value=\"true\"/>\n        <param name=\"allowFullScreen\" value=\"true\"/>\n        <param name=\"allowScriptAccess\" value=\"sameDomain\"/>            \n        <param name=\"quality\" value=\"high\"/>\n        <param name=\"play\" value=\"true\"/>                        \n        <param name=\"devicefont\" value=\"false\"/>\n        <embed scale=\"noscale\"\n          allowfullscreen=\"true\" \n          allowscriptaccess=\"sameDomain\" \n          bgcolor=\"#FFFFFF\" \n          devicefont=\"false\" \n          src=\"/blee/gauge.swf?xml_source=/test/test_me&timeout=30&retry=2\" \n          menu=\"true\" \n          name=\"ziya_gauge\" \n          play=\"true\" \n          pluginspage=\"http://www.macromedia.com/go/getflashplayer\" \n          quality=\"high\" \n          salign=\"\" \n          src=\"/blee/gauge.swf?xml_source=/test/test_me&timeout=30&retry=2\" \n          type=\"application/x-shockwave-flash\" \n          wmode=\"transparent\" \n          salign=\"\" \n          height=\"200\" \n          width=\"200\">\n     </object>        \n"
         | 
| 13 13 | 
             
              end
         | 
| 14 14 |  | 
| 15 15 | 
             
            end
         | 
    
        data/ziya.gemspec
    CHANGED
    
    | @@ -3,7 +3,7 @@ | |
| 3 3 |  | 
| 4 4 | 
             
            Gem::Specification.new do |s|
         | 
| 5 5 | 
             
              s.name = %q{ziya}
         | 
| 6 | 
            -
              s.version = "2.1. | 
| 6 | 
            +
              s.version = "2.1.5"
         | 
| 7 7 |  | 
| 8 8 | 
             
              s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
         | 
| 9 9 | 
             
              s.authors = ["Fernand Galiana"]
         | 
| @@ -12,8 +12,8 @@ Gem::Specification.new do |s| | |
| 12 12 | 
             
              s.description = %q{Easily add charting to your rails/merb applications}
         | 
| 13 13 | 
             
              s.email = %q{fernand@liquidrail.com}
         | 
| 14 14 | 
             
              s.executables = ["ziyafy"]
         | 
| 15 | 
            -
              s.extra_rdoc_files = [" | 
| 16 | 
            -
              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"]
         | 
| 15 | 
            +
              s.extra_rdoc_files = ["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"]
         | 
| 16 | 
            +
              s.files = ["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"]
         | 
| 17 17 | 
             
              s.has_rdoc = true
         | 
| 18 18 | 
             
              s.homepage = %q{http://github.com/derailed/ziya/tree/master}
         | 
| 19 19 | 
             
              s.rdoc_options = ["--main", "README.txt"]
         | 
    
        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. | 
| 4 | 
            +
              version: 2.1.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors: 
         | 
| 7 7 | 
             
            - Fernand Galiana
         | 
| @@ -39,7 +39,6 @@ executables: | |
| 39 39 | 
             
            extensions: []
         | 
| 40 40 |  | 
| 41 41 | 
             
            extra_rdoc_files: 
         | 
| 42 | 
            -
            - History.txt
         | 
| 43 42 | 
             
            - README.txt
         | 
| 44 43 | 
             
            - bin/ziyafy
         | 
| 45 44 | 
             
            - examples/charts/public/charts/themes/readme.txt
         | 
| @@ -48,7 +47,6 @@ extra_rdoc_files: | |
| 48 47 | 
             
            - resources/charts/themes/readme.txt
         | 
| 49 48 | 
             
            - resources/maps/themes/readme.txt
         | 
| 50 49 | 
             
            files: 
         | 
| 51 | 
            -
            - History.txt
         | 
| 52 50 | 
             
            - Manifest.txt
         | 
| 53 51 | 
             
            - README.txt
         | 
| 54 52 | 
             
            - Rakefile
         | 
| @@ -389,6 +387,7 @@ files: | |
| 389 387 | 
             
            - ziya.gemspec
         | 
| 390 388 | 
             
            has_rdoc: true
         | 
| 391 389 | 
             
            homepage: http://github.com/derailed/ziya/tree/master
         | 
| 390 | 
            +
            licenses: 
         | 
| 392 391 | 
             
            post_install_message: 
         | 
| 393 392 | 
             
            rdoc_options: 
         | 
| 394 393 | 
             
            - --main
         | 
| @@ -410,7 +409,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 410 409 | 
             
            requirements: []
         | 
| 411 410 |  | 
| 412 411 | 
             
            rubyforge_project: ziya
         | 
| 413 | 
            -
            rubygems_version: 1. | 
| 412 | 
            +
            rubygems_version: 1.3.5
         | 
| 414 413 | 
             
            signing_key: 
         | 
| 415 414 | 
             
            specification_version: 2
         | 
| 416 415 | 
             
            summary: Easily add charting to your rails/merb applications
         | 
    
        data/History.txt
    DELETED