<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,13 +2,16 @@
 
 I don't know about you, but I'm not too much of a fan of writing out raw HTML when I'm trying to belt out some blog posts. Keeping track of those pesky closing tags, escaping entities, and so on, can really get in the way of your creativity.
 
-As a result, most blogs provide a simplified markup or some sort of editor. For technicalpickles.com[http://technicalpickles.com], I went for the former.
+As a result, most blogs provide a simplified markup or some sort of editor. For technicalpickles.com[http://technicalpickles.com], I went with markdown[http://daringfireball.net/projects/markdown/].
 
-I extracted the markdown[http://daringfireball.net/projects/markdown/] magic out of my blog, and this plugin is the result.
+I extracted this markup magic out of my blog, and this plugin is the result. It lets you:
 
-Perhaps you intend yourself to have some markup in your model, say it's markdown, and say it's required or not, and it's cached or not.
-
-This plugin helps you do such things.
+ * Specify a column contains markup
+ * Specify the syntax (markdown and textile, with markdown being the default)
+ * Specify if the markup column is required
+ * Generate a helper for generating the HTML
+ * Specify if the HTML should be cached in the database
+ * ... all using only one line
 
 == Example
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -12,6 +12,7 @@ begin
     s.homepage = &quot;http://github.com/technicalpickles/has_markup&quot;
     s.description = &quot;Manage markup close to home... right in the model! Caching, validation, etc&quot;
     s.authors = [&quot;Josh Nichols&quot;]
+    s.files = FileList[&quot;[A-Z]*.*&quot;, &quot;{generators,lib,test,spec}/**/*&quot;]
   end
   Jeweler.craft(gemspec)
 rescue LoadError
@@ -29,7 +30,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
   rdoc.rdoc_dir = 'rdoc'
   rdoc.title    = 'HasMarkup'
   rdoc.options &lt;&lt; '--line-numbers' &lt;&lt; '--inline-source'
-  rdoc.rdoc_files.include('README.*')
+  rdoc.rdoc_files.include('README*')
   rdoc.rdoc_files.include('lib/**/*.rb')
 end
 </diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -13,11 +13,11 @@ module HasMarkup
       #   example of using &lt;tt&gt;:content&lt;/tt&gt;, it would require a column named &lt;tt&gt;:cached_content_html&lt;/tt&gt;.
       #   It also adds a before_save hook &lt;tt&gt;:cache_content_html&lt;/tt&gt; for generating the html before saving.
       #
-      # To support other syntaxes, you just need to add a method on ActiveRecord::Base named like
-      # &lt;tt&gt;sprinkle_ursyntax_magic&lt;/tt&gt; which takes a column (where &lt;tt&gt;ursyntax&lt;/tt&gt; is the name
-      # of your awesome syntax). You should define a method named
-      # &quot;#{column}_html&quot; which generates the html from the markup. You might also want to validate
-      # the syntax of the column.
+      # For adding additional syntaxes, see has_markup/markdown and has_markup/textile. Basically:
+      #
+      # * Create HasMarkup::SyntaxNameHere
+      # * Define sprinkle_syntax_name_here_magic which takes a column name, like &lt;tt&gt;:content&lt;/tt&gt;
+      # * In sprinkle_syntax_name_here_magic, create &lt;tt&gt;&quot;#{column}_html&quot;&lt;/tt&gt;, which handles the actual generation
       def has_markup(column, options = {})
         options = HasMarkup::default_has_markup_options.merge(options)
         </diff>
      <filename>lib/has_markup/active_record.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4313648f4ebff9046814ebfda9bde45978ea68cb</id>
    </parent>
  </parents>
  <author>
    <name>Josh Nichols</name>
    <email>josh@technicalpickles.com</email>
  </author>
  <url>http://github.com/technicalpickles/has_markup/commit/a038cff60b36ad9846310ea5e9d4df1cfa8613df</url>
  <id>a038cff60b36ad9846310ea5e9d4df1cfa8613df</id>
  <committed-date>2008-10-12T22:03:07-07:00</committed-date>
  <authored-date>2008-10-12T22:03:07-07:00</authored-date>
  <message>Cleaned up comments and README. Include README in rdoc</message>
  <tree>eed9bc629ffbfb14c10bfca4f1a8206d06165cbf</tree>
  <committer>
    <name>Josh Nichols</name>
    <email>josh@technicalpickles.com</email>
  </committer>
</commit>
