<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,7 +2,8 @@
 
 Colorist is a library built to handle the conversion, comparison, and 
 manipulation of colors in Ruby projects with an emphasis on W3C standards 
-and CSS-style hex notation.
+and CSS-style hex notation. See the Color class for additional details
+on the available methods.
 
 == Example
 
@@ -17,5 +18,10 @@ and CSS-style hex notation.
   gray.brightness # =&gt; 0.2
 
   gray.contrast_with(&quot;#f00&quot;)
+  
+== Resources
+
+* GitHub Source: http://github.com/mbleigh/colorist
+* Lighthouse (for bugs): http://mbleigh.lighthouseapp.com/projects/15686-colorist
 
 Copyright (c) 2008 Michael Bleigh and Intridea, Inc. Released under the MIT open source license.
\ No newline at end of file</diff>
      <filename>README.rdoc</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
   s.name = &quot;colorist&quot;
   s.version = &quot;0.0.1&quot;
   s.date = &quot;2008-08-16&quot;
-  s.summary = &quot;A library built to handle the easy conversion and manipulation of colors.&quot;
+  s.summary = &quot;A library built to handle the easy conversion and simple manipulation of colors.&quot;
   s.email = &quot;michael@intridea.com&quot;
   s.homepage = &quot;http://github.com/mbleigh/colorist&quot;
   s.description = &quot;Colorist is a library built to handle the easy conversion and manipulation of colors with a special emphasis on W3C standards and CSS-style hex color notation.&quot;</diff>
      <filename>colorist.gemspec</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,7 @@
 module Colorist
+  # Color is the general class for storing and manipulating a color with the
+  # Colorist gem. It provides methods to add, subtract, and calculate aspects
+  # of the color based on W3C and other standards.
   class Color            
     attr_accessor :r, :g, :b
   
@@ -148,9 +151,9 @@ module Colorist
     # Outputs a string representation of the color in the desired format.
     # The available formats are:
     #
-    # * +:css+ - As a CSS hex string (i.e. &lt;tt&gt;#ffffff&lt;/tt&gt;) (default)
-    # * +:css_rgb+ - As a CSS RGB value string (i.e. &lt;tt&gt;rgb(255,255,255)&lt;/tt&gt;)
-    # * +:rgb+ - As an RGB triplet (i.e. &lt;tt&gt;1.0, 1.0, 1.0&lt;/tt&gt;)
+    # * &lt;tt&gt;:css&lt;/tt&gt; - As a CSS hex string (i.e. &lt;tt&gt;#ffffff&lt;/tt&gt;) (default)
+    # * &lt;tt&gt;:css_rgb&lt;/tt&gt; - As a CSS RGB value string (i.e. &lt;tt&gt;rgb(255,255,255)&lt;/tt&gt;)
+    # * &lt;tt&gt;:rgb&lt;/tt&gt; - As an RGB triplet (i.e. &lt;tt&gt;1.0, 1.0, 1.0&lt;/tt&gt;)
     def to_s(format=:css)
       case format
         when :css
@@ -170,8 +173,8 @@ module Colorist
     # scale of 0.0 to 1.0 based on the formula provided. The formulas
     # available are:
     #
-    # * +:w3c+ - &lt;tt&gt;((r * 299 + g * 587 + b * 114) / 1000 / 255&lt;/tt&gt;    
-    # * +:standard+ - &lt;tt&gt;sqrt(0.241 * r^2 + 0.691 * g^2 + 0.068 * b^2) / 255&lt;/tt&gt;
+    # * &lt;tt&gt;:w3c&lt;/tt&gt; - &lt;tt&gt;((r * 299 + g * 587 + b * 114) / 1000 / 255&lt;/tt&gt;    
+    # * &lt;tt&gt;:standard&lt;/tt&gt; - &lt;tt&gt;sqrt(0.241 * r^2 + 0.691 * g^2 + 0.068 * b^2) / 255&lt;/tt&gt;
     def brightness(formula=:w3c)
       case formula
         when :standard
@@ -184,7 +187,7 @@ module Colorist
     # Contrast this color with another color using the provided formula. The
     # available formulas are:
     #
-    # * +:w3c+ - &lt;tt&gt;(max(r1 r2) - min(r1 r2)) + (max(g1 g2) - min(g1 g2)) + (max(b1 b2) - min(b1 b2))&lt;/tt&gt;
+    # * &lt;tt&gt;:w3c&lt;/tt&gt; - &lt;tt&gt;(max(r1 r2) - min(r1 r2)) + (max(g1 g2) - min(g1 g2)) + (max(b1 b2) - min(b1 b2))&lt;/tt&gt;
     def contrast_with(other_color, formula=:w3c)
       other_color = Color.from(other_color)
       case formula</diff>
      <filename>lib/colorist/color.rb</filename>
    </modified>
    <modified>
      <diff>@@ -18,8 +18,8 @@ end
 
 class String
   # Converts a CSS-style color string to a Color. Can be
-  # in the full form (&lt;tt&gt;#112233&lt;/tt&gt;), the abbreviated form
-  # (&lt;tt&gt;#123&lt;/tt&gt;) or a CSS named color (&lt;tt&gt;&quot;black&quot;&lt;/tt&gt; or &lt;tt&gt;&quot;maroon&quot;&lt;/tt&gt;).
+  # in the full form (&lt;tt&gt;\#112233&lt;/tt&gt;), the abbreviated form
+  # (&lt;tt&gt;\#123&lt;/tt&gt;) or a CSS named color (&lt;tt&gt;&quot;black&quot;&lt;/tt&gt; or &lt;tt&gt;&quot;maroon&quot;&lt;/tt&gt;).
   def to_color
     Colorist::Color.from_string(self)
   end</diff>
      <filename>lib/colorist/core_extensions.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4584a026b2a0abc6a3d7227aa52b00a987e973ff</id>
    </parent>
  </parents>
  <author>
    <name>Michael Bleigh</name>
    <email>michael@intridea.com</email>
  </author>
  <url>http://github.com/mbleigh/colorist/commit/3df7f4fa2e86a756371b9ca7367494085aa16822</url>
  <id>3df7f4fa2e86a756371b9ca7367494085aa16822</id>
  <committed-date>2008-08-18T07:25:00-07:00</committed-date>
  <authored-date>2008-08-18T07:25:00-07:00</authored-date>
  <message>Doc and gemspec changes.</message>
  <tree>749ee421cc2c4c7571a60a72e0ecba8c1dc9dcc1</tree>
  <committer>
    <name>Michael Bleigh</name>
    <email>michael@intridea.com</email>
  </committer>
</commit>
