<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -19,6 +19,28 @@ namespace :install do
   
 end
 
+namespace :multiruby do
+  
+  namespace :install do
+
+    desc &quot;Installs all the mack-more gems into multiruby&quot;
+    task :all do
+      GEMS.each do |gem|
+        sh(&quot;cd mack-#{gem} &amp;&amp; rake multiruby:install&quot;)
+      end
+    end
+
+    GEMS.each do |gem|
+      desc &quot;Installs the mack-#{gem} gem.&quot;
+      task &quot;#{gem}&quot; do
+        sh(&quot;cd mack-#{gem} &amp;&amp; rake multiruby:install&quot;)
+      end
+    end
+
+  end
+  
+end
+
 namespace :freeze do
   
   desc &quot;Installs all the mack-more gems&quot;</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -4,3 +4,12 @@ task :install =&gt; [:clean_rdoc, :package] do |t|
   puts `#{sudo} gem install #{File.join(&quot;pkg&quot;, @gem_spec.name)}-#{@gem_spec.version}.gem --no-update-sources --no-ri --no-rdoc`
 end
 
+namespace :multiruby do
+  
+  desc &quot;Install the gem into multiruby&quot;
+  task :install =&gt; [:clean_rdoc, :package] do |t|
+    sudo = ENV['SUDOLESS'] == 'true' || RUBY_PLATFORM =~ /win32|cygwin/ ? '' : 'sudo'
+    puts `multiruby -S gem install #{File.join(&quot;pkg&quot;, @gem_spec.name)}-#{@gem_spec.version}.gem --no-update-sources --no-ri --no-rdoc`
+  end
+
+end
\ No newline at end of file</diff>
      <filename>common_rake_tasks/install.rake</filename>
    </modified>
    <modified>
      <diff>@@ -91,4 +91,12 @@ module Kernel
     RUBY_VERSION == v
   end
   
+  def v1_8?
+    RUBY_VERSION &gt;= '1.8.0' &amp;&amp; RUBY_VERSION &lt; '1.9.0'
+  end
+  
+  def v1_9?
+    RUBY_VERSION &gt;= '1.9.0' &amp;&amp; RUBY_VERSION &lt; '2.0.0'
+  end
+  
 end</diff>
      <filename>mack-facets/lib/mack-facets/extensions/kernel.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>65dfc8567adcb55c1070d47dd9e79f6824801505</id>
    </parent>
  </parents>
  <author>
    <name>Mark Bates</name>
    <email>mark@mackframework.com</email>
  </author>
  <url>http://github.com/markbates/mack-more/commit/a6fbdbe9d250283c7862001e6fc156d0df79d666</url>
  <id>a6fbdbe9d250283c7862001e6fc156d0df79d666</id>
  <committed-date>2009-01-01T15:01:36-08:00</committed-date>
  <authored-date>2009-01-01T15:01:36-08:00</authored-date>
  <message>Added a multiruby:install task.</message>
  <tree>3dca3daf572d7a010e8ecd10bb81013db3e9a264</tree>
  <committer>
    <name>Mark Bates</name>
    <email>mark@mackframework.com</email>
  </committer>
</commit>
