<?xml version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <title>rornoob.com</title>
  <link>http://www.rornoob.com/</link>
  <language>en</language>
  <atom:link href="http://www.rornoob.com/rss/" rel="self" type="application/rss+xml" />
  <item>
   <title>Getting memcached working with rails3 on Mac OS</title>
   <link>http://www.rornoob.com/a/fixing-memcached-problems-with-rails-3/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/fixing-memcached-problems-with-rails-3/</guid>
   <description>It should be straight forward and usually is, but can you do if your rails application fails to get a memcached connection?</description>
   <pubDate>Fri, 18 Mar 2011 10:14:00 GMT</pubDate>
  </item>
  <item>
   <title>** in .gitignore</title>
   <link>http://www.rornoob.com/a/excluding-temp-files-with-gitignore/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/excluding-temp-files-with-gitignore/</guid>
   <description>How to exclude temp files in .gitignore - why wont the double star symbol work?  Here's why.</description>
   <pubDate>Wed, 03 Nov 2010 16:47:00 GMT</pubDate>
  </item>
  <item>
   <title>Sort it out - quick guide to ruby sort</title>
   <link>http://www.rornoob.com/a/sort-it-out/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/sort-it-out/</guid>
   <description>Look how easy ruby makes it to sort arrays of objects;  simple sort, reverse sort, sort by multiple attributes</description>
   <pubDate>Fri, 11 Dec 2009 16:17:00 GMT</pubDate>
  </item>
  <item>
   <title>Disappearing attributes... was I duped?</title>
   <link>http://www.rornoob.com/a/copying-an-array/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/copying-an-array/</guid>
   <description>Showing a list of attributes that appear on either object A or it's parent should be really easy right? So why do some attributes "magically disappear"? It seems my array copy is to blame...</description>
   <pubDate>Fri, 13 Nov 2009 16:51:00 GMT</pubDate>
  </item>
  <item>
   <title>Beware of comments in ruby 1.8.7</title>
   <link>http://www.rornoob.com/a/beware-of-comments-in-ruby-1.8.7/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/beware-of-comments-in-ruby-1.8.7/</guid>
   <description>I can across a strange bug when upgrading to ruby enterprise 1.8.7 - one of my views displayed incorrectly after the upgrade but it was fine beforehand. At least the workaround is easy!</description>
   <pubDate>Mon, 09 Nov 2009 14:40:00 GMT</pubDate>
  </item>
  <item>
   <title>Rails flash[] messages not clearing</title>
   <link>http://www.rornoob.com/a/rails-flash-not-clearing/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/rails-flash-not-clearing/</guid>
   <description>Sometimes rails flash[:notice] messages seem to "stick around" for a while - sound familiar? I was initially stumped, but the solution is an easy one...</description>
   <pubDate>Fri, 16 Oct 2009 16:53:00 GMT</pubDate>
  </item>
  <item>
   <title>Creating nested objects with validation of parent id</title>
   <link>http://www.rornoob.com/a/nested-objects-and-validates_presence_of/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/nested-objects-and-validates_presence_of/</guid>
   <description>Nested attributes in rails 2.3.3 can really simplify the updating of nested models, but creating nested models throws up an interesting problem when your model uses validates_presence_of</description>
   <pubDate>Mon, 12 Oct 2009 17:07:00 GMT</pubDate>
  </item>
  <item>
   <title>rspec route_for tests failing</title>
   <link>http://www.rornoob.com/a/rspec-route_for-failures/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/rspec-route_for-failures/</guid>
   <description>Don't you hate it when your tests work on one server but not on another? That happened to me today and I've traced the problem down to a different version of rspec which requires a different syntax.</description>
   <pubDate>Tue, 11 Aug 2009 14:37:00 GMT</pubDate>
  </item>
  <item>
   <title>Problem using ActiveResource "find" with conditions</title>
   <link>http://www.rornoob.com/a/active-resource-find-with-conditions-problem/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/active-resource-find-with-conditions-problem/</guid>
   <description>I can't get the ActiveResource find method to return the correct results when passing through conditions - it's like my :params parameter is being ignored.</description>
   <pubDate>Wed, 29 Jul 2009 16:52:00 GMT</pubDate>
  </item>
  <item>
   <title>Passing error messages to ActiveResource get</title>
   <link>http://www.rornoob.com/a/pass-error-message-to-activeresource-get/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/pass-error-message-to-activeresource-get/</guid>
   <description>How can I return an error message to an ActiveResource get request?  The ActiveResource model doesn't seem to receive anything other than the http error code.</description>
   <pubDate>Fri, 24 Jul 2009 11:38:00 GMT</pubDate>
  </item>
  <item>
   <title>Where is :unprocessable_entity ?</title>
   <link>http://www.rornoob.com/a/where-is-unprocessable-entity/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/where-is-unprocessable-entity/</guid>
   <description>I've been working on some existing code that handles restful authentication. I noticed that the code returns :status =&#62; :unprocessable_entity if the login fails.  That sounds reasonable, but what actually is that status code, and what other status codes are available should I wish to return different results depending on whether say, the user_name is invalid, or the database is unavailable?</description>
   <pubDate>Thu, 23 Jul 2009 12:18:00 GMT</pubDate>
  </item>
  <item>
   <title>The manager-worker problem</title>
   <link>http://www.rornoob.com/a/the-manager-worker-problem/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/the-manager-worker-problem/</guid>
   <description>Lets jump right in with a technical question here... In part of our legacy system there's a manager-workers relationship. How can I best manage this in ruby on rails given the constraints of the legacy DB structure?</description>
   <pubDate>Fri, 17 Jul 2009 00:01:00 GMT</pubDate>
  </item>
  <item>
   <title>A ruby on rails adventure begins...</title>
   <link>http://www.rornoob.com/a/ruby-on-rails-adventure-begins/</link>
   <guid isPermaLink="true">http://www.rornoob.com/a/ruby-on-rails-adventure-begins/</guid>
   <description>Ruby is different, and rails is kind of magic at times. Surely if I'm learning ruby on rails I can help others learn too. So come onboard, join the conversation - no question's a dumb question here at RoRnoob.com</description>
   <pubDate>Thu, 16 Jul 2009 23:08:00 GMT</pubDate>
  </item>
 </channel>
</rss>

