<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,10 @@
+== 1.3.4
+* updated documentation and cleaned it up (mokolabs)
+* added support for custom class, id and alt tags when using the image_tag format (i.e Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag')) (mokolabs)
+
+== 1.3.2 - 1.3.3
+* changes required by github
+
 == 1.3.1
 * added width and spacing options
 </diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,20 @@
 The goal of this Gem is to make the creation of Google Charts a simple and easy task.
 
-Gchart.line(  :size =&gt; '200x300', 
-              :title =&gt; &quot;example title&quot;,
-              :bg =&gt; 'efefef',
-              :legend =&gt; ['first data set label', 'second data set label'],
-              :data =&gt; [10, 30, 120, 45, 72])
+    Gchart.line(  :size =&gt; '200x300', 
+                  :title =&gt; &quot;example title&quot;,
+                  :bg =&gt; 'efefef',
+                  :legend =&gt; ['first data set label', 'second data set label'],
+                  :data =&gt; [10, 30, 120, 45, 72])
               
 
+Check out the [full documentation over there](http://googlecharts.rubyforge.org/)
 
-==Chart Type
+This gem is fully tested using Rspec, check the rspec folder for more examples.
+
+See at the bottom of this file who reported using this gem.
+
+Chart Type
+-------------
 
 This gem supports the following types of charts:
   
@@ -20,6 +26,7 @@ This gem supports the following types of charts:
   * venn
   * pie
   * pie_3d
+  * google meter
 
 To create a chart, simply require Gchart and call any of the existing type:
 
@@ -27,7 +34,8 @@ To create a chart, simply require Gchart and call any of the existing type:
     Gchart.pie
   
   
-==Chart Title
+Chart Title
+-------------
 
   To add a title to a chart pass the title to your chart:
   
@@ -37,7 +45,8 @@ You can also specify the color and/or size
     
     Gchart.line(:title =&gt; 'Sexy Charts!', :title_color =&gt; 'FF0000', :title_size =&gt; '20')
 
-==Colors
+Colors
+-------------
 
 Specify a color with at least a 6-letter string of hexadecimal values in the format RRGGBB. For example:
 
@@ -56,7 +65,8 @@ If you need to use multiple colors, check the doc. Usually you just need to pass
 
 Some charts have more options than other, make sure to refer to the documentation.
 
-===Background options:
+Background options:
+-------------
 
 If you don't set the background option, your graph will be transparent.
 
@@ -99,7 +109,8 @@ Another type of fill is stripes http://code.google.com/apis/chart/#linear_stripe
 You can customize the amount of stripes, colors and width by changing the color value.
     
     
-== Legend &amp; Labels
+Legend &amp; Labels
+-------------
 
 You probably will want to use a legend or labels for your graph.
 
@@ -111,7 +122,8 @@ Will do the trick. You can also use the labels alias (makes more sense when usin
 
     chart = Gchart.pie(:labels =&gt; ['label 1', 'label 2'])
 
-== Multiple axis labels 
+Multiple axis labels 
+-------------
 
 Multiple axis labels are available for line charts, bar charts and scatter plots.
 
@@ -127,32 +139,34 @@ To add labels on these axis:
     Gchart.line(:axis_labels =&gt; ['Jan|July|Jan|July|Jan', '0|100', 'A|B|C', '2005|2006|2007'])
 
     
-== Data options
+Data options
+-------------
 
 Data are passed using an array or a nested array.    
 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234])  
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234])  
   
-  Gchart.bar(:data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]])
+    Gchart.bar(:data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]])
   
 By default, the graph is drawn with your max value representing 100% of the height or width of the graph. You can change that my passing the max value.
 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 300)
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 'auto')
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 300)
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 'auto')
   
 or if you want to use the real values from your dataset:
 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; false)
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; false)
   
   
 You can also define a different encoding to add more granularity:
 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'simple') 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'extended') 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'text') 
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'simple') 
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'extended') 
+    Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'text') 
   
 
-==Pies:
+Pies:
+-------------
   
 you have 2 type of pies:
   - Gchart.pie() the standard 2D pie
@@ -164,40 +178,68 @@ To set labels, you can use one of these two options:
     Gchart.pie_3d(:title =&gt; @title, :labels =&gt; @legend, :data =&gt; @data, :size =&gt; '400x200')
     Gchart.pie_3d(:title =&gt; @title, :legend =&gt; @legend, :data =&gt; @data, :size =&gt; '400x200')
   
