<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: fixmefinder.rb</title>
	<atom:link href="http://jorgebernal.info/2006/04/11/fixmefinder-rb/feed/" rel="self" type="application/rss+xml" />
	<link>http://jorgebernal.info/2006/04/11/fixmefinder-rb/</link>
	<description></description>
	<lastBuildDate>Sat, 17 Mar 2012 09:28:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: koke</title>
		<link>http://jorgebernal.info/2006/04/11/fixmefinder-rb/#comment-70</link>
		<dc:creator><![CDATA[koke]]></dc:creator>
		<pubDate>Wed, 12 Apr 2006 01:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://jorgebernalen.wordpress.com/2006/04/11/fixmefinder-rb#comment-70</guid>
		<description><![CDATA[Yep, a &quot;grep -rn FIXME *&quot; can do the job, but it&#039;s so nice to write Ruby... ;)]]></description>
		<content:encoded><![CDATA[<p>Yep, a &#8220;grep -rn FIXME *&#8221; can do the job, but it&#8217;s so nice to write Ruby&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://jorgebernal.info/2006/04/11/fixmefinder-rb/#comment-69</link>
		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Tue, 11 Apr 2006 09:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://jorgebernalen.wordpress.com/2006/04/11/fixmefinder-rb#comment-69</guid>
		<description><![CDATA[Why not use grep?]]></description>
		<content:encoded><![CDATA[<p>Why not use grep?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koke</title>
		<link>http://jorgebernal.info/2006/04/11/fixmefinder-rb/#comment-68</link>
		<dc:creator><![CDATA[koke]]></dc:creator>
		<pubDate>Tue, 11 Apr 2006 07:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://jorgebernalen.wordpress.com/2006/04/11/fixmefinder-rb#comment-68</guid>
		<description><![CDATA[Here&#8217;s some code if anyone might find it interesting. I usually put FIXME comments in my code. As much usually I forgot abut them ;P


	So here&#8217;s &lt;a href=&quot;http://koke.amedias.org/files/fixmefinder.rb&quot; rel=&quot;nofollow&quot;&gt;FixmeFinder&lt;/a&gt;. A ruby class to find lines which contain the string &#8220;FIXME&#8221; in a bunch of files. Sounds silly but if it&#8217;s useful to me, it may be for someone else.


I also use a &lt;a href=&quot;http://rake.rubyforge.org/&quot; rel=&quot;nofollow&quot;&gt;rake&lt;/a&gt; task to find fixmes:
&lt;code&gt;&lt;pre&gt;
desc &quot;Find FIXMEs in the code&quot;
task :fixme do
  patterns = %w[
    lib/**/*.rb
    schema/**/*.sqlr
  ]
  FixmeFinder.new(patterns).find
end&lt;/pre&gt;&lt;/code&gt;

It outputs something like:
&lt;code&gt;&lt;pre&gt;$ rake fixme
schema/actions.sqlr:448: Check this type
schema/actions.sqlr:450: Check this type
&lt;/pre&gt;&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Here&#8217;s some code if anyone might find it interesting. I usually put FIXME comments in my code. As much usually I forgot abut them ;P</p>
<p>	So here&#8217;s <a href="http://koke.amedias.org/files/fixmefinder.rb" rel="nofollow">FixmeFinder</a>. A ruby class to find lines which contain the string &#8220;FIXME&#8221; in a bunch of files. Sounds silly but if it&#8217;s useful to me, it may be for someone else.</p>
<p>I also use a <a href="http://rake.rubyforge.org/" rel="nofollow">rake</a> task to find fixmes:<br />
<code>
<pre>
desc "Find FIXMEs in the code"
task :fixme do
  patterns = %w[
    lib/**/*.rb
    schema/**/*.sqlr
  ]
  FixmeFinder.new(patterns).find
end</pre>
<p></code></p>
<p>It outputs something like:<br />
<code>
<pre>$ rake fixme
schema/actions.sqlr:448: Check this type
schema/actions.sqlr:450: Check this type
</pre>
<p></code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

