<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Beige Sunshine &#187; rubicant</title>
	<atom:link href="http://blog.beigesunshine.com/category/rubicant/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.beigesunshine.com</link>
	<description>Welcome to your head.</description>
	<lastBuildDate>Fri, 09 Jul 2010 14:14:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rubicant&#8217;s first real build</title>
		<link>http://blog.beigesunshine.com/2009/09/13/rubicants-first-real-build/</link>
		<comments>http://blog.beigesunshine.com/2009/09/13/rubicants-first-real-build/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 03:34:46 +0000</pubDate>
		<dc:creator>mendicant</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Build]]></category>
		<category><![CDATA[Rake]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[rubicant]]></category>

		<guid isPermaLink="false">http://blog.beigesunshine.com/?p=98</guid>
		<description><![CDATA[So I’ve been using rubicant for a while personally, but never on anything beyond my own projects and not for anything big. After reading Ayende&#8217;s post about building Rhino Mocks with PSake, I wondered if rubicant could so something similar, so I decided to port his build script.
Of course, I didn’t have a generate assembly [...]]]></description>
			<content:encoded><![CDATA[<p>So I’ve been using <a href="http://github.com/mendicantx/rubicant">rubicant</a> for a while personally, but never on anything beyond my own projects and not for anything big. After reading <a href="http://ayende.com/Blog/" target="_blank">Ayende&#8217;s</a> post about <a href="http://ayende.com/Blog/archive/2009/08/30/on-psake.aspx" target="_blank">building Rhino Mocks with PSake</a>, I wondered if rubicant could so something similar, so I decided to port his build script.</p>
<p>Of course, I didn’t have a generate assembly info method, so I basically took Oren’s and ported it as well (sorry Oren, I’ll take it out if you want). At the same time, I took the opportunity to remove the dependency on configatron from rubicant as well. It just seemed like overkill to require configatron when it really wasn’t buying me much. </p>
<p>In the end, I came up with this, which on the whole I don’t think looks too bad. I personally like it better, but I’ve been on a bit of a vendetta against PowerShell scripts since I wrote my first one some time ago. I don’t know why, but the friction it gave me over writing ruby scripts just always rubbed me the wrong way.</p>
<p>&#160;</p>
<pre style="width: 805px; height: 1995px" class="brush: ruby;">require 'fileutils'
require 'rake'
require 'rubicant'
include Rubicant

base_dir  = File.expand_path(&quot;.&quot;)
lib_dir = &quot;#{base_dir}\\SharedLibs&quot;
build_dir = &quot;#{base_dir}\\build&quot;
buildartifacts_dir = &quot;#{build_dir}\\&quot;
sln_file = &quot;#{base_dir}\\Rhino.Mocks-vs2008.sln&quot;
version = &quot;3.6.0.0&quot;
human_readable_version = &quot;3.6&quot;
tools_dir = &quot;#{base_dir}\\Tools&quot;
release_dir = &quot;#{base_dir}\\Release&quot;
upload_category = &quot;Rhino-Mocks&quot;
upload_script = &quot;C:\\Builds\\Upload\\PublishBuild.build&quot;
mbunit_dir = &quot;#{tools_dir}\\MbUnit&quot;

task :default =&gt; :release do
end

task :clean do
  rm_rf buildartifacts_dir
  rm_rf release_dir
end

task :init =&gt; :clean do

	generate_assembly_info({
		:path =&gt; &quot;#{base_dir}\\Rhino.Mocks\\Properties&quot;,
		:title =&gt; &quot;Rhino Mocks #{version}&quot;,
		:description =&gt; &quot;Mocking Framework for .NET&quot;,
		:company =&gt; &quot;Hibernating Rhinos&quot;,
		:product =&gt; &quot;Rhino Mocks #{version}&quot;,
		:version =&gt; version,
		:cls_compliant =&gt; false,
		:copyright =&gt; &quot;Hibernating Rhinos &amp; Ayende Rahien 2004 - 2009&quot;})

	generate_assembly_info({
		:path =&gt; &quot;#{base_dir}\\Rhino.Mocks.Tests\\Properties&quot;,
		:title =&gt; &quot;Rhino Mocks Tests #{version}&quot;,
		:description =&gt; &quot;Mocking Framework for .NET&quot;,
		:company =&gt; &quot;Hibernating Rhinos&quot;,
		:product =&gt; &quot;Rhino Mocks Test #{version}&quot;,
		:version =&gt; version,
		:cls_compliant =&gt; false,
		:copyright =&gt; &quot;Hibernating Rhinos &amp; Ayende Rahien 2004 - 2009&quot;})

	generate_assembly_info({
		:path =&gt; &quot;#{base_dir}\\Rhino.Mocks.Tests.Model\\Properties&quot;,
		:title =&gt; &quot;Rhino Mocks Tests #{version}&quot;,
		:description =&gt; &quot;Mocking Framework for .NET&quot;,
		:company =&gt; &quot;Hibernating Rhinos&quot;,
		:product =&gt; &quot;Rhino Mocks Test Model #{version}&quot;,
		:version =&gt; version,
		:cls_compliant =&gt; false,
		:copyright =&gt; &quot;Hibernating Rhinos &amp; Ayende Rahien 2004 - 2009&quot;})

	mkdir release_dir
	mkdir buildartifacts_dir

	cp_r &quot;#{mbunit_dir}\\.&quot;, build_dir
end

task :compile =&gt; :init do
	MsBuildRunner.new(:properties =&gt; { :OutDir =&gt; buildartifacts_dir },
					  :project_file =&gt; sln_file).run
end

task :test =&gt; :compile do
	begin
		MbUnitRunner.new(:mbunit_dir =&gt; build_dir,
					 :test_files =&gt; [&quot;Rhino.Mocks.Tests.dll&quot;],
					 :report_type =&gt; 'Html').run
	rescue
		fail 'Error: Failed to execute tests'
	end
end

task :merge do
	begin
		rm_f &quot;#{build_dir}\\Rhino.Mocks.Partial.dll&quot;
		mv &quot;#{build_dir}\\Rhino.Mocks.dll&quot;, &quot;#{build_dir}\\Rhino.Mocks.Partial.dll&quot;

		sh &quot;#{tools_dir}\\IlMerge.exe &quot; +
			&quot;#{build_dir}\\Rhino.Mocks.Partial.dll &quot; +
			&quot;#{build_dir}\\Castle.DynamicProxy2.dll &quot; +
			&quot;#{build_dir}\\Castle.Core.dll &quot; +
			&quot;/out:#{build_dir}\\Rhino.Mocks.dll &quot;+
			&quot;/t:library &quot;+
			&quot;/keyfile:#{base_dir}\\ayende-open-source.snk &quot; +
			&quot;/internalize:#{base_dir}\\ilmerge.exclude&quot;

	rescue
        fail 'Error: Failed to merge assemblies!'
	end

	puts &quot;done merge&quot;
end

task :release =&gt; [:test, :merge] do
	begin
		puts &quot;Zipping files&quot;
		sh &quot;#{tools_dir}\\zip.exe -9 -A -j &quot; +
			&quot;#{release_dir}\\Rhino.Mocks-#{human_readable_version}-Build-#{ENV['ccnetnumericlabel']}.zip &quot; +
			&quot;#{build_dir}\\Rhino.Mocks.dll &quot; +
			&quot;#{build_dir}\\Rhino.Mocks.xml &quot; +
			&quot;license.txt &quot; +
			&quot;acknowledgements.txt&quot;

	rescue
        fail 'Error: Failed to execute ZIP command'
	end
end

task :upload =&gt; :release do
	if (File.exists?(upload_script) )
		begin
			log = sh 'git log -n 1 --oneline'
			MsBuildRunner.new({:properties =&gt; { :Category =&gt; upload_category,
											   :Comment =&gt; log,
											   :File =&gt; &quot;#{release_dir}\\Rhino.Mocks-#{human_readable_version}-Build-#{ENV['ccnetnumericlabel']}.zip&quot; },
							   :project_file =&gt; upload_script }).run

		rescue
			fail &quot;Error: Failed to publish build&quot;
		end
	else
		puts &quot;could not find upload script #{upload_script}, skipping upload&quot;
	end
end</pre>
<p>If you want to give this script a try (I’ve tried everything but the upload piece, which for obvious reasons I couldn’t test) just follow these steps:</p>
<ol>
<li>Get a copy of the <a href="http://github.com/ayende/rhino-mocks" target="_blank">rhino mocks source</a>.</li>
<li>Make sure you’ve got <a href="http://rubyforge.org/projects/rubyinstaller/" target="_blank">ruby installed</a>.</li>
<li>Make sure gem is up to date: “gem update –system”</li>
<li>Add github to your gem sources: “gem sources -a <a href="http://gems.github.com">http://gems.github.com</a>”</li>
<li>Install rubicant: “gem install mendicantx-rubicant”</li>
<li>Copy the above script into a file named rakefile.rb in the rhino mocks directory.</li>
<li>Run it: “rake release”</li>
</ol>
<p>God willing, this will work. I’ve tried it on a couple of fresh systems, but have no good way of knowing if it works beyond my machines. If you do on the offhand decide to try it, please let me know below!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beigesunshine.com/2009/09/13/rubicants-first-real-build/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rubicant &#8211; MsBuild Task added</title>
		<link>http://blog.beigesunshine.com/2009/01/30/rubicant-msbuild-task-added/</link>
		<comments>http://blog.beigesunshine.com/2009/01/30/rubicant-msbuild-task-added/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 06:38:14 +0000</pubDate>
		<dc:creator>mendicant</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Build]]></category>
		<category><![CDATA[Rake]]></category>
		<category><![CDATA[rubicant]]></category>

		<guid isPermaLink="false">http://blog.beigesunshine.com/2009/01/30/rubicant-msbuild-task-added/</guid>
		<description><![CDATA[I just added an MsBuild task for rubicant tonight. I&#8217;m not very familiar with the command line options for MsBuild so some of these could probably be improved a bit, but until I know more I will leave them as they are.
The MsBuild Task is used to create tasks which will use MsBuild. This should [...]]]></description>
			<content:encoded><![CDATA[<p>I just added an <a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx">MsBuild</a> task for <a href="http://github.com/mendicantx/rubicant">rubicant</a> tonight. I&#8217;m not very familiar with the command line options for MsBuild so some of these could probably be improved a bit, but until I know more I will leave them as they are.</p>
<p>The MsBuild Task is used to create tasks which will use MsBuild. This should help with people who need to build WPF applications (since MsBuild is the only way right now), or (fingers crossed) migrate from MsBuild. </p>
<p>The MsBuild Task is used as follows: </p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; height: 260px; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   1:</span> MsBuildTask.<span style="color: #0000ff">new</span>(:task_name =&gt; :dependencies) <span style="color: #0000ff">do</span> |msb|</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   2:</span>   msb.no_autoresponse</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   3:</span>   msb.target</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   4:</span>   msb.logger</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   5:</span>   msb.distributed_logger</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   6:</span>   msb.console_logger_parameters</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   7:</span>   msb.validate</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   8:</span>   msb.verbosity</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   9:</span>   msb.no_console_logger</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  10:</span>   msb.max_cpu_count</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  11:</span>   msb.ignore_project_extensions</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  12:</span>   msb.file_logger</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  13:</span>   msb.distributed_file_logger</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  14:</span>   msb.node_reuse</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  15:</span>   msb.properties</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  16:</span>   msb.file_logger_parameters</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">  17:</span>   msb.project_file</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">  18:</span> end</pre>
</p></div>
</div>
<p>Each of setters matches a command line option for MsBuild. For more information on what each one does, please view the documentation at <a href="http://msdn.microsoft.com/en-us/library/ms164311.aspx">http://msdn.microsoft.com/en-us/library/ms164311.aspx</a>. </p>
<p>Values that can only be set (for example, /noautoresponse) can be set to true (set) or nil (unset). </p>
<p>Values, such as /property that take a list of option settings, must be passed a hash where the keys are the options and the values are the option values. For example, to set the output directory and Warning Level for a csproj compile, you could use: </p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   1:</span> MsBuildTask.<span style="color: #0000ff">new</span>(:compile) <span style="color: #0000ff">do</span> |msb|</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   2:</span>   msb.properties = { :OutputDir =&gt; <span style="color: #006080">&quot;.\\Output&quot;</span>, :WarningLevel =&gt; 2 }</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   3:</span>   msb.project_file = <span style="color: #006080">&quot;.\\Project1\\project.csproj&quot;</span></pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   4:</span> end</pre>
</p></div>
</div>
<p>As of yet, I haven&#8217;t added an MsBuild helper to help create this function. I will probably get this done fairly shortly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beigesunshine.com/2009/01/30/rubicant-msbuild-task-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rubicant update &#8211; Easy installation via gem</title>
		<link>http://blog.beigesunshine.com/2009/01/25/rubicant-update-easy-installation-via-gem/</link>
		<comments>http://blog.beigesunshine.com/2009/01/25/rubicant-update-easy-installation-via-gem/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 15:43:53 +0000</pubDate>
		<dc:creator>mendicant</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Build]]></category>
		<category><![CDATA[Rake]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[rubicant]]></category>

		<guid isPermaLink="false">http://blog.beigesunshine.com/2009/01/25/rubicant-update-easy-installation-via-gem/</guid>
		<description><![CDATA[Since I already had rubicant building as a gem, it made sense to make it available as a gem. I have moved the project to github and it is now located at: http://github.com/mendicantx/rubicant/
In addition, you can also install rubicant via gem:


   1: gem sources -a http://gems.github.com
   2: sudo gem install mendicantx-rubicant


You [...]]]></description>
			<content:encoded><![CDATA[<p>Since I already had rubicant building as a gem, it made sense to make it available as a gem. I have moved the project to <a href="http://github.com">github</a> and it is now located at: <a title="http://github.com/mendicantx/rubicant/" href="http://github.com/mendicantx/rubicant/">http://github.com/mendicantx/rubicant/</a></p>
<p>In addition, you can also install rubicant via gem:</p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none"><span style="color: #606060">   1:</span> gem sources -a http:<span style="color: #008000">//gems.github.com</span></pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none"><span style="color: #606060">   2:</span> sudo gem install mendicantx-rubicant</pre>
</p></div>
</div>
<p>You should only ever have to run the gem sources command once. This adds github to your sources of remote gems. From what I understand, there&#8217;s a ton of great projects there.</p>
<p>Now you don&#8217;t have an excuse to try it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.beigesunshine.com/2009/01/25/rubicant-update-easy-installation-via-gem/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
