<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -8,20 +8,9 @@ config/requirements.rb
 lib/gchart.rb
 lib/gchart/aliases.rb
 lib/gchart/version.rb
-log/debug.log
-script/destroy
-script/generate
-script/txt2html
 setup.rb
 spec/gchart_spec.rb
 spec/spec.opts
 spec/spec_helper.rb
-tasks/deployment.rake
 tasks/environment.rake
 tasks/rspec.rake
-tasks/website.rake
-website/index.html
-website/index.txt
-website/javascripts/rounded_corners_lite.inc.js
-website/stylesheets/screen.css
-website/template.rhtml</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,32 @@
 require 'config/requirements'
 require 'config/hoe' # setup Hoe + all gem configuration
 
-Dir['tasks/**/*.rake'].each { |rake| load rake }
\ No newline at end of file
+Dir['tasks/**/*.rake'].each { |rake| load rake }
+
+desc %{Update &quot;.manifest&quot; with the latest list of project filenames. Respect\
+.gitignore by excluding everything that git ignores. Update `files` and\
+`test_files` arrays in &quot;*.gemspec&quot; file if it's present.}
+task :manifest do
+  list = Dir['**/*'].sort
+  spec_file = Dir['*.gemspec'].first
+  list -= [spec_file] if spec_file
+  
+  File.read('.gitignore').each_line do |glob|
+    glob = glob.chomp.sub(/^\//, '')
+    list -= Dir[glob]
+    list -= Dir[&quot;#{glob}/**/*&quot;] if File.directory?(glob) and !File.symlink?(glob)
+    puts &quot;excluding #{glob}&quot;
+  end
+ 
+  if spec_file
+    spec = File.read spec_file
+    spec.gsub! /^(\s* s.(test_)?files \s* = \s* )( \[ [^\]]* \] | %w\( [^)]* \) )/mx do
+      assignment = $1
+      bunch = $2 ? list.grep(/^test\//) : list
+      '%s%%w(%s)' % [assignment, bunch.join(' ')]
+    end
+      
+    File.open(spec_file, 'w') {|f| f &lt;&lt; spec }
+  end
+  File.open('.manifest', 'w') {|f| f &lt;&lt; list.join(&quot;\n&quot;) }
+end
\ No newline at end of file</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 Gem::Specification.new do |s|
   s.name = %q{googlecharts}
-  s.version = &quot;1.3.1&quot;
+  s.version = &quot;1.3.2&quot;
 
   s.specification_version = 2 if s.respond_to? :specification_version=
 
@@ -10,12 +10,12 @@ Gem::Specification.new do |s|
   s.description = %q{Sexy Charts using Google API &amp; Ruby}
   s.email = %q{mattaimonetti@gmail.com}
   s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;, &quot;website/index.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;lib/gchart.rb&quot;, &quot;lib/gchart/aliases.rb&quot;, &quot;lib/gchart/version.rb&quot;, &quot;log/debug.log&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;spec/gchart_spec.rb&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/rspec.rake&quot;, &quot;tasks/website.rake&quot;, &quot;website/index.html&quot;, &quot;website/index.txt&quot;, &quot;website/javascripts/rounded_corners_lite.inc.js&quot;, &quot;website/stylesheets/screen.css&quot;, &quot;website/template.rhtml&quot;]
+  s.files = %w(History.txt License.txt Manifest.txt README.txt Rakefile config/hoe.rb config/requirements.rb lib/gchart.rb lib/gchart/aliases.rb lib/gchart/version.rb setup.rb spec/gchart_spec.rb spec/spec.opts spec/spec_helper.rb tasks/environment.rake tasks/rspec.rake)
   s.has_rdoc = true
   s.homepage = %q{http://googlecharts.rubyforge.org}
   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.1}
+  s.rubygems_version = %q{1.1.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>@@ -528,7 +528,7 @@ Data set:
 
 
 	&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;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;custom&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;chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;amp;chls=3,6,3|1,1,0&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;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:custom&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;chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;amp;chls=3,6,3|1,1,0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -668,7 +668,7 @@ Data set:
 	&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;, 8th May 2008&lt;br&gt;
+      &lt;a href=&quot;mattaimonetti@gmail.com&quot;&gt;Matt Aimonetti&lt;/a&gt;, 9th 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>7458b5346af55ed58bd4c4eddf30b8da95195f6a</id>
    </parent>
  </parents>
  <author>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </author>
  <url>http://github.com/mattetti/googlecharts/commit/5a3833ad4dcaa39da4b1991306c445a57046ecf9</url>
  <id>5a3833ad4dcaa39da4b1991306c445a57046ecf9</id>
  <committed-date>2008-06-04T08:57:57-07:00</committed-date>
  <authored-date>2008-06-04T08:57:57-07:00</authored-date>
  <message>worked on the manifest</message>
  <tree>1b66e7705ef40b4691187cffb707ef3e09c89e76</tree>
  <committer>
    <name>Matt Aimonetti</name>
    <email>mattaimonetti@gmail.com</email>
  </committer>
</commit>
