<?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/"
	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>Paolo&#039;s Ruby Discovery</title>
	<atom:link href="http://nu2ruby.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nu2ruby.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 15 Jul 2011 03:41:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nu2ruby.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Paolo&#039;s Ruby Discovery</title>
		<link>http://nu2ruby.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nu2ruby.wordpress.com/osd.xml" title="Paolo&#039;s Ruby Discovery" />
	<atom:link rel='hub' href='http://nu2ruby.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Shoulda testing for xml services??</title>
		<link>http://nu2ruby.wordpress.com/2010/05/13/shoulda-testing-for-xml-services/</link>
		<comments>http://nu2ruby.wordpress.com/2010/05/13/shoulda-testing-for-xml-services/#comments</comments>
		<pubDate>Thu, 13 May 2010 16:25:09 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nu2ruby.wordpress.com/?p=17</guid>
		<description><![CDATA[so you want to be all ruby, and build out a good suite of tests right? no problem for testing http calls&#8230;in fact there&#8217;s a lot of built in support for this. But what about xml web services calls? I struggled to find how to use the testing suite properly. First I was just making [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=17&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>so you want to be all ruby, and build out a good suite of tests right? no problem for testing http calls&#8230;in fact there&#8217;s a lot of built in support for this. But what about xml web services calls? I struggled to find how to use the testing suite properly.  First I was just making the calls explicitly&#8230;but this doesn&#8217;t scale well:<br />
<code><br />
setup do<br />
@uri = URI.parse("https://www.somesite.com/v1/authenticate.xml")<br />
@http = Net::HTTP.new(@uri.host, @uri.port)<br />
@http.use_ssl = true<br />
@http.verify_mode = OpenSSL::SSL::VERIFY_NONE&lt;<br />
@xmlbody=&quot;XML CODE HERE&quot;<br />
end</p>
<p>should &quot;have authentication error when using random auth_token&quot; do<br />
@uri.query = &quot;auth_token=#{rand.to_s}&quot;<br />
@request = Net::HTTP::Post.new(@uri.request_uri)<br />
response = @http.request(@request)<br />
parser = LibXML::XML::Parser.string(response.body)<br />
@root = parser.parse.root<br />
assert_not_nil(@root.find_first(&#039;//envelope/body/errors/error&#039;))<br />
end<br />
</code></p>
<p>That code works, but it causes a lot of headaches in that you can&#8217;t move from local server to remote server easily. Then I found this:</p>
<p><code><br />
@request.env['RAW_POST_DATA'] = "XML BODY GOES HERE"<br />
xml_http_request(:post, :action, :format='xml', ...)</p>
<p></code></p>
<p>In TestCases, this will set most of the necessary request env variables for you to ensure an xml call, but make sure you add the &#8220;:format&#8221; option to the call. This will ensure if you use a &#8220;responds_to&#8221; on the controller side, that the correct format route will be used. After calling xml_http_request (you can also use the alias &#8220;xhr&#8221;), you&#8217;ll have an @response variable that you can parse and manipulate like the original example.</p>
<p>Good luck!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=17&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/05/13/shoulda-testing-for-xml-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
		<item>
		<title>inject! &#8211; the beauty and craziness of ruby</title>
		<link>http://nu2ruby.wordpress.com/2010/05/04/inject-the-beauty-and-craziness-of-ruby/</link>
		<comments>http://nu2ruby.wordpress.com/2010/05/04/inject-the-beauty-and-craziness-of-ruby/#comments</comments>
		<pubDate>Tue, 04 May 2010 05:40:37 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nu2ruby.wordpress.com/?p=12</guid>
		<description><![CDATA[OK&#8230;so the ability to do stuff succinctly is pretty cool. But I&#8217;m still getting used to reading the stuff. Here&#8217;s a great example: [1, 2, 3, 4].inject(0) { &#124;result, element&#124; result + element } who would guess this results in: 10 So how does it work? Well, inject is a pretty cool method that allows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=12&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>OK&#8230;so the ability to do stuff succinctly is pretty cool. But I&#8217;m still getting used to reading the stuff. Here&#8217;s a great example:</p>
<p><code>[1, 2, 3, 4].inject(0) { |result, element| result + element }</code></p>
<p>who would guess this results in: 10</p>
<p>So how does it work? Well, inject is a pretty cool method that allows you to recursively work on an enumerable object. Although it&#8217;s pretty powerful, it&#8217;s taking this Java programmer some getting used to. Here&#8217;s a great article that goes into a bit of detail. Enjoy!</p>
<p><a href="http://blog.jayfields.com/2008/03/ruby-inject.html">Ruby: inject</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=12&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/05/04/inject-the-beauty-and-craziness-of-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
		<item>
		<title>New Macbook Pro = mysql gem problem!</title>
		<link>http://nu2ruby.wordpress.com/2010/04/23/new-macbook-pro-mysql-gem-problem/</link>
		<comments>http://nu2ruby.wordpress.com/2010/04/23/new-macbook-pro-mysql-gem-problem/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 00:14:30 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nu2ruby.wordpress.com/?p=10</guid>
		<description><![CDATA[I just got my brand new i7 mac book pro. It&#8217;s SWEEEET! That being said it totally screwed up my mysql gem installation. When I tried to do a &#8220;rake reload&#8221; I ended up with an error like: uninitialized constant MysqlCompat::MysqlRes another error may be something like: undefined method `real_connect&#8217; for Mysql:Class Turns out it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=10&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just got my brand new i7 mac book pro. It&#8217;s SWEEEET! That being said it totally screwed up my mysql gem installation. When I tried to do a &#8220;rake reload&#8221; I ended up with an error like:</p>
<blockquote><p>uninitialized constant MysqlCompat::MysqlRes</p></blockquote>
<p>another error may be something like:</p>
<blockquote><p>undefined method `real_connect&#8217; for Mysql:Class </p></blockquote>
<p>Turns out it has to do with how the gem was originally installed. now that I have a zooming fast 64-bit chip, I need to install the gem with some different flags. Here&#8217;s a good answer to the problem: <a href="http://stackoverflow.com/questions/1946182/problem-installing-mysql-gem-on-snow-leopard-uninitialized-constant-mysqlcompat">answer that worked for me</a></p>
<p>Enjoy!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=10&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/04/23/new-macbook-pro-mysql-gem-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
		<item>
		<title>Passenger + nginx + SSL</title>
		<link>http://nu2ruby.wordpress.com/2010/04/14/passenger-nginx-ssl/</link>
		<comments>http://nu2ruby.wordpress.com/2010/04/14/passenger-nginx-ssl/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 14:54:41 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nu2ruby.wordpress.com/2010/04/14/passenger-nginx-ssl/</guid>
		<description><![CDATA[I went to go to my newly created SSL site in nginx, and apparently I didn&#8217;t compile in the ssl module..go figure&#8230;.a little pain in the butt that you have to recompile each time! But oh well. Here&#8217;s a link to instructions on how to get it set up right the first time: Passenger+nginx+SSL<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=7&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I went to go to my newly created SSL site in nginx, and apparently I didn&#8217;t compile in the ssl module..go figure&#8230;.a little pain in the butt that you have to recompile each time! But oh well. Here&#8217;s a link to instructions on how to get it set up right the first time:</p>
<p><a href="http://erbmicha.com/2009/04/21/phusion-passenger-nginx-ssl/">Passenger+nginx+SSL</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=7&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/04/14/passenger-nginx-ssl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
		<item>
		<title>nginx &#8211; getgrnam (&#8220;presmini&#8221;) failed</title>
		<link>http://nu2ruby.wordpress.com/2010/04/13/nginx-getgrnam-presmini-failed/</link>
		<comments>http://nu2ruby.wordpress.com/2010/04/13/nginx-getgrnam-presmini-failed/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 17:52:17 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://nu2ruby.wordpress.com/?p=4</guid>
		<description><![CDATA[I got this error after installing nginx and trying to run passenger for my ruby apps. I understood that I needed to run nginx as the same user I was using to run my ruby apps. To do this, I had to use the &#8220;user&#8221; directive in the nginx.conf file to define the startup user [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=4&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got this error after installing nginx and trying to run passenger for my ruby apps. I understood that I needed to run nginx as the same user I was using to run my ruby apps. To do this, I had to use the &#8220;user&#8221; directive in the nginx.conf file to define the startup user to be &#8220;presmini&#8221; (the same user running my ruby apps). What I screwed up was that the failure</p>
<blockquote><p>[emerg]: getgrnam(&#8220;presmini&#8221;) failed in /opt/nginx/conf/nginx.conf:1</p></blockquote>
<p>is that I wasn&#8217;t explicity defining a group in the nginx.conf file, and so it was defaulting to something that does exist. Since I&#8217;m on a mac, I just changed the &#8220;user&#8221; directive in the nginx.conf file to:</p>
<blockquote><p>user presmini staff</p></blockquote>
<p>wala! Works great!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=4&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/04/13/nginx-getgrnam-presmini-failed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello Ruby World!</title>
		<link>http://nu2ruby.wordpress.com/2010/04/13/hello-world/</link>
		<comments>http://nu2ruby.wordpress.com/2010/04/13/hello-world/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 17:45:45 +0000</pubDate>
		<dc:creator>presmini</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello to all. This is going to be a blog about my discoveries of Ruby. Mainly going to be a place where I keep notes about what went wrong, common newbie errors, etc. (Basically, if I smashed my head against my desk for hours&#8230;I&#8217;m hoping to help someone else learn from my mistake). Enjoy if [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=1&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello to all. This is going to be a blog about my discoveries of Ruby. Mainly going to be a place where I keep notes about what went wrong, common newbie errors, etc. (Basically, if I smashed my head against my desk for hours&#8230;I&#8217;m hoping to help someone else learn from my mistake).</p>
<p>Enjoy if you&#8217;d like.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nu2ruby.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nu2ruby.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nu2ruby.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nu2ruby.wordpress.com&amp;blog=13118675&amp;post=1&amp;subd=nu2ruby&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nu2ruby.wordpress.com/2010/04/13/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/261b020c7efd9c46ccd1731f2400affb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">presmini</media:title>
		</media:content>
	</item>
	</channel>
</rss>
