<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,82 +1,80 @@
-Sashimi
-=======
+= Sashimi
 
 Sashimi is a Rails plugins manager.
+
 It allows to install your favourite plugins in a local repository and add them to your Rails apps.
 The main goal is to allow the plugins offline installation.
 
 
 
-Installation
-============
+= Installation
 
-$ (sudo) gem install sashimi
+  $ (sudo) gem install sashimi
 
 or
 
-$ (sudo) gem install jodosha-sashimi --source=http://gems.github.com
+  $ (sudo) gem install jodosha-sashimi --source=http://gems.github.com
 
 
 
-Usage
-=====
+= Usage
 
 Install a plugin from a subversion URL:
-$ sashimi install http://dev.rubyonrails.com/svn/rails/plugins/continuous_builder
+  $ sashimi install http://dev.rubyonrails.com/svn/rails/plugins/continuous_builder
 
 Install a plugin from a git URL:
-$ sashimi install git://github.com/jodosha/click-to-globalize.git
+  $ sashimi install git://github.com/jodosha/click-to-globalize.git
 
 Uninstall a plugin:
-$ sashimi uninstall continuous_builder
+  $ sashimi uninstall continuous_builder
 
 Update a plugin:
-$ sashimi update click-to-globalize
+  $ sashimi update click-to-globalize
 
 Update a plugin of a Rails app:
-$ sashimi update --rails click-to-globalize
+  $ sashimi update --rails click-to-globalize
 
 NOTE: If your application is versioned with Svn or Git, Sashimi will automatically schedules for add/remove the added/removed files.
 
 List all installed plugins:
-$ sashimi list
+  $ sashimi list
 
 Add installed plugin(s) to a Rails app:
-$ sashimi add click-to-globalize
-$ sashimi install --rails click-to-globalize
+  $ sashimi add click-to-globalize
+or
+  $ sashimi install --rails click-to-globalize
 
 
 
-Known And Common Issues
-=======================
+= Known And Common Issues
 
 * When add a plugin to an app, make sure your current directory is the rails root.
 
 * Only Subversion and Git repositories are currently supported.
 
 
-Contribute
-==========
+= Contribute
 
 * Check out the code and test it:
+
   $ git clone git://github.com/jodosha/sashimi.git
+  
   $ rake
 
-* Create a ticket to: http://sushistar.lighthouseapp.com
+* Create a ticket to the {Sushistar Lighthouse page}[http://sushistar.lighthouseapp.com]
 
 * Create a patch and add as attachement to the ticket.
 
 
-Credits
-=======
+= Credits
 
 Partially inspired to RaPT[http://rapt.rubyforge.org/].
 
 
 
-Home Page
-=========
-http://lucaguidi.com/pages/sashimi
+= Home Page
+
+The Sashimi homepage is http://lucaguidi.com/pages/sashimi
 
 
 </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,26 @@
+#--
+# Copyright (c) 2008 Luca Guidi
+# 
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# &quot;Software&quot;), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+# 
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+# 
+# THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#++
+
 $:.unshift(File.dirname(__FILE__)) unless
   $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
 </diff>
      <filename>lib/sashimi.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,10 @@
 class Array
   # Transform the current +Array+ to a path.
-  # It's an alias for +File#join+
   #
-  #  %w(path to app).to_path # =&gt; path/to/app
-  #  %w(path to app).to_path(true) # =&gt; /Users/luca/path/to/app
+  # It's an alias for &lt;tt&gt;File#join&lt;/tt&gt;.
+  #
+  #    %w(path to app).to_path # =&gt; path/to/app+
+  #    %w(path to app).to_path(true) # =&gt; /Users/luca/path/to/app
   def to_path(absolute = false)
     path = File.join(self)
     path = File.expand_path(path) if absolute
@@ -12,8 +13,8 @@ class Array
 
   # Transform the current +Array+ to an absolute path.
   #
-  # %w(path to app).to_absolute_path # =&gt; /Users/luca/path/to/app
-  # %w(path to app).to_abs_path # =&gt; /Users/luca/path/to/app
+  #    %w(path to app).to_absolute_path # =&gt; /Users/luca/path/to/app
+  #    %w(path to app).to_abs_path # =&gt; /Users/luca/path/to/app
   def to_absolute_path
     to_path(true)
   end</diff>
      <filename>lib/sashimi/core_ext/array.rb</filename>
    </modified>
    <modified>
      <diff>@@ -30,9 +30,8 @@ module Sashimi
     def repository #:nodoc:
       @repository ||= instantiate_repository
     end
-    
-    # Read the content of the &lt;tt&gt;about.yml&lt;/tt&gt;.
-    # New feature of Rails 2.1.x http:://dev.rubyonrails.org/changeset/9098
+
+    # Returns the informations about the plugin.
     def about
       @about ||= repository.about
     end
@@ -52,7 +51,7 @@ module Sashimi
       name
     end
     
-    # Serialize the plugin to Hash format.
+    # Serialize the plugin to +Hash+ format.
     def to_hash
       { self.guess_name =&gt; 
         { 'type' =&gt; repository.scm_type,</diff>
      <filename>lib/sashimi/plugin.rb</filename>
    </modified>
    <modified>
      <diff>@@ -223,6 +223,7 @@ module Sashimi
     end
     
     # Read the content of the &lt;tt&gt;about.yml&lt;/tt&gt;.
+    #
     # New feature of Rails 2.1.0 http://github.com/rails/rails/commit/f5b991d76dc5d21f1870da067fb3101440256fba
     def about
       with_path plugin_path do</diff>
      <filename>lib/sashimi/repositories/abstract_repository.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>d3a870297c4a66a30ffa89cf46b3b69dd55c896b</id>
    </parent>
  </parents>
  <author>
    <name>Luca Guidi</name>
    <email>guidi.luca@gmail.com</email>
  </author>
  <url>http://github.com/jodosha/sashimi/commit/98c106292ec51255f4dff1d5cbe60391676d9531</url>
  <id>98c106292ec51255f4dff1d5cbe60391676d9531</id>
  <committed-date>2008-07-12T05:39:41-07:00</committed-date>
  <authored-date>2008-07-12T05:39:41-07:00</authored-date>
  <message>rdoc formatting</message>
  <tree>9899ef6040e6975158be49f6a4647354e4cea8e9</tree>
  <committer>
    <name>Luca Guidi</name>
    <email>guidi.luca@gmail.com</email>
  </committer>
</commit>
