<?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: Nobody Cares About Your Build</title>
	<atom:link href="http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/feed/" rel="self" type="application/rss+xml" />
	<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/</link>
	<description>Any insufficiently advanced magic is indistinguishable from technology.</description>
	<pubDate>Mon, 06 Sep 2010 04:20:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kit</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-11</link>
		<dc:creator>kit</dc:creator>
		<pubDate>Wed, 01 Oct 2008 04:31:40 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-11</guid>
		<description>@tan: I know Ruby is well-loved by many, and they're welcome to it, but for my money, it's the scripting language's equivalent of a head-final language (like, oh, say, Japanese in the natural language domain), which, as a speaker of a head-initial language (English), is still hard for me to grasp.  It's inside-out to me, though after living in Japan I've managed to internalize Japanese syntax as natural.  Not so Ruby, yet.

That's my incoherent 2¢</description>
		<content:encoded><![CDATA[<p>@tan: I know Ruby is well-loved by many, and they&#8217;re welcome to it, but for my money, it&#8217;s the scripting language&#8217;s equivalent of a head-final language (like, oh, say, Japanese in the natural language domain), which, as a speaker of a head-initial language (English), is still hard for me to grasp.  It&#8217;s inside-out to me, though after living in Japan I&#8217;ve managed to internalize Japanese syntax as natural.  Not so Ruby, yet.</p>
<p>That&#8217;s my incoherent 2¢</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Owen</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-10</link>
		<dc:creator>Owen</dc:creator>
		<pubDate>Wed, 01 Oct 2008 03:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-10</guid>
		<description>I hadn't.  While I have nothing against using tools written in language A to build software in language B, using ruby *as a build language* grates, both on my brain and on my eyes.  The syntax is... not great.  The best thing I can say about

  desc 'All those implementation details'
  define 'teh-impl' do
    compile.with AXIS_OF_WS, OPENJPA
    compile { open_jpa_enhance }
    package :jar
  end

is that it's terser than the equivalent maven configuration; it's not particularly clearer.

In return, have you looked at scons?</description>
		<content:encoded><![CDATA[<p>I hadn&#8217;t.  While I have nothing against using tools written in language A to build software in language B, using ruby *as a build language* grates, both on my brain and on my eyes.  The syntax is&#8230; not great.  The best thing I can say about</p>
<p>  desc &#8216;All those implementation details&#8217;<br />
  define &#8216;teh-impl&#8217; do<br />
    compile.with AXIS_OF_WS, OPENJPA<br />
    compile { open_jpa_enhance }<br />
    package :jar<br />
  end</p>
<p>is that it&#8217;s terser than the equivalent maven configuration; it&#8217;s not particularly clearer.</p>
<p>In return, have you looked at scons?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tan Quach</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-9</link>
		<dc:creator>Tan Quach</dc:creator>
		<pubDate>Tue, 30 Sep 2008 02:00:07 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-9</guid>
		<description>Have you seen buildr? 

http://incubator.apache.org/buildr/</description>
		<content:encoded><![CDATA[<p>Have you seen buildr? </p>
<p><a href="http://incubator.apache.org/buildr/" rel="nofollow">http://incubator.apache.org/buildr/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Owen</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-8</link>
		<dc:creator>Owen</dc:creator>
		<pubDate>Mon, 29 Sep 2008 03:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-8</guid>
		<description>Either an active community or a large body of incidental documentation. There's no large community around make(1) any more, but there are so many bits of "hey, I figured out how to do (task X) in my Makefile" documentation out on the web that it makes up for it.

Though...  if you have a complex build, it's probably worth simplifying it - very few of the "complex" builds I've encountered have actually needed the complication; most were poorly-factored and could've been broken down into several stages for easier maintenance.</description>
		<content:encoded><![CDATA[<p>Either an active community or a large body of incidental documentation. There&#8217;s no large community around make(1) any more, but there are so many bits of &#8220;hey, I figured out how to do (task X) in my Makefile&#8221; documentation out on the web that it makes up for it.</p>
<p>Though&#8230;  if you have a complex build, it&#8217;s probably worth simplifying it - very few of the &#8220;complex&#8221; builds I&#8217;ve encountered have actually needed the complication; most were poorly-factored and could&#8217;ve been broken down into several stages for easier maintenance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Binstock</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-7</link>
		<dc:creator>Andrew Binstock</dc:creator>
		<pubDate>Sun, 28 Sep 2008 22:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-7</guid>
		<description>Nicely done. I would add that the tool must have an active community. When you're deep in a complex build, it's nice--sometimes crucial--to be able to communicate with other users about how they have solved build problems you're facing.</description>
		<content:encoded><![CDATA[<p>Nicely done. I would add that the tool must have an active community. When you&#8217;re deep in a complex build, it&#8217;s nice&#8211;sometimes crucial&#8211;to be able to communicate with other users about how they have solved build problems you&#8217;re facing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Owen</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-3</link>
		<dc:creator>Owen</dc:creator>
		<pubDate>Thu, 25 Sep 2008 04:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-3</guid>
		<description>@idcmp: I was thinking more about building, say, two JARs from one src/ directory by way of clever include/exclude filters, as a project we both know used to do.  "The same source tree" is pretty vague, though, and I definitely have no problem with the same code living in src-for-a and src-for-b directories that are built simultaneously.  I'd just be inclined to write two builds.</description>
		<content:encoded><![CDATA[<p>@idcmp: I was thinking more about building, say, two JARs from one src/ directory by way of clever include/exclude filters, as a project we both know used to do.  &#8220;The same source tree&#8221; is pretty vague, though, and I definitely have no problem with the same code living in src-for-a and src-for-b directories that are built simultaneously.  I&#8217;d just be inclined to write two builds.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: idcmp</title>
		<link>http://codex.grimoire.ca/2008/09/24/nobody-cares-about-your-build/comment-page-1/#comment-2</link>
		<dc:creator>idcmp</dc:creator>
		<pubDate>Thu, 25 Sep 2008 01:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://codex.grimoire.ca/?p=3#comment-2</guid>
		<description>I still think "one source tree per product" should be driven more by release cycles than products.  If products A and B are built and released by the same team at the same time, then there's little harm in them living together; especially if a team is resource constrained and could better use the time elsewhere.</description>
		<content:encoded><![CDATA[<p>I still think &#8220;one source tree per product&#8221; should be driven more by release cycles than products.  If products A and B are built and released by the same team at the same time, then there&#8217;s little harm in them living together; especially if a team is resource constrained and could better use the time elsewhere.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
