<?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: Testing private class methods in Ruby</title>
	<atom:link href="http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/</link>
	<description>The Lightweight Ramblings of Jamie Hill</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:06:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jamie</title>
		<link>http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/comment-page-1/#comment-2374</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Tue, 02 Dec 2008 13:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://thelucid.com/?p=493#comment-2374</guid>
		<description>Aha, I see what you mean. Unfortunate method clash there :). Yes you could do that also.</description>
		<content:encoded><![CDATA[<p>Aha, I see what you mean. Unfortunate method clash there <img src='http://thelucid.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Yes you could do that also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amos King</title>
		<link>http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/comment-page-1/#comment-2371</link>
		<dc:creator>Amos King</dc:creator>
		<pubDate>Tue, 02 Dec 2008 12:42:39 +0000</pubDate>
		<guid isPermaLink="false">http://thelucid.com/?p=493#comment-2371</guid>
		<description>I didn&#039;t mean private_class_method like the ruby method.  Sorry.  I meant a private class method.  Maybe I should have put private_class_method_foo.  Sorry for the confusion.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t mean private_class_method like the ruby method.  Sorry.  I meant a private class method.  Maybe I should have put private_class_method_foo.  Sorry for the confusion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/comment-page-1/#comment-2369</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Tue, 02 Dec 2008 08:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://thelucid.com/?p=493#comment-2369</guid>
		<description>Amos,

That doesn&#039;t work as private_class_method is used to make a method private, not call it. I wish it was that easy (maybe I&#039;m missing something?).

In any case I would rather wrap the functionality up in a single method of Class for cleanliness.

Jamie</description>
		<content:encoded><![CDATA[<p>Amos,</p>
<p>That doesn&#8217;t work as private_class_method is used to make a method private, not call it. I wish it was that easy (maybe I&#8217;m missing something?).</p>
<p>In any case I would rather wrap the functionality up in a single method of Class for cleanliness.</p>
<p>Jamie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amos King</title>
		<link>http://thelucid.com/2008/12/01/testing-private-class-methods-in-ruby/comment-page-1/#comment-2364</link>
		<dc:creator>Amos King</dc:creator>
		<pubDate>Tue, 02 Dec 2008 02:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://thelucid.com/?p=493#comment-2364</guid>
		<description>Why not just use class_eval to call the private methods?

   MyClass.class_eval { private_class_method }

That will return whatever the method returns.</description>
		<content:encoded><![CDATA[<p>Why not just use class_eval to call the private methods?</p>
<p>   MyClass.class_eval { private_class_method }</p>
<p>That will return whatever the method returns.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