-==Bars:
+Bars:
+-------------
 
 A bar chart can accept options to set the width of the bars, spacing between bars and spacing between bar groups. To set these, you can either provide a string, array or hash.
 
 The Google API sets these options in the order of width, spacing, and group spacing, with both spacing values being optional. So, if you provide a string or array, provide them in that order:
 
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6') # width of 25, spacing of 6
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6,12') # width of 25, spacing of 6, group spacing of 12
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; [25,6]) # width of 25, spacing of 6
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; 25) # width of 25
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6') # width of 25, spacing of 6
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6,12') # width of 25, spacing of 6, group spacing of 12
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; [25,6]) # width of 25, spacing of 6
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; 25) # width of 25
   
 The hash lets you set these values directly, with the Google default values set for any options you don't include:
 
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:width =&gt; 19})
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:spacing =&gt; 10, :group_spacing =&gt; 12})
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:width =&gt; 19})
+    Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:spacing =&gt; 10, :group_spacing =&gt; 12})
 
-==Sparklines:
+Sparklines:
+-------------
 
 A sparkline chart has exactly the same parameters as a line chart. The only difference is that the axes lines are not drawn for sparklines by default.
   
 
-==Google-o-meter
+Google-o-meter
+-------------
 
 A Google-o-meter has a few restrictions. It may only use a solid filled background and it may only have one label.
 
-=== try yourself
+try yourself
+-------------
 
-Gchart.bar( :data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]], 
-            :title =&gt; 'SD Ruby Fu level', 
-            :legend =&gt; ['matt','patrick'], 
-            :bg =&gt; {:color =&gt; '76A4FB', :type =&gt; 'gradient'}, 
-            :bar_colors =&gt; 'ff0000,00ff00')
+    Gchart.bar( :data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]], 
+                :title =&gt; 'SD Ruby Fu level', 
+                :legend =&gt; ['matt','patrick'], 
+                :bg =&gt; {:color =&gt; '76A4FB', :type =&gt; 'gradient'}, 
+                :bar_colors =&gt; 'ff0000,00ff00')
 
  &quot;http://chart.apis.google.com/chart?chs=300x200&amp;chdl=matt|patrick&amp;chd=s:AAANUIv,JENCN9y&amp;chtt=SDRuby+Fu+level&amp;chf=bg,lg,0,76A4FB,0,ffffff,1&amp;cht=bvs&amp;chco=ff0000,00ff00&quot;  
  
-Gchart.pie(:data =&gt; [20,10,15,5,50], :title =&gt; 'SDRuby Fu level', :size =&gt; '400x200', :labels =&gt; ['matt', 'rob', 'patrick', 'ryan', 'jordan'])
+    Gchart.pie(:data =&gt; [20,10,15,5,50], :title =&gt; 'SDRuby Fu level', :size =&gt; '400x200', :labels =&gt; ['matt', 'rob', 'patrick', 'ryan', 'jordan'])
 http://chart.apis.google.com/chart?cht=p&amp;chs=400x200&amp;chd=s:YMSG9&amp;chtt=SDRuby+Fu+level&amp;chl=matt|rob|patrick|ryan|jordan
