<?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: Installing GrowlNotify and Autotest for BDD use with Rspec on Leopard</title>
	<atom:link href="http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/</link>
	<description>Late nights eventually pay off</description>
	<lastBuildDate>Thu, 11 Mar 2010 20:05:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ed Moss</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2738</link>
		<dc:creator>Ed Moss</dc:creator>
		<pubDate>Tue, 26 May 2009 23:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2738</guid>
		<description>FYI, I don&#039;t recommend including &#039;vendor&#039; in your .autotest file. Why? Well if you have a vendor.rb model - vendors table in your db - it will miss your unit test. Yes, I found out the hard way. Also, in finding out the hard way, I noticed that the vendor folder is already skipped properly. Here is my exception block (with some additional ignores for other gems I use):

  %w{.svn .hg .git .sass-cache .DS_Store .braids}.each {&#124;exception&#124; at.add_exception(exception)}

If you want confirmation that &#039;vendor&#039; is already ignroed, look in your Zentest gem folder, file rails.rb:

    add_exception %r%^\./(?:db&#124;doc&#124;log&#124;public&#124;script&#124;tmp&#124;vendor)%

which when used in autotest.rb here:

    Find.prune if f =~ self.exceptions

looks like this:

   /(?-mix:^\.\/(?:db&#124;doc&#124;log&#124;public&#124;script&#124;tmp&#124;vendor))&#124;\.svn&#124;\.hg&#124;\.git/

Hope this makes sense.</description>
		<content:encoded><![CDATA[<p>FYI, I don&#8217;t recommend including &#8216;vendor&#8217; in your .autotest file. Why? Well if you have a vendor.rb model &#8211; vendors table in your db &#8211; it will miss your unit test. Yes, I found out the hard way. Also, in finding out the hard way, I noticed that the vendor folder is already skipped properly. Here is my exception block (with some additional ignores for other gems I use):</p>
<p>  %w{.svn .hg .git .sass-cache .DS_Store .braids}.each {|exception| at.add_exception(exception)}</p>
<p>If you want confirmation that &#8216;vendor&#8217; is already ignroed, look in your Zentest gem folder, file rails.rb:</p>
<p>    add_exception %r%^\./(?:db|doc|log|public|script|tmp|vendor)%</p>
<p>which when used in autotest.rb here:</p>
<p>    Find.prune if f =~ self.exceptions</p>
<p>looks like this:</p>
<p>   /(?-mix:^\.\/(?:db|doc|log|public|script|tmp|vendor))|\.svn|\.hg|\.git/</p>
<p>Hope this makes sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: justin</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2586</link>
		<dc:creator>justin</dc:creator>
		<pubDate>Sun, 25 Jan 2009 21:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2586</guid>
		<description>Mac OS X supports multiple permission models - there&#039;s the standard set of owner/group/other and read/write/execute, and a richer set that allows more fine-grained control.

ls uses the @ sign to indicate files are using the richer set and therefore what you&#039;re seeing is only part of the picture. You can use the -e switch to display the extended permissions.</description>
		<content:encoded><![CDATA[<p>Mac OS X supports multiple permission models &#8211; there&#8217;s the standard set of owner/group/other and read/write/execute, and a richer set that allows more fine-grained control.</p>
<p>ls uses the @ sign to indicate files are using the richer set and therefore what you&#8217;re seeing is only part of the picture. You can use the -e switch to display the extended permissions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: j0ban</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2557</link>
		<dc:creator>j0ban</dc:creator>
		<pubDate>Wed, 31 Dec 2008 10:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2557</guid>
		<description>Thanks for the information</description>
		<content:encoded><![CDATA[<p>Thanks for the information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jpemberthy</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2403</link>
		<dc:creator>jpemberthy</dc:creator>
		<pubDate>Mon, 06 Oct 2008 17:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2403</guid>
		<description>Awesome, thanks!</description>
		<content:encoded><![CDATA[<p>Awesome, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Walsh</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2382</link>
		<dc:creator>Bob Walsh</dc:creator>
		<pubDate>Sun, 28 Sep 2008 00:27:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2382</guid>
		<description>Nice! And thanks!</description>
		<content:encoded><![CDATA[<p>Nice! And thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2377</link>
		<dc:creator>Micah</dc:creator>
		<pubDate>Thu, 25 Sep 2008 13:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2377</guid>
		<description>Finally got around to setting this up.  Worked the first time :)</description>
		<content:encoded><![CDATA[<p>Finally got around to setting this up.  Worked the first time <img src='http://blog.aisleten.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanja Curgus</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2358</link>
		<dc:creator>Sanja Curgus</dc:creator>
		<pubDate>Mon, 15 Sep 2008 00:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2358</guid>
		<description>Thank you so much. This worked while growl glue didn&#039;t. I&#039;m running OSX 10.5. thanx</description>
		<content:encoded><![CDATA[<p>Thank you so much. This worked while growl glue didn&#8217;t. I&#8217;m running OSX 10.5. thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Baker</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2269</link>
		<dc:creator>Peter Baker</dc:creator>
		<pubDate>Sat, 26 Jul 2008 00:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2269</guid>
		<description>fwiw I had to add &quot;ENV[&#039;RSPEC&#039;] &#124;&#124;= &#039;true&#039;&quot; to my environment.rb file to make autotest work in the latest rspec head...</description>
		<content:encoded><![CDATA[<p>fwiw I had to add &#8220;ENV['RSPEC'] ||= &#8216;true&#8217;&#8221; to my environment.rb file to make autotest work in the latest rspec head&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wiktor Gworek</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2253</link>
		<dc:creator>Wiktor Gworek</dc:creator>
		<pubDate>Thu, 19 Jun 2008 12:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2253</guid>
		<description>Muchos kudos for the tip! It works like a charm. 

Maybe there is too much configuration (by too much I mean installing growlnotify) but rest is OK. 

Cheers!</description>
		<content:encoded><![CDATA[<p>Muchos kudos for the tip! It works like a charm. </p>
<p>Maybe there is too much configuration (by too much I mean installing growlnotify) but rest is OK. </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2251</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Wed, 18 Jun 2008 02:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.aisleten.com/2008/02/21/installing-growlnotify-and-autotest-for-bdd-use-with-rspec-on-leopard/#comment-2251</guid>
		<description>Awesome tip thanks! I&#039;ll pass it along to my friends.

One small hiccup. The double-quotes in the regex are actually smart quotes and trip up the regex parser. Instead of:

output = filtered.empty? ? “” 

replace the quotes and get this instead

output = filtered.empty? ? &quot;&quot;

(Hopefully my straight quotes didn&#039;t get parsed out.)</description>
		<content:encoded><![CDATA[<p>Awesome tip thanks! I&#8217;ll pass it along to my friends.</p>
<p>One small hiccup. The double-quotes in the regex are actually smart quotes and trip up the regex parser. Instead of:</p>
<p>output = filtered.empty? ? “” </p>
<p>replace the quotes and get this instead</p>
<p>output = filtered.empty? ? &#8220;&#8221;</p>
<p>(Hopefully my straight quotes didn&#8217;t get parsed out.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
