<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,6 @@
+== 1.3.1
+* added width and spacing options
+
 == 1.3.0
 * added support for google-o-meter
 * fixed a bug when the max value of a data set was 0</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = %q{googlecharts}
-  s.version = &quot;1.3.0&quot;
+  s.version = &quot;1.3.1&quot;
 
   s.specification_version = 2 if s.respond_to? :specification_version=
 
@@ -16,6 +16,6 @@ Gem::Specification.new do |s|
   s.rdoc_options = [&quot;--main&quot;, &quot;README.txt&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{googlecharts}
-  s.rubygems_version = %q{1.3.0}
+  s.rubygems_version = %q{1.3.1}
   s.summary = %q{Sexy Charts using Google API &amp; Ruby}
 end
\ No newline at end of file</diff>
      <filename>googlecharts.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ module GchartInfo #:nodoc:
   module VERSION #:nodoc:
     MAJOR = 1
     MINOR = 3
-    TINY  = 0
+    TINY  = 1
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end</diff>
      <filename>lib/gchart/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -232,6 +232,32 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 	&lt;p&gt;&lt;img src=&quot;http://chart.apis.google.com/chart?cht=bvg&amp;#38;chs=300x200&amp;#38;chd=s:9UGo,Uo9C&amp;#38;chco=FF0000,00FF00&quot; title=&quot;grouped bars&quot; alt=&quot;grouped bars&quot; /&gt;&lt;/p&gt;
 
 
+	&lt;p&gt;&lt;strong&gt;bar chart width and spacing&lt;/strong&gt;&lt;/p&gt;
+
+
+	&lt;p&gt;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.&lt;/p&gt;
+
+
+	&lt;p&gt;The Google &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt; 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:&lt;/p&gt;
+
+
+	&lt;p&gt;&lt;pre class='syntax'&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6,12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6, group spacing of 12&lt;/span&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25&lt;/span&gt;
+&lt;/pre&gt;&lt;/p&gt;
+
+
+	&lt;p&gt;The hash lets you set these values directly, with the Google default values set for any options you don&amp;#8217;t include:&lt;/p&gt;
+
+
+	&lt;p&gt;&lt;pre class='syntax'&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:width&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;19&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:group_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
+&lt;/pre&gt;&lt;/p&gt;
+
+
 	&lt;p&gt;&lt;strong&gt;pie chart&lt;/strong&gt;&lt;/p&gt;
 
 
@@ -639,9 +665,10 @@ Data set:
 	&lt;h3&gt;Contributors&lt;/h3&gt;
 
 
-	&lt;p&gt;&lt;a href=&quot;http://github.com/dbgrandi&quot;&gt;David Grandinetti&lt;/a&gt;&lt;/p&gt;
+	&lt;p&gt;&lt;a href=&quot;http://github.com/dbgrandi&quot;&gt;David Grandinetti&lt;/a&gt;
+&lt;a href=&quot;http://github.com/takeo&quot;&gt;Toby Sterrett&lt;/a&gt;&lt;/p&gt;
     &lt;p class=&quot;coda&quot;&gt;
-      &lt;a href=&quot;mattaimonetti@gmail.com&quot;&gt;Matt Aimonetti&lt;/a&gt;, 7th May 2008&lt;br&gt;
+      &lt;a href=&quot;mattaimonetti@gmail.com&quot;&gt;Matt Aimonetti&lt;/a&gt;, 8th May 2008&lt;br&gt;
       Theme extended from &lt;a href=&quot;http://rb2js.rubyforge.org/&quot;&gt;Paul Battley&lt;/a&gt;
     &lt;/p&gt;
 &lt;/div&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>26465e2c6eb182f31c981b1d65bb8b30272673a4</id>
    </parent>
  </parents>
  <author>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/googlecharts/commit/8690403d88a53876bb503af3d256eb16688f30e7</url>
  <id>8690403d88a53876bb503af3d256eb16688f30e7</id>
  <committed-date>2008-05-08T23:41:50-07:00</committed-date>
  <authored-date>2008-05-08T23:41:50-07:00</authored-date>
  <message>prepared 1.3.1 release</message>
  <tree>42e306919312ced6e3363a7a8db9b03dd3b047b1</tree>
  <committer>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </committer>
</commit>