+
+
+People reported using this gem:
+---------------------
+
+![github](http://img.skitch.com/20080627-r14subqdx2ye3w13qefbx974gc.png)
+
+* [http://github.com](http://github.com) 
+
+![stafftool.com](http://stafftool.com/images/masthead_screen.gif)
+
+* [http://stafftool.com/](http://stafftool.com/) Takeo (contributor)
+
+![graffletopia.com](http://img.skitch.com/20080627-g2pp89h7gdbh15m1rr8hx48jep.jpg) 
+
+* [graffleropia.com](http://graffletopia.com) Mokolabs (contributor)
+
+![gumgum](http://img.skitch.com/20080627-kc1weqsbkmxeqhwiyriq3n6g8k.jpg)
+
+* [http://gumgum.com](http://gumgum.com) Mattetti (Author)
+
+![http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg]
+
+* [http://feedflix.com/](http://feedflix.com/) [lifehacker article](http://lifehacker.com/395610/feedflix-creates-detailed-charts-from-your-netflix-use)
\ No newline at end of file</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -1,180 +1,9 @@
-The goal of this Gem is to make the creation of Google Charts a simple and easy task.
+CHECK README.markdown  (open as a text file)
 
-Gchart.line(  :size =&gt; '200x300', 
-              :title =&gt; &quot;example title&quot;,
-              :bg =&gt; 'efefef',
-              :legend =&gt; ['first data set label', 'second data set label'],
-              :data =&gt; [10, 30, 120, 45, 72])
-              
+Or check:
 
+  http://googlecharts.rubyforge.org
 
-==Chart Type
+and/or 
 
-This gem supports the following types of charts:
-  
-  * line, 
-  * line_xy
-  * sparkline
-  * scatter
-  * bar
-  * venn
-  * pie
-  * pie_3d
-
-To create a chart, simply require Gchart and call any of the existing type:
-
-    require 'gchart'
-    Gchart.pie
-  
-  
-==Chart Title
-
-  To add a title to a chart pass the title to your chart:
-  
-    Gchart.line(:title =&gt; 'Sexy Charts!')
-    
-You can also specify the color and/or size
-    
-    Gchart.line(:title =&gt; 'Sexy Charts!', :title_color =&gt; 'FF0000', :title_size =&gt; '20')
-
-==Colors
-
-Specify a color with at least a 6-letter string of hexadecimal values in the format RRGGBB. For example:
-
-    * FF0000 = red
-    * 00FF00 = green
-    * 0000FF = blue
-    * 000000 = black
-    * FFFFFF = white
-
-You can optionally specify transparency by appending a value between 00 and FF where 00 is completely transparent and FF completely opaque. For example:
-
-    * 0000FFFF = solid blue
-    * 0000FF00 = transparent blue
-
-If you need to use multiple colors, check the doc. Usually you just need to pass :attribute =&gt; 'FF0000,00FF00'
-
-Some charts have more options than other, make sure to refer to the documentation.
-
-===Background options:
-
-If you don't set the background option, your graph will be transparent.
-
-* You have 3 types of background  http://code.google.com/apis/chart/#chart_or_background_fill
-
-- solid
-- gradient
-- stripes
-
-By default, if you set a background color, the fill will be solid:
-
-    Gchart.bar(:bg =&gt; 'efefef')
-
-However you can specify another fill type such as:
-            
-    Gchart.line(:bg =&gt; {:color =&gt; 'efefef', :type =&gt; 'gradient'})
-  
-In the above code, we decided to have a gradient background, however since we only passed one color, the chart will start by the specified color and transition to white. By the default, the gradient angle is 0. Change it as follows:
-
-    Gchart.line(:title =&gt;'bg example', :bg =&gt; {:color =&gt; 'efefef', :type =&gt; 'gradient', :angle =&gt; 90})
-    
-For a more advance use of colors, refer to http://code.google.com/apis/chart/#linear_gradient
-
-    Gchart.line(:bg =&gt; {:color =&gt; '76A4FB,1,ffffff,0', :type =&gt; 'gradient'})
-    
-    
-The same way you set the background color, you can also set the graph background:
-
-    Gchart.line(:graph_bg =&gt; 'cccccc')
-    
-or both
-
-    Gchart.line(:bg =&gt; {:color =&gt; '76A4FB,1,ffffff,0', :type =&gt; 'gradient'}, :graph_bg =&gt; 'cccccc', :title =&gt; 'Sexy Chart')
-    
-    
-Another type of fill is stripes http://code.google.com/apis/chart/#linear_stripes
-
-    Gchart.line(:bg =&gt; {:color =&gt; 'efefef', :type =&gt; 'stripes'})
-    
-You can customize the amount of stripes, colors and width by changing the color value.
-    
-    
-== Legend &amp; Labels
-
-You probably will want to use a legend or labels for your graph.
-
-    Gchart.line(:legend =&gt; 'legend label')
-or
-    Gchart.line(:legend =&gt; ['legend label 1', 'legend label 2'])
-    
-Will do the trick. You can also use the labels alias (makes more sense when using the pie charts)
-
-    chart = Gchart.pie(:labels =&gt; ['label 1', 'label 2'])
-
-== Multiple axis labels 
-
-Multiple axis labels are available for line charts, bar charts and scatter plots.
-
-* x = bottom x-axis
-* t = top x-axis
-* y = left y-axis
-* r = right y-axis
-
-    Gchart.line(:label_axis =&gt; 'x,y,r')
-  
-To add labels on these axis:
-
-    Gchart.line(:axis_labels =&gt; ['Jan|July|Jan|July|Jan', '0|100', 'A|B|C', '2005|2006|2007'])
-
-    
-== Data options
-
-Data are passed using an array or a nested array.    
-
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234])  
-  
-  Gchart.bar(:data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]])
-  
-By default, the graph is drawn with your max value representing 100% of the height or width of the graph. You can change that my passing the max value.
-
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 300)
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; 'auto')
-  
-or if you want to use the real values from your dataset:
-
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :max_value =&gt; false)
-  
-  
-You can also define a different encoding to add more granularity:
-
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'simple') 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'extended') 
-  Gchart.bar(:data =&gt; [1,2,4,67,100,41,234], :encoding =&gt; 'text') 
-  
-
-==Pies:
-  
-you have 2 type of pies:
-  - Gchart.pie() the standard 2D pie
-  _ Gchart.pie_3d() the fancy 3D pie
-  
-To set labels, you can use one of these two options:
-
-    @legend = ['Matt_fu', 'Rob_fu']
-    Gchart.pie_3d(:title =&gt; @title, :labels =&gt; @legend, :data =&gt; @data, :size =&gt; '400x200')
-    Gchart.pie_3d(:title =&gt; @title, :legend =&gt; @legend, :data =&gt; @data, :size =&gt; '400x200')
-  
-  
-  
-=== try yourself
-
-Gchart.bar( :data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]], 
-            :title =&gt; 'SDRuby Fu level', 
-            :legend =&gt; ['matt','patrick'], 
-            :bg =&gt; {:color =&gt; '76A4FB', :type =&gt; 'gradient'}, 
-            :bar_colors =&gt; 'ff0000,00ff00')
-
- &quot;http://chart.apis.google.com/chart?chs=300x200&amp;chdl=matt|patrick&amp;chd=s:AAANUIv,JENCN9y&amp;chtt=SDRuby+Fu+level&amp;chf=bg,lg,0,76A4FB,0,ffffff,1&amp;cht=bvs&amp;chco=ff0000,00ff00&quot;  
- 
-Gchart.pie(:data =&gt; [20,10,15,5,50], :title =&gt; 'SDRuby Fu level', :size =&gt; '400x200', :labels =&gt; ['matt', 'rob', 'patrick', 'ryan', 'jordan'])
-http://chart.apis.google.com/chart?cht=p&amp;chs=400x200&amp;chd=s:YMSG9&amp;chtt=SDRuby+Fu+level&amp;chl=matt|rob|patrick|ryan|jordan
+  http://github.com/mattetti/googlecharts
\ No newline at end of file</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = %q{googlecharts}
-  s.version = &quot;1.3.3&quot;
+  s.version = &quot;1.3.4&quot;
 
   s.specification_version = 2 if s.respond_to? :specification_version=
 </diff>
      <filename>googlecharts.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -15,27 +15,24 @@ class Gchart
   @@file_name = 'chart.png'
   
   attr_accessor :title, :type, :width, :height, :horizontal, :grouped, :legend, :data, :encoding, :max_value, :bar_colors,
