<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,4 @@
+require 'dm-core'
 module DataMapper::Tags
   module VERSION #:nodoc:
     MAJOR = 0</diff>
      <filename>lib/dm-tags/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,140 +0,0 @@
-&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
-&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
-&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;
-&lt;head&gt;
-  &lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheets/screen.css&quot; type=&quot;text/css&quot; media=&quot;screen&quot; /&gt;
-  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
-  &lt;title&gt;
-      dm-tags
-  &lt;/title&gt;
-  &lt;script src=&quot;javascripts/rounded_corners_lite.inc.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
-&lt;style&gt;
-
-&lt;/style&gt;
-  &lt;script type=&quot;text/javascript&quot;&gt;
-    window.onload = function() {
-      settings = {
-          tl: { radius: 10 },
-          tr: { radius: 10 },
-          bl: { radius: 10 },
-          br: { radius: 10 },
-          antiAlias: true,
-          autoPad: true,
-          validTags: [&quot;div&quot;]
-      }
-      var versionBox = new curvyCorners(settings, document.getElementById(&quot;version&quot;));
-      versionBox.applyCornersToAll();
-    }
-  &lt;/script&gt;
-&lt;/head&gt;
-&lt;body&gt;
-&lt;div id=&quot;main&quot;&gt;
-
-    &lt;h1&gt;dm-tags&lt;/h1&gt;
-    &lt;div id=&quot;version&quot; class=&quot;clickable&quot; onclick='document.location = &quot;http://rubyforge.org/projects/dm-tags&quot;; return false'&gt;
-      &lt;p&gt;Get Version&lt;/p&gt;
-      &lt;a href=&quot;http://rubyforge.org/projects/dm-tags&quot; class=&quot;numbers&quot;&gt;0.0.2&lt;/a&gt;
-    &lt;/div&gt;
-    &lt;h2&gt;Description&lt;/h2&gt;
-&lt;p&gt;This package brings tagging to DataMapper.  It is inspired by Acts As Taggable On by Michael Bleigh, github&amp;#8217;s mbleigh.  Props to him for the contextual tagging based on Acts As Taggable on Steroids.&lt;/p&gt;
-&lt;h2&gt;Installing&lt;/h2&gt;
-&lt;p&gt;&lt;pre class='syntax'&gt;&lt;span class=&quot;ident&quot;&gt;sudo&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;dm&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tags&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
-&lt;h2&gt;Demonstration of usage&lt;/h2&gt;
-&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;ident&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;rubygems&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;dm-core&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;dm-tags&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-
-  &lt;span class=&quot;constant&quot;&gt;DataMapper&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;setup&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:default&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;sqlite3::memory:&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
-
-  &lt;span class=&quot;keyword&quot;&gt;class &lt;/span&gt;&lt;span class=&quot;class&quot;&gt;MyModel&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;include&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;DataMapper&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;constant&quot;&gt;Resource&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;property&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:id&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Integer&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:serial&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;true&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;has_tags_on&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:tags&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:skills&lt;/span&gt;
-  &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-  &lt;span class=&quot;constant&quot;&gt;DataMapper&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;auto_migrate!&lt;/span&gt;
-
-  &lt;span class=&quot;comment&quot;&gt;# Contextual tagging&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;taggable?&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;taggable?&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test, me out,   please   &lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; ['me out', 'please', 'test'] # Sanitized and alphabetized&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;save&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tags&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;Tag id=1 name=&amp;quot;me out&amp;quot;&amp;gt;, #&amp;lt;Tag id=2 name=&amp;quot;please&amp;quot;&amp;gt;, #&amp;lt;Tag id=3 name=&amp;quot;test&amp;quot;&amp;gt;]&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test, again&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;save&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;model&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tags&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;Tag id=3 name=&amp;quot;test&amp;quot;&amp;gt;, #&amp;lt;Tag id=4 name=&amp;quot;again&amp;quot;&amp;gt;] # Checks for existing tags&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;all&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;Tag id=1 name=&amp;quot;me out&amp;quot;&amp;gt;, #&amp;lt;Tag id=2 name=&amp;quot;please&amp;quot;&amp;gt;,&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#    #&amp;lt;Tag id=3 name=&amp;quot;test&amp;quot;&amp;gt;, #&amp;lt;Tag id=4 name=&amp;quot;again&amp;quot;&amp;gt;]&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;another&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;another&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;skill_list&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test, all, you, like&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;another&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;save&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;another&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; []&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;another&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;skills&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;Tag id=5 name=&amp;quot;all&amp;quot;&amp;gt;, #&amp;lt;Tag id=6 name=&amp;quot;like&amp;quot;&amp;gt;,&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#    #&amp;lt;Tag id=3 name=&amp;quot;test&amp;quot;&amp;gt;, #&amp;lt;Tag id=7 name=&amp;quot;you&amp;quot;&amp;gt;]&lt;/span&gt;
-
-  &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tagged_with&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;('&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;MyModel id=1&amp;gt;, #&amp;lt;MyModel id=2&amp;gt;]&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tagged_with&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;('&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:on&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;tags&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;MyModel id=1&amp;gt;]&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;MyModel&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tagged_with&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;('&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;test&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:on&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;skills&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;MyModel id=2&amp;gt;]&lt;/span&gt;
-
-  &lt;span class=&quot;comment&quot;&gt;# Traditional 'tags only' tagging&lt;/span&gt;
-
-  &lt;span class=&quot;keyword&quot;&gt;class &lt;/span&gt;&lt;span class=&quot;class&quot;&gt;TagsOnly&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;include&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;DataMapper&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;constant&quot;&gt;Resource&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;property&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:id&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;Integer&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:serial&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;true&lt;/span&gt;
-    &lt;span class=&quot;ident&quot;&gt;has_tags&lt;/span&gt;
-  &lt;span class=&quot;keyword&quot;&gt;end&lt;/span&gt;
-
-  &lt;span class=&quot;constant&quot;&gt;TagsOnly&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;auto_migrate!&lt;/span&gt;
-
-  &lt;span class=&quot;constant&quot;&gt;TagsOnly&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;taggable?&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;TagsOnly&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;taggable?&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-
-  &lt;span class=&quot;ident&quot;&gt;tags_only&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;TagsOnly&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;new&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;tags_only&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;tags, only&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;tags_only&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tag_list&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; ['only', 'tags']&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;tags_only&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;save&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; true&lt;/span&gt;
-  &lt;span class=&quot;ident&quot;&gt;tags_only&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;tags&lt;/span&gt;
-  &lt;span class=&quot;comment&quot;&gt;#=&amp;gt; [#&amp;lt;Tag id=8 name=&amp;quot;only&amp;quot;&amp;gt;, #&amp;lt;Tag id=9 name=&amp;quot;tags&amp;quot;&amp;gt;]  &lt;/span&gt;
-&lt;/pre&gt;&lt;/p&gt;
-&lt;h2&gt;Forum&lt;/h2&gt;
-&lt;p&gt;&lt;a href=&quot;http://groups.google.com/group/dm-tags&quot;&gt;http://groups.google.com/group/dm-tags&lt;/a&gt;&lt;/p&gt;
-&lt;h2&gt;How to submit patches&lt;/h2&gt;
-&lt;p&gt;Read the &lt;a href=&quot;http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/&quot;&gt;8 steps for fixing other people&amp;#8217;s code&lt;/a&gt; and for section &lt;a href=&quot;http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups&quot;&gt;8b: Submit patch to Google Groups&lt;/a&gt;, use the Google Group above.&lt;/p&gt;
-&lt;p&gt;You can fetch the source from either:&lt;/p&gt;
-&lt;ul&gt;
-	&lt;li&gt;rubyforge: &lt;a href=&quot;http://rubyforge.org/scm/?group_id=6728&quot;&gt;http://rubyforge.org/scm/?group_id=&amp;lt;6728&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-&lt;pre&gt;git clone git://rubyforge.org/dm-tags.git&lt;/pre&gt;
-&lt;ul&gt;
-	&lt;li&gt;github: &lt;a href=&quot;http://github.com/bobby/dm-tags/tree/master&quot;&gt;http://github.com/bobby/dm-tags/tree/master&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-&lt;pre&gt;git clone git://github.com/bobby/dm-tags.git&lt;/pre&gt;
-&lt;h3&gt;Build and test instructions&lt;/h3&gt;
-&lt;pre&gt;
-  cd dm-tags
-  rake test
-  rake install_gem
-&lt;/pre&gt;
-&lt;h2&gt;License&lt;/h2&gt;
-&lt;p&gt;This code is free to use under the terms of the &lt;span class=&quot;caps&quot;&gt;MIT&lt;/span&gt; license.&lt;/p&gt;
-&lt;h2&gt;Contact&lt;/h2&gt;
-&lt;p&gt;Comments are welcome. Send an email to &lt;a href=&quot;mailto:b.e.calderwood@gmail.com&quot;&gt;Bobby Calderwood&lt;/a&gt; email via the &lt;a href=&quot;http://groups.google.com/group/dm-tags&quot;&gt;forum&lt;/a&gt;.&lt;/p&gt;
-    &lt;p class=&quot;coda&quot;&gt;
-      &lt;a href=&quot;bobby_calderwood@me.com&quot;&gt;Bobby Calderwood&lt;/a&gt;, 2nd August 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;
-
-&lt;!-- insert site tracking codes here, like Google Urchin --&gt;
-
-&lt;/body&gt;
-&lt;/html&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>de23a5489900c878576ade96dd804dce0ee0e2a6</id>
    </parent>
  </parents>
  <author>
    <name>bobby</name>
    <email>bobby_calderwood@mac.com</email>
  </author>
  <url>http://github.com/bobby/dm-tags/commit/ef4444c2aa98406ef619b29ff9f60bd952bf4257</url>
  <id>ef4444c2aa98406ef619b29ff9f60bd952bf4257</id>
  <committed-date>2008-09-14T20:57:10-07:00</committed-date>
  <authored-date>2008-09-14T20:57:10-07:00</authored-date>
  <message>Added require 'dm-core' to version.rb.</message>
  <tree>24da808d882583f55d7829c826a5d9835c83adf7</tree>
  <committer>
    <name>bobby</name>
    <email>bobby_calderwood@mac.com</email>
  </committer>
</commit>
