<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Albacore: A Suite Of Rake Build Tasks For .NET Solutions</title>
	<atom:link href="http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/</link>
	<description>Better Than Yesterday</description>
	<lastBuildDate>Mon, 20 May 2013 17:13:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Aaron Boxer</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-2781</link>
		<dc:creator>Aaron Boxer</dc:creator>
		<pubDate>Fri, 12 Oct 2012 14:13:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-2781</guid>
		<description>Great post. I found this typo: &quot;gem source&quot; should read &quot;gem sources&quot;
</description>
		<content:encoded><![CDATA[<p>Great post. I found this typo: &#8220;gem source&#8221; should read &#8220;gem sources&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derick.bailey</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-484</link>
		<dc:creator>derick.bailey</dc:creator>
		<pubDate>Mon, 28 Sep 2009 00:24:36 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-484</guid>
		<description>@Alexander,

Thanks for the link to Rake-Me. I was looking for that when I wrote this post, but couldn&#039;t find it. I&#039;m updating the post to include that in the list at the top.

The reason I decided to go down the route of creating the rake tasklibs, was to be a bit more &quot;professional&quot; in my approach to the problem. The truth is, the task lib is just a simple adapter pattern - it takes the real object model that sits behind the scenes and exposes it to rake directly through a custom rake task. If you take a look at the MSBuildTask or the AssemblyInfoTask in Albacore, you won&#039;t see very much code, because all the real work is done in the object model.</description>
		<content:encoded><![CDATA[<p>@Alexander,</p>
<p>Thanks for the link to Rake-Me. I was looking for that when I wrote this post, but couldn&#8217;t find it. I&#8217;m updating the post to include that in the list at the top.</p>
<p>The reason I decided to go down the route of creating the rake tasklibs, was to be a bit more &#8220;professional&#8221; in my approach to the problem. The truth is, the task lib is just a simple adapter pattern &#8211; it takes the real object model that sits behind the scenes and exposes it to rake directly through a custom rake task. If you take a look at the MSBuildTask or the AssemblyInfoTask in Albacore, you won&#8217;t see very much code, because all the real work is done in the object model.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Gro&#223;</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-483</link>
		<dc:creator>Alexander Gro&#223;</dc:creator>
		<pubDate>Sun, 27 Sep 2009 20:44:36 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-483</guid>
		<description>Derick,

I also found myself in need for a couple of Rake tasks when we migrated our far-too-complex NAnt scripts to Rake. I didn&#039;t go down the TaskLib route like you did because I basically never saw a need to have (and use) a TaskLib when classes would achieve the same result. But maybe I am just missing the point about TaskLibs. Great to see some tests in Albacore as that&#039;s something that I wasn&#039;t able to look into.

Anyway, you might want to have a look at &quot;rake-me&quot; which contains a host of Rake tasks that you might require in the future.
http://github.com/agross/rake-me

Alex</description>
		<content:encoded><![CDATA[<p>Derick,</p>
<p>I also found myself in need for a couple of Rake tasks when we migrated our far-too-complex NAnt scripts to Rake. I didn&#8217;t go down the TaskLib route like you did because I basically never saw a need to have (and use) a TaskLib when classes would achieve the same result. But maybe I am just missing the point about TaskLibs. Great to see some tests in Albacore as that&#8217;s something that I wasn&#8217;t able to look into.</p>
<p>Anyway, you might want to have a look at &#8220;rake-me&#8221; which contains a host of Rake tasks that you might require in the future.<br />
<a href="http://github.com/agross/rake-me" rel="nofollow">http://github.com/agross/rake-me</a></p>
<p>Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris mitchell</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-482</link>
		<dc:creator>chris mitchell</dc:creator>
		<pubDate>Thu, 24 Sep 2009 17:49:15 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-482</guid>
		<description>Great post Derick, thanks.</description>
		<content:encoded><![CDATA[<p>Great post Derick, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derick.bailey</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-481</link>
		<dc:creator>derick.bailey</dc:creator>
		<pubDate>Thu, 24 Sep 2009 02:28:03 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-481</guid>
		<description>@Brian,

too late, man. I spent some time with Ruby on Rails during a couple days training w/ Scott Bellware... a day later, I looked at some asp.net mvc code and about puked. :)</description>
		<content:encoded><![CDATA[<p>@Brian,</p>
<p>too late, man. I spent some time with Ruby on Rails during a couple days training w/ Scott Bellware&#8230; a day later, I looked at some asp.net mvc code and about puked. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-480</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Wed, 23 Sep 2009 19:40:38 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-480</guid>
		<description>Careful. The more you use Ruby the less you will love C#. It&#039;s having to go back to driving a dump-truck after riding your motorcycle.

I am a troll.</description>
		<content:encoded><![CDATA[<p>Careful. The more you use Ruby the less you will love C#. It&#8217;s having to go back to driving a dump-truck after riding your motorcycle.</p>
<p>I am a troll.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derick.bailey</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-479</link>
		<dc:creator>derick.bailey</dc:creator>
		<pubDate>Wed, 23 Sep 2009 15:39:53 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-479</guid>
		<description>@Scott,

well it turns out it already works without specifying &#039;lib&#039;... i just installed the gem, and ran a test rake file that only specified: require &#039;albacore&#039;... worked fine! I&#039;ve updated this post to correct the require statement.</description>
		<content:encoded><![CDATA[<p>@Scott,</p>
<p>well it turns out it already works without specifying &#8216;lib&#8217;&#8230; i just installed the gem, and ran a test rake file that only specified: require &#8216;albacore&#8217;&#8230; worked fine! I&#8217;ve updated this post to correct the require statement.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derick.bailey</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-478</link>
		<dc:creator>derick.bailey</dc:creator>
		<pubDate>Wed, 23 Sep 2009 15:28:37 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-478</guid>
		<description>@Scott,

ya - i got that feeling from examining my use of other rake tasks... had a hard time figuring out how to make that work... I&#039;ll definitely look into it more, though.</description>
		<content:encoded><![CDATA[<p>@Scott,</p>
<p>ya &#8211; i got that feeling from examining my use of other rake tasks&#8230; had a hard time figuring out how to make that work&#8230; I&#8217;ll definitely look into it more, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Bellware</title>
		<link>http://lostechies.com/derickbailey/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions/#comment-477</link>
		<dc:creator>Scott Bellware</dc:creator>
		<pubDate>Wed, 23 Sep 2009 15:23:34 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/23/albacore-a-suite-of-rake-build-tasks-for-net-solutions.aspx#comment-477</guid>
		<description>Derick,

It&#039;s likely a bit more &quot;rakish&quot; to structure the gem so that &quot;lib&quot; is not necessary when requiring Albacore.  It&#039;s usually more idiomatic to do something simpler like: require &#039;albacore&#039;</description>
		<content:encoded><![CDATA[<p>Derick,</p>
<p>It&#8217;s likely a bit more &#8220;rakish&#8221; to structure the gem so that &#8220;lib&#8221; is not necessary when requiring Albacore.  It&#8217;s usually more idiomatic to do something simpler like: require &#8216;albacore&#8217;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