-                :title_color, :title_size, :custom, :axis_with_labels, :axis_labels, :bar_width_and_spacing
+                :title_color, :title_size, :custom, :axis_with_labels, :axis_labels, :bar_width_and_spacing, :id, :alt, :class
     
-  class &lt;&lt; self
-    # Support for Gchart.line(:title =&gt; 'my title', :size =&gt; '400x600')
-    def method_missing(m, options={})
-      # Extract the format and optional filename, then clean the hash
-      format = options[:format] || 'url'
-      @@file_name = options[:filename] unless options[:filename].nil?
-      options.delete(:format)
-      options.delete(:filename)
-      # create the chart and return it in the format asked for
-      if @@types.include?(m.to_s)  
-        chart = new(options.merge!({:type =&gt; m}))
-        chart.send(format)
-      elsif m.to_s == 'version' 
-        Gchart::VERSION::STRING
-      else
-        &quot;#{m} is not a supported chart format, please use one of the following: #{supported_types}.&quot;
-      end  
-    end
-
+  # Support for Gchart.line(:title =&gt; 'my title', :size =&gt; '400x600')
+  def self.method_missing(m, options={})
+    # Extract the format and optional filename, then clean the hash
+    format = options[:format] || 'url'
+    @@file_name = options[:filename] unless options[:filename].nil?
+    options.delete(:format)
+    options.delete(:filename)
+    # create the chart and return it in the format asked for
+    if @@types.include?(m.to_s)  
+      chart = new(options.merge!({:type =&gt; m}))
+      chart.send(format)
+    elsif m.to_s == 'version' 
+      Gchart::VERSION::STRING
+    else
+      &quot;#{m} is not a supported chart format, please use one of the following: #{supported_types}.&quot;
+    end  
   end
   
   def initialize(options={})
