<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,7 @@
+=== Edge
+
+* Mentioned the three supported platforms and what's necessary to build RedCloth in the README file.
+
 === 4.1.1 / November 19, 2008
 
 * Added 'lib/case_sensitive_require' back into gemspec.  It got left out in the conversion to echoe, so &quot;require 'RedCloth'&quot; didn't work. #88</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -15,10 +15,38 @@ RedCloth is a Ruby library for converting Textile into HTML.
 
 RedCloth can be installed via RubyGems:
 
-  sudo gem install RedCloth
+  gem install RedCloth
+
+It will install the appropriate Ruby, JRuby, or Win32 gem.  If using JRuby, version 1.1.5 or greater is required.
+
+== Compiling
+
+If you just want to use RedCloth, you do NOT need to build/compile it.  It is compiled from C sources automatically when you install the gem on the ruby platform.  Binary gems are provided for JRuby and Win32 platforms.
+
+RedCloth can be compiled with &lt;tt&gt;rake compile&lt;/tt&gt;.  Ragel 6.3 or greater and the 
+echoe gem are needed to build, compile, and package RedCloth.  Again, Ragel and echoe are NOT needed to simply use RedCloth.
+
+You can cross-compile for JRuby with rake java compile and for Win32 with rake mingw compile.
+
+== Using RedCloth
+
+RedCloth is simply an extension of the String class, which can handle
+Textile formatting.  Use it like a String and output HTML with its
+RedCloth#to_html method.
+
+Simple use:
+ text = &quot;This is *my* text.&quot;
+ RedCloth.new(text).to_html
+
+Multi-line example:
+
+ doc = RedCloth.new &lt;&lt;EOD
+ h2. Test document
+ 
+ Just a simple test.
+ EOD
+ puts doc.to_html
 
-Or can be compiled from its Ragel source with &lt;tt&gt;rake compile&lt;/tt&gt;.  Ragel 6.2 
-or greater is required to build RedCloth.
 
 == What is Textile?
 
@@ -140,17 +168,4 @@ Styles are applied with curly braces.
     table{border:1px solid black}.
     {background:#ddd;color:red}. |a|red|row|
 
-== Using RedCloth
-
-RedCloth is simply an extension of the String class, which can handle
-Textile formatting.  Use it like a String and output HTML with its
-RedCloth#to_html method.
-
- doc = RedCloth.new &quot;
-
- h2. Test document
-
- Just a simple test.&quot;
-
- puts doc.to_html
 </diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8e2616157a19834f8f4bf8b6383553b93433e48a</id>
    </parent>
  </parents>
  <author>
    <name>Jason Garber</name>
    <email>jg@jasongarber.com</email>
  </author>
  <url>http://github.com/ROFISH/redcloth/commit/b331934fecfa9f7fb6b3a12e8b4c46c7f04d6c4f</url>
  <id>b331934fecfa9f7fb6b3a12e8b4c46c7f04d6c4f</id>
  <committed-date>2008-12-03T11:13:08-08:00</committed-date>
  <authored-date>2008-12-03T11:13:08-08:00</authored-date>
  <message>Mentioned the three supported platforms and what's necessary to build RedCloth in the README file.</message>
  <tree>648cb8f6e7a2e55eec279e67383c7caed48df351</tree>
  <committer>
    <name>Jason Garber</name>
    <email>jg@jasongarber.com</email>
  </committer>
</commit>
