<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>VERSION.yml</filename>
    </added>
    <added>
      <filename>bluecloth.gemspec</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -48,3 +48,18 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
   rdoc.options &lt;&lt; '--inline-source'
   rdoc.options &lt;&lt; '--charset=UTF-8'
 end
+
+begin
+  require 'jeweler'
+rescue LoadError
+  $stderr.puts &quot;Jeweler not available (gem install technicalpickles-jeweler)&quot;
+else
+  Jeweler::Tasks.new do |gem|
+    gem.name = &quot;bluecloth&quot;
+    gem.summary = &quot;A Ruby implementation of Markdown&quot;
+    gem.email = &quot;mislav.marohnic@gmail.com&quot;
+    gem.homepage = &quot;http://github.com/mislav/bluecloth&quot;
+    gem.description = &quot;Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).&quot;
+    gem.authors = [&quot;Michael Granger&quot;, &quot;Mislav Marohni&#263;&quot;]
+  end
+end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -50,13 +50,13 @@
 # * Put the StringScanner in the render state for thread-safety.
 
 require 'logger'
+require 'yaml'
 
-# BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion
-# tool.
+# BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion tool.
 class BlueCloth
   
-	# Release Version
-	Version = '0.0.3'
+	version_hash = YAML::load(File.read(File.join(File.dirname(__FILE__), '..', 'VERSION.yml')))
+	Version = [:major, :minor, :patch].map { |bit| version_hash[bit] }.join('.')
 
 	# Create a new BlueCloth string.
 	def initialize(content = &quot;&quot;, *restrictions)</diff>
      <filename>lib/bluecloth.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>5f047f7cfb977bf468bb132c36e789bca5b9aea6</id>
    </parent>
  </parents>
  <author>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </author>
  <url>http://github.com/mislav/bluecloth/commit/6e7e16e56065f54aba5177dd790159b523e340e0</url>
  <id>6e7e16e56065f54aba5177dd790159b523e340e0</id>
  <committed-date>2009-02-12T05:25:36-08:00</committed-date>
  <authored-date>2009-02-12T05:25:36-08:00</authored-date>
  <message>generate the gemspec with jeweler</message>
  <tree>c5d99ea55e6040010033be6a3d61185f0663e827</tree>
  <committer>
    <name>Mislav Marohni&#263;</name>
    <email>mislav.marohnic@gmail.com</email>
  </committer>
</commit>