@@ -47,8 +44,11 @@ class Gchart
       @grouped = false
       @encoding = 'simple'
       @max_value = 'auto'
+      # Sets the alt tag when chart is exported as image tag
       @alt = 'Google Chart'
+      # Sets the CSS id selector when chart is exported as image tag
       @id = false
+      # Sets the CSS class selector when chart is exported as image tag
       @class = false
 
       # set the options value if definable
@@ -71,33 +71,6 @@ class Gchart
     &quot;#{@width}x#{@height}&quot;
   end
   
-  # Sets the alt tag when chart is exported as image tag
-  def alt=(alt='Google Chart')
-    @alt = alt
-  end
-  
-  def alt
-    @alt
-  end
-  
-  # Sets the CSS id selector when chart is exported as image tag
-  def id=(id=false)
-    @id = id
-  end
-  
-  def id
-    @id
-  end
-  
-  # Sets the CSS class selector when chart is exported as image tag
-  def class=(klass=false)
-    @class = klass
-  end
-  
-  def class
-    @class
-  end
-  
   # Sets the orientation of a bar graph
   def orientation=(orientation='h')
     if orientation == 'h' || orientation == 'horizontal'</diff>
      <filename>lib/gchart.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module GchartInfo #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 1
     MINOR = 3
-    TINY  = 2
+    TINY  = 4
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/gchart/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@
     &lt;h1&gt;Googlecharts&lt;/h1&gt;
     &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/googlecharts&quot;; return false'&gt;
       &lt;p&gt;Get Version&lt;/p&gt;
-      &lt;a href=&quot;http://rubyforge.org/projects/googlecharts&quot; class=&quot;numbers&quot;&gt;1.3.2&lt;/a&gt;
+      &lt;a href=&quot;http://rubyforge.org/projects/googlecharts&quot; class=&quot;numbers&quot;&gt;1.3.4&lt;/a&gt;
     &lt;/div&gt;
     &lt;h2&gt;&amp;#x2192; &amp;#8216;Sexy Charts using Google &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt; &amp;#38; Ruby&amp;#8217;&lt;/h2&gt;
 
@@ -41,7 +41,8 @@
 	&lt;h2&gt;What&lt;/h2&gt;
 
 
-	&lt;p&gt;A nice and simple wrapper for &lt;a href=&quot;http://code.google.com/apis/chart/&quot;&gt;Google Chart &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
+	&lt;p&gt;A nice and simple wrapper for &lt;a href=&quot;http://code.google.com/apis/chart/&quot;&gt;Google Chart &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt;&lt;/a&gt;
+(Fully tested using RSpec, check the specs for more usage examples)&lt;/p&gt;
 
 
 	&lt;h2&gt;Installing&lt;/h2&gt;
@@ -668,6 +669,34 @@ Data set:
 	&lt;p&gt;The trunk repository is &lt;code&gt;http://github.com/mattetti/googlecharts/&lt;/code&gt; for anonymous access.&lt;/p&gt;
 
 
+	&lt;h2&gt;People reported using this gem&lt;/h2&gt;
+
+
+&lt;div&gt;
+  &lt;img  src=&quot;http://img.skitch.com/20080627-r14subqdx2ye3w13qefbx974gc.png&quot; alt=&quot;github&quot;/&gt;&lt;br/&gt;
+  &lt;li&gt;&lt;a href=&quot;http://github.com&quot;&gt;http://github.com&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+&lt;/div&gt;
+
+&lt;div&gt;
+  &lt;img  src=&quot;http://stafftool.com/images/masthead_screen.gif&quot; alt=&quot;stafftool&quot;/&gt;&lt;br/&gt;
+  &lt;li&gt;&lt;a href=&quot;http://stafftool.com/&quot;&gt;Takeo(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+&lt;/div&gt;
+
+&lt;div&gt;
+  &lt;img  src=&quot;http://img.skitch.com/20080627-g2pp89h7gdbh15m1rr8hx48jep.jpg&quot; alt=&quot;graffletopia&quot;/&gt;&lt;br/&gt;
+  &lt;li&gt;&lt;a href=&quot;http://graffletopia.com&quot;&gt; http://graffletopia.com  Mokolabs(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+&lt;/div&gt;
+
+&lt;div&gt;
+  &lt;img  src=&quot;http://img.skitch.com/20080627-kc1weqsbkmxeqhwiyriq3n6g8k.jpg&quot; alt=&quot;gumgum&quot;/&gt;&lt;br/&gt;
+  &lt;li&gt;&lt;a href=&quot;http://gumgum.com&quot;&gt; http://gumgum.com  Mattetti(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+&lt;/div&gt;
+
+&lt;div&gt;
+  &lt;img  src=&quot;http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg&quot; alt=&quot;gumgum&quot;/&gt;&lt;br/&gt;
+  &lt;li&gt;&lt;a href=&quot;http://feedflix.com/&quot;&gt; http://feedflix.com/&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+&lt;/div&gt;
+
 	&lt;h2&gt;License&lt;/h2&gt;
 
 </diff>
      <filename>website/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -6,6 +6,7 @@ h2. &amp;#x2192; 'Sexy Charts using Google API &amp; Ruby'
 h2. What
   
 A nice and simple wrapper for &quot;Google Chart API&quot;:http://code.google.com/apis/chart/
