<?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: An Alternate Way To Handle Task Dependencies In Custom Rake Tasks</title>
	<atom:link href="http://lostechies.com/derickbailey/2009/09/18/an-alternate-way-to-handle-task-dependencies-in-custom-rake-tasks/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derickbailey/2009/09/18/an-alternate-way-to-handle-task-dependencies-in-custom-rake-tasks/</link>
	<description>Better Than Yesterday</description>
	<lastBuildDate>Thu, 13 Jun 2013 17:35: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: Brian</title>
		<link>http://lostechies.com/derickbailey/2009/09/18/an-alternate-way-to-handle-task-dependencies-in-custom-rake-tasks/#comment-472</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Fri, 18 Sep 2009 15:37:39 +0000</pubDate>
		<guid isPermaLink="false">/blogs/derickbailey/archive/2009/09/17/an-alternate-way-to-handle-task-dependencies-in-custom-rake-tasks.aspx#comment-472</guid>
		<description>In ruby this &quot; =&gt; &quot; is not a lambda indicator.  It&#039;s is the delimiter between key and value in a hash.  You&#039;re right in stating you can pass &quot;:name =&gt; [:dep1, :dep2] &quot; to the rake task method...however, what you&#039;re passing is a single argument to that method.  The argument is a single-item hash consisting of a key (the left side of the arrow, the task&#039;s name in symbol form) and an array as the value (symbols of other names of task dependencies).  Actual lamda objects aren&#039;t incredibly common in ruby as the are in C# due to blocks, which are similar to lamdas, but not quite the same.  The task method ALSO takes a block (indicated by the do/end pair).</description>
		<content:encoded><![CDATA[<p>In ruby this &#8221; => &#8221; is not a lambda indicator.  It&#8217;s is the delimiter between key and value in a hash.  You&#8217;re right in stating you can pass &#8220;:name => [:dep1, :dep2] &#8221; to the rake task method&#8230;however, what you&#8217;re passing is a single argument to that method.  The argument is a single-item hash consisting of a key (the left side of the arrow, the task&#8217;s name in symbol form) and an array as the value (symbols of other names of task dependencies).  Actual lamda objects aren&#8217;t incredibly common in ruby as the are in C# due to blocks, which are similar to lamdas, but not quite the same.  The task method ALSO takes a block (indicated by the do/end pair).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
