<?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>Tender Lovemaking &#187; meow</title>
	<atom:link href="http://tenderlovemaking.com/category/computadora/meow/feed/" rel="self" type="application/rss+xml" />
	<link>http://tenderlovemaking.com</link>
	<description>The act of making love, tenderly.</description>
	<lastBuildDate>Sat, 26 Jun 2010 02:57:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Easily Add Growl Notifications to Autotest</title>
		<link>http://tenderlovemaking.com/2008/11/03/easily-add-growl-notifications-to-autotest/</link>
		<comments>http://tenderlovemaking.com/2008/11/03/easily-add-growl-notifications-to-autotest/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 23:06:39 +0000</pubDate>
		<dc:creator>Aaron Patterson</dc:creator>
				<category><![CDATA[computadora]]></category>
		<category><![CDATA[meow]]></category>

		<guid isPermaLink="false">http://tenderlovemaking.com/?p=165</guid>
		<description><![CDATA[I recently released a new version of meow which is a ruby library to easily integrate growl notifications in to your applications. The main feature I added was to make it easy to add growl notifications for autotest. All you have to do is add &#8220;require &#8216;meow/autotest&#8217;&#8221; to your .autotest file. Here is a screencast. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently released a new version of <a href="http://meow.rubyforge.org/meow/">meow</a> which is a ruby library to easily integrate growl notifications in to your applications.  The main feature I added was to make it easy to add growl notifications for autotest.</p>
<p>All you have to do is add &#8220;require &#8216;meow/autotest&#8217;&#8221; to your .autotest file.</p>
<p>Here is a screencast.  Please be kind.  This is my first screencast!  (that is why I use all the features!)</p>
<p><object type="application/x-shockwave-flash" width="499" height="312" data="http://www.flickr.com/apps/video/stewart.swf?v=61761" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=57c3d12116&amp;photo_id=2993705321"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=61761"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=61761" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=57c3d12116&amp;photo_id=2993705321" height="312" width="499"></embed></object></p>
<p><a href='http://tenderlovemaking.com/wp-content/uploads/2008/11/meow_autotest.mov'>Direct Download</a>.</p>
<p>I forgot to mention.  Make sure you&#8217;re running OS X 10.5.</p>
]]></content:encoded>
			<wfw:commentRss>http://tenderlovemaking.com/2008/11/03/easily-add-growl-notifications-to-autotest/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
<enclosure url="http://tenderlovemaking.com/wp-content/uploads/2008/11/meow_autotest.mov" length="6961598" type="video/quicktime" />
		</item>
		<item>
		<title>Meow meow meow meow meow</title>
		<link>http://tenderlovemaking.com/2008/06/06/meow-meow-meow-meow-meow/</link>
		<comments>http://tenderlovemaking.com/2008/06/06/meow-meow-meow-meow-meow/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 19:56:52 +0000</pubDate>
		<dc:creator>Aaron Patterson</dc:creator>
				<category><![CDATA[computadora]]></category>
		<category><![CDATA[meow]]></category>

		<guid isPermaLink="false">http://tenderlovemaking.com/?p=141</guid>
		<description><![CDATA[The other day I wrote an app called dejour to give me growl notifications from all the *jour gems out there. I used Eric Hodel&#8217;s awesome ruby-growl library. Unfortunately it does all communications over the interweb, so you have to tweak some knobs in Growl to get it to work. I stumbled across a ruby/cocoa [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I wrote an app called <a href="http://github.com/aaronp/dejour/tree/master">dejour</a> to give me growl notifications from <a href="http://github.com/chad/gitjour/tree/master">all</a> <a href="http://github.com/evanphx/gemjour/tree/master">the</a> <a href="http://github.com/jbarnette/pastejour/tree/master">*jour</a> gems out there.  I used Eric Hodel&#8217;s awesome <a href="http://segment7.net/projects/ruby/growl/">ruby-growl</a> library.  Unfortunately it does all communications over the interweb, so you have to tweak some knobs in Growl to get it to work.  I stumbled across a ruby/cocoa example using Growl, fixed it up, and released a gem called &#8220;Meow&#8221;.</p>
<p>Meow lets you post notifications to your local machine without adjusting Growl.  If you&#8217;re on OS X 10.5, just do:<br />
<code><br />
$ gem install meow<br />
[/sourcecode]</p>
<p>Then you can do this:<br />
<code><br />
$ ruby -r rubygems -e'require "meow"; Meow.notify("meow", "meow", "meow")'<br />
[/sourcecode]</p>
<p>No growl tweaks required!  Here is a code sample that is a little more explanatory:</p>
<pre class="brush: ruby;">
require 'rubygems'
require 'meow'

meep = Meow.new('My Application Name')
meep.notify('Message Title', 'Message Description')
</pre>
<p>Be sure to check out <a href="http://meow.rubyforge.org/">the documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://tenderlovemaking.com/2008/06/06/meow-meow-meow-meow-meow/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