+(Fully tested using RSpec, check the specs for more usage examples)
 
 h2. Installing
 
@@ -472,11 +473,39 @@ Gchart.line(:data =&gt; [100, 20, 30, 20, 10, 14, 30, 10], :max_value =&gt; false )
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:_UeUKOeK(real size)!
 
 
-
 h2. Repository
 
 The trunk repository is &lt;code&gt;http://github.com/mattetti/googlecharts/&lt;/code&gt; for anonymous access.
 
+h2. People reported using this gem
+
+
+  &lt;div&gt;
+    &lt;img  src=&quot;http://img.skitch.com/20080627-r14subqdx2ye3w13qefbx974gc.png&quot; alt=&quot;github&quot;/&gt;&lt;br/&gt;
+    &lt;li&gt;&lt;a href=&quot;http://github.com&quot;&gt;http://github.com&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
+  
+  &lt;div&gt;
+    &lt;img  src=&quot;http://stafftool.com/images/masthead_screen.gif&quot; alt=&quot;stafftool&quot;/&gt;&lt;br/&gt;
+    &lt;li&gt;&lt;a href=&quot;http://stafftool.com/&quot;&gt;Takeo(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
+  
+  &lt;div&gt;
+    &lt;img  src=&quot;http://img.skitch.com/20080627-g2pp89h7gdbh15m1rr8hx48jep.jpg&quot; alt=&quot;graffletopia&quot;/&gt;&lt;br/&gt;
+    &lt;li&gt;&lt;a href=&quot;http://graffletopia.com&quot;&gt; http://graffletopia.com  Mokolabs(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
+  
+  &lt;div&gt;
+    &lt;img  src=&quot;http://img.skitch.com/20080627-kc1weqsbkmxeqhwiyriq3n6g8k.jpg&quot; alt=&quot;gumgum&quot;/&gt;&lt;br/&gt;
+    &lt;li&gt;&lt;a href=&quot;http://gumgum.com&quot;&gt; http://gumgum.com  Mattetti(contributor)&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
+  
+  &lt;div&gt;
+    &lt;img  src=&quot;http://img.skitch.com/20080627-n48j8pb2r7irsewfeh4yp3da12.jpg&quot; alt=&quot;gumgum&quot;/&gt;&lt;br/&gt;
+    &lt;li&gt;&lt;a href=&quot;http://feedflix.com/&quot;&gt; http://feedflix.com/&lt;/a&gt;&lt;/li&gt;&lt;br/&gt;
+  &lt;/div&gt;
+
+
 h2. License
 
 This code is free to use under the terms of the MIT license. </diff>
      <filename>website/index.txt</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e1a2b1c2ba680f4c7ed54220094f1489cd0e031e</id>
    </parent>
  </parents>
  <author>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/googlecharts/commit/a93fc6edf3bb5c435073798a2f4e9aaa45cd14ba</url>
  <id>a93fc6edf3bb5c435073798a2f4e9aaa45cd14ba</id>
  <committed-date>2008-06-26T23:41:30-07:00</committed-date>
  <authored-date>2008-06-26T23:41:30-07:00</authored-date>
  <message>updated doc + re-factored a bit - 1.3.4 is out the door!</message>
  <tree>3fb929977b78006d3e77ef3a687bcea5c41ff23a</tree>
  <committer>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </committer>
</commit>
