<?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"
	>
<channel>
	<title>Comments for geeksomnia</title>
	<atom:link href="http://geeksomnia.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://geeksomnia.com</link>
	<description>healthy and delicious</description>
	<pubDate>Sat, 05 Jul 2008 09:49:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Task Parameters in Rake 0.8.0 by ...</title>
		<link>http://geeksomnia.com/2007/12/20/task-parameters-in-rake-080/#comment-50</link>
		<dc:creator>...</dc:creator>
		<pubDate>Mon, 09 Jun 2008 09:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/12/20/task-parameters-in-rake-080/#comment-50</guid>
		<description>correction: last example must be

task :invoke, :command, :needs =&#62; :prerequisite do &#124;task, args&#124;
  # ...
end</description>
		<content:encoded><![CDATA[<p>correction: last example must be</p>
<p>task :invoke, :command, :needs =&gt; :prerequisite do |task, args|<br />
  # &#8230;<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greedy Update by zerock</title>
		<link>http://geeksomnia.com/2007/12/20/greedy-update/#comment-38</link>
		<dc:creator>zerock</dc:creator>
		<pubDate>Wed, 09 Apr 2008 13:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/12/20/greedy-update/#comment-38</guid>
		<description>I use this all the time. Thanks!!</description>
		<content:encoded><![CDATA[<p>I use this all the time. Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greedy Update by Gonzie</title>
		<link>http://geeksomnia.com/2007/12/20/greedy-update/#comment-36</link>
		<dc:creator>Gonzie</dc:creator>
		<pubDate>Mon, 18 Feb 2008 13:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/12/20/greedy-update/#comment-36</guid>
		<description>HOT P*SS this is just what i've been looking for

don't like reader notifier running all the time as i don't it's functions other than the pass through for google reader and i don't like it taking up a menubar space or memory either

the javascript from google was an option but didn't like the clutter on my bookmark bar and wouldn't work if i disabled the rss icon in the safari address bar

for god sake man why isn't this on macupdate! change the name and get it up there now!</description>
		<content:encoded><![CDATA[<p>HOT P*SS this is just what i&#8217;ve been looking for</p>
<p>don&#8217;t like reader notifier running all the time as i don&#8217;t it&#8217;s functions other than the pass through for google reader and i don&#8217;t like it taking up a menubar space or memory either</p>
<p>the javascript from google was an option but didn&#8217;t like the clutter on my bookmark bar and wouldn&#8217;t work if i disabled the rss icon in the safari address bar</p>
<p>for god sake man why isn&#8217;t this on macupdate! change the name and get it up there now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foxy Fixtures for 1.2.x by steve</title>
		<link>http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-19</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Thu, 08 Nov 2007 18:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-19</guid>
		<description>So you don't buy the habtm is dead, long live hm:t?

:)

Thanks for the recommendation. I'll do it! And thanks for the improvement to the fixtures.</description>
		<content:encoded><![CDATA[<p>So you don&#8217;t buy the habtm is dead, long live hm:t?</p>
<p>:)</p>
<p>Thanks for the recommendation. I&#8217;ll do it! And thanks for the improvement to the fixtures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foxy Fixtures for 1.2.x by John</title>
		<link>http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-18</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 08 Nov 2007 18:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-18</guid>
		<description>Assuming a category has_many :people, :through =&gt; :signups, I'd definitely have a signups.yml. I'd stick with HABTM until I was certain that I really needed a join model, though. :)</description>
		<content:encoded><![CDATA[<p>Assuming a category has_many :people, :through => :signups, I&#8217;d definitely have a signups.yml. I&#8217;d stick with HABTM until I was certain that I really needed a join model, though. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foxy Fixtures for 1.2.x by steve</title>
		<link>http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-17</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Thu, 08 Nov 2007 18:09:33 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-17</guid>
		<description>Here are the (abbreviated) class definitions. What I'm grappling with is whether I need to create a signups.yml. The semantics are that a person can signup for several categories and a category can have many people signed up. The two questions are: 1) Whether I need the signups.yml fixture; 2) How it is constructed. This is kind of a HABTM problem, but hm:t might work a bit better if I need to make notes about a particular signup.

Thanks,

Steve


class Category  :signups
end

class Signup &#60; ActiveRecord::Base
  belongs_to :person
  belongs_to :category
end

class Person  :signups
end

The fixtures might be:

# Categories.yml
pro_open:
  name: Pro Open
  price: 125
  description: $15000, Prize Purse
  more_info: This is the big event come and get it.
    You too can be a pro
  division: pro
  
amateur_open:
  name: Amateur Open
  price: 40
  description: No prize purse
  more_info: This is an amateur event, you bozo.
  division: amateur
  
amateur_teeny_wahinis:
  name: Teeny Wahinis
  price: 20
  description: 9 years old
  more_info: I can't believe they can even stand up!
  division: amateur
  
# people.yml
sue:
  first_name: sue
  last_name: surfer
  email: sue@gooddomain.com
  street_address: 123 main street
  city: encinitas
  state_or_province: ca
  zip_or_postal_code: 92000
  phone: 222-333-4444
  school: sdsu
  date_of_birth: 02/18/1988
  category: amateur_open
  
jill:
  first_name: jill
  last_name: shortboarder
  email: jill@gooddomain.com
  street_address: 123 first street
  city: la jolla
  state_or_province: ca
  zip_or_postal_code: 92029
  phone: 333-444-5555
  school: ucsd
  date_of_birth: 02/18/1990
  category: pro_open</description>
		<content:encoded><![CDATA[<p>Here are the (abbreviated) class definitions. What I&#8217;m grappling with is whether I need to create a signups.yml. The semantics are that a person can signup for several categories and a category can have many people signed up. The two questions are: 1) Whether I need the signups.yml fixture; 2) How it is constructed. This is kind of a HABTM problem, but hm:t might work a bit better if I need to make notes about a particular signup.</p>
<p>Thanks,</p>
<p>Steve</p>
<p>class Category  :signups<br />
end</p>
<p>class Signup &lt; ActiveRecord::Base<br />
  belongs_to :person<br />
  belongs_to :category<br />
end</p>
<p>class Person  :signups<br />
end</p>
<p>The fixtures might be:</p>
<p># Categories.yml<br />
pro_open:<br />
  name: Pro Open<br />
  price: 125<br />
  description: $15000, Prize Purse<br />
  more_info: This is the big event come and get it.<br />
    You too can be a pro<br />
  division: pro</p>
<p>amateur_open:<br />
  name: Amateur Open<br />
  price: 40<br />
  description: No prize purse<br />
  more_info: This is an amateur event, you bozo.<br />
  division: amateur</p>
<p>amateur_teeny_wahinis:<br />
  name: Teeny Wahinis<br />
  price: 20<br />
  description: 9 years old<br />
  more_info: I can&#8217;t believe they can even stand up!<br />
  division: amateur</p>
<p># people.yml<br />
sue:<br />
  first_name: sue<br />
  last_name: surfer<br />
  email: <a href="mailto:sue@gooddomain.com">sue@gooddomain.com</a><br />
  street_address: 123 main street<br />
  city: encinitas<br />
  state_or_province: ca<br />
  zip_or_postal_code: 92000<br />
  phone: 222-333-4444<br />
  school: sdsu<br />
  date_of_birth: 02/18/1988<br />
  category: amateur_open</p>
<p>jill:<br />
  first_name: jill<br />
  last_name: shortboarder<br />
  email: <a href="mailto:jill@gooddomain.com">jill@gooddomain.com</a><br />
  street_address: 123 first street<br />
  city: la jolla<br />
  state_or_province: ca<br />
  zip_or_postal_code: 92029<br />
  phone: 333-444-5555<br />
  school: ucsd<br />
  date_of_birth: 02/18/1990<br />
  category: pro_open</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foxy Fixtures for 1.2.x by John</title>
		<link>http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-16</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 08 Nov 2007 17:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-16</guid>
		<description>Steve, do you have an example you can link? I generally think of has_many :through declarations as just sugar, so I'd be working with the target association in the fixtures.</description>
		<content:encoded><![CDATA[<p>Steve, do you have an example you can link? I generally think of has_many :through declarations as just sugar, so I&#8217;d be working with the target association in the fixtures.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foxy Fixtures for 1.2.x by steve</title>
		<link>http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-15</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Thu, 08 Nov 2007 06:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://geeksomnia.com/2007/11/03/foxy-fixtures-for-12x/#comment-15</guid>
		<description>I love the rathole ... I mean Foxy Fixtures. But I'll be darned if I can figure out how to make them work with has_many :through associations.

Any tips?</description>
		<content:encoded><![CDATA[<p>I love the rathole &#8230; I mean Foxy Fixtures. But I&#8217;ll be darned if I can figure out how to make them work with has_many :through associations.</p>
<p>Any tips?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
