<?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>The If Works &#187; IncludeByDefault</title>
	<atom:link href="http://blog.jcoglan.com/category/includebydefault/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jcoglan.com</link>
	<description>This dirt was a building before</description>
	<lastBuildDate>Mon, 19 Jul 2010 07:46:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1-alpha-15443</generator>
		<item>
		<title>How to fix bugs in software the hard way, or, why open source software is so damn helpful</title>
		<link>http://blog.jcoglan.com/2007/07/13/how-to-fix-bugs-in-software-the-hard-way-or-why-open-source-software-is-so-damn-helpful/</link>
		<comments>http://blog.jcoglan.com/2007/07/13/how-to-fix-bugs-in-software-the-hard-way-or-why-open-source-software-is-so-damn-helpful/#comments</comments>
		<pubDate>Fri, 13 Jul 2007 15:27:49 +0000</pubDate>
		<dc:creator>James Coglan</dc:creator>
				<category><![CDATA[IncludeByDefault]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/13/how-to-fix-bugs-in-software-the-hard-way-or-why-open-source-software-is-so-damn-helpful/</guid>
		<description><![CDATA[If nothing else, this week has taught me a few things about bug fixing. As I&#8217;ve written about before, my IncludeByDefault plugin (or, more accurately, the project I&#8217;m using it for) exposed a bug or two in Rails. Revision 17 is the result of a very messy process trying to chase a bug up and [...]]]></description>
		<wfw:commentRss>http://blog.jcoglan.com/2007/07/13/how-to-fix-bugs-in-software-the-hard-way-or-why-open-source-software-is-so-damn-helpful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IncludeByDefault progress</title>
		<link>http://blog.jcoglan.com/2007/07/11/includebydefault-progress/</link>
		<comments>http://blog.jcoglan.com/2007/07/11/includebydefault-progress/#comments</comments>
		<pubDate>Wed, 11 Jul 2007 19:02:41 +0000</pubDate>
		<dc:creator>James Coglan</dc:creator>
				<category><![CDATA[IncludeByDefault]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/11/includebydefault-progress/</guid>
		<description><![CDATA[IncludeByDefault, as mentioned in my last post, hit some snags with ActiveRecord generating duplicate table aliases when doing cascaded includes, e.g. Tag.find(8).posts.find(:all, :include => :tags) So, I set out to work around it, only to run into further problems. I went with option C: let find operations get all the way to the database, and [...]]]></description>
		<wfw:commentRss>http://blog.jcoglan.com/2007/07/11/includebydefault-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Including in circles</title>
		<link>http://blog.jcoglan.com/2007/07/09/including-in-circles/</link>
		<comments>http://blog.jcoglan.com/2007/07/09/including-in-circles/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 21:38:45 +0000</pubDate>
		<dc:creator>James Coglan</dc:creator>
				<category><![CDATA[IncludeByDefault]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/09/including-in-circles/</guid>
		<description><![CDATA[Not long had I been using my new plugin when I discovered it made this happen when trying to eager-load on a many-to-many association: SELECT DISTINCT news_stories.id FROM news_stories LEFT OUTER JOIN countries_news_stories ON countries_news_stories.news_id = news_stories.id LEFT OUTER JOIN countries ON countries.id = countries_news_stories.country_id INNER JOIN countries_news_stories ON news_stories.id = countries_news_stories.news_id WHERE (countries_news_stories.country_id = [...]]]></description>
		<wfw:commentRss>http://blog.jcoglan.com/2007/07/09/including-in-circles/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Rails plugin: IncludeByDefault</title>
		<link>http://blog.jcoglan.com/2007/07/09/new-rails-plugin-includebydefault/</link>
		<comments>http://blog.jcoglan.com/2007/07/09/new-rails-plugin-includebydefault/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 12:41:32 +0000</pubDate>
		<dc:creator>James Coglan</dc:creator>
				<category><![CDATA[IncludeByDefault]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.jcoglan.com/2007/07/09/new-rails-plugin-includebydefault/</guid>
		<description><![CDATA[It&#8217;s true, I&#8217;m a plugin writing machine. Seriously though, this one&#8217;s tiny. I took all of five minutes to write. What it does is, it lets you specify a default value for the :include option on ActiveRecord::Base.find, so you can automate eager loading of associations. I&#8217;ll use an example I&#8217;m comfortable with: class BlogEntry < [...]]]></description>
		<wfw:commentRss>http://blog.jcoglan.com/2007/07/09/new-rails-plugin-includebydefault/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
