<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>it's a ruby thing - Microblog</title>
  <id>tag:its.arubything.com,2008:mephisto/microblog</id>
  <generator version="0.7.3" uri="http://mephistoblog.com">Mephisto Noh-Varr</generator>
  <link href="http://its.arubything.com/feed/microblog/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://its.arubything.com/microblog" rel="alternate" type="text/html"/>
  <updated>2008-06-18T17:54:26Z</updated>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2008-06-18:175</id>
    <published>2008-06-18T15:53:00Z</published>
    <updated>2008-06-18T17:54:26Z</updated>
    <category term="Microblog"/>
    <category term="Tips"/>
    <category term="macports"/>
    <category term="rubymate"/>
    <category term="textmate"/>
    <category term="tip"/>
    <link href="http://its.arubything.com/2008/6/18/make-rubymate-work-with-macports-ruby" rel="alternate" type="text/html"/>
    <title>Make RubyMate work with MacPorts Ruby</title>
<content type="html">
            &lt;p&gt;To make TextMate&#8217;s RubyMate work with MacPorts (or any other non-default ruby install) just set TM_RUBY environment variable to be the path to your custom ruby interpreter in TextMate&#8217;s preferences.  Custom environmental variable settings are located under &#8216;Advanced&#8217;-&gt;&#8217;Shell Variables&#8217; in TM&#8217;s prefs.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2008-02-10:171</id>
    <published>2008-02-10T16:58:00Z</published>
    <updated>2008-02-10T17:07:35Z</updated>
    <category term="Microblog"/>
    <category term="bug"/>
    <category term="empty"/>
    <category term="parsetree"/>
    <category term="sake"/>
    <category term="task"/>
    <link href="http://its.arubything.com/2008/2/10/fix-empty-sake-tasks" rel="alternate" type="text/html"/>
    <title>Fix empty sake tasks</title>
<content type="html">
            &lt;p&gt;I&#8217;ve had a problem with my &lt;a href=&quot;http://errtheblog.com/posts/60-sake-bomb&quot;&gt;sake&lt;/a&gt; tasks being blank for the past couple days.  Since there were a couple comments on err about similar things, I&#8217;ll share my fix: &lt;code&gt;gem install -v 2.0.1 ParseTree&lt;/code&gt;.  That&#8217;s it.  Turns out my ParseTree install was messed up and to_ruby was not working on the task blocks.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-12-07:169</id>
    <published>2007-12-07T19:32:00Z</published>
    <updated>2007-12-07T19:33:23Z</updated>
    <category term="Microblog"/>
    <category term="2.0"/>
    <category term="rails"/>
    <category term="release"/>
    <link href="http://its.arubything.com/2007/12/7/rails-2-0-is-out" rel="alternate" type="text/html"/>
    <title>Rails 2.0 is out</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://weblog.rubyonrails.org/2007/12/7/rails-2-0-it-s-done&quot;&gt;Rails 2.0&lt;/a&gt; has been released. Check it.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-12-03:168</id>
    <published>2007-12-03T16:57:00Z</published>
    <updated>2007-12-03T17:01:31Z</updated>
    <category term="Microblog"/>
    <category term="engine"/>
    <category term="migration"/>
    <category term="mysql"/>
    <link href="http://its.arubything.com/2007/12/3/using-other-mysql-storage-engines" rel="alternate" type="text/html"/>
    <title>Using other MySQL Storage Engines</title>
<content type="html">
            &lt;p&gt;Try &lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;create_table(&lt;span class=&quot;sy&quot;&gt;:suppliers&lt;/span&gt;, &lt;span class=&quot;sy&quot;&gt;:options&lt;/span&gt; =&amp;gt; &lt;span class=&quot;s&quot;&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;ENGINE=InnoDB DEFAULT CHARSET=utf8&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;/span&gt;)&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;
 if you need to make a table with a different storage engine than default on MySQL.  Note that this will bind your migration to MySQL, as it simply appends whatever is in the &lt;code&gt;:options&lt;/code&gt; string to the end of the &lt;code&gt;CREATE_TABLE&lt;/code&gt; generated by the migration.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-11-27:166</id>
    <published>2007-11-27T22:49:00Z</published>
    <updated>2007-11-27T22:54:32Z</updated>
    <category term="Microblog"/>
    <category term="cocoa"/>
    <category term="inject"/>
    <category term="ruby"/>
    <category term="rubycocoa"/>
    <link href="http://its.arubything.com/2007/11/27/rubyinject" rel="alternate" type="text/html"/>
    <title>RubyInject</title>
<content type="html">
            &lt;p&gt;&lt;a href=&quot;http://rubycocoa.sourceforge.net/RubyInject&quot;&gt;RubyInject&lt;/a&gt; is a small library from the folks who brought you RubyCocoa.  It allows you to inject a ruby interpreter into a Cocoa app and tinker with all its&#8217; internals.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-09-29:10</id>
    <published>2007-09-29T14:49:00Z</published>
    <updated>2007-09-29T14:51:26Z</updated>
    <category term="Microblog"/>
    <category term="bdd"/>
    <category term="micro"/>
    <category term="shoulda"/>
    <category term="test"/>
    <link href="http://its.arubything.com/2007/9/29/shoulda" rel="alternate" type="text/html"/>
    <title>shoulda</title>
<content type="html">
            &lt;p&gt;I&#8217;m trying out &lt;a href=&quot;http://thoughtbot.com/projects/shoulda&quot;&gt;shoulda&lt;/a&gt;, a testing framework written by the guys over at Thoughtbot.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-09-18:7</id>
    <published>2007-09-18T15:00:00Z</published>
    <updated>2007-09-18T15:03:17Z</updated>
    <category term="Microblog"/>
    <category term="bug"/>
    <category term="has_many_polymorphs"/>
    <category term="micro"/>
    <category term="plugin"/>
    <category term="rails"/>
    <link href="http://its.arubything.com/2007/9/18/i-can-has-patch" rel="alternate" type="text/html"/>
    <title>I can has patch?</title>
<content type="html">
            &lt;p&gt;I was poking through svn for &lt;a href=&quot;http://blog.evanweaver.com/files/doc/fauna/has_many_polymorphs/files/README.html&quot;&gt;has_many_polymorphs&lt;/a&gt; to see if a bug that I found had been fixed.  Lo and behold, it was:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;r688 | evanweaver | 2007-08-29 03:49:55 -0400 (Wed, 29 Aug 2007) | 2 lines&lt;/p&gt;
    
    &lt;p&gt;fix singularize bug in autoloader (Brandon Dimcheff)&lt;/p&gt;
&lt;/blockquote&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-09-10:6</id>
    <published>2007-09-10T22:06:00Z</published>
    <updated>2007-09-10T22:09:10Z</updated>
    <category term="Microblog"/>
    <category term="caboose"/>
    <category term="code"/>
    <category term="example"/>
    <category term="micro"/>
    <category term="rails"/>
    <category term="sample"/>
    <link href="http://its.arubything.com/2007/9/10/caboose-sample-app" rel="alternate" type="text/html"/>
    <title>Caboose Sample App</title>
<content type="html">
            &lt;p&gt;The &lt;a href=&quot;http://sample.caboo.se/&quot;&gt;Caboose sample app&lt;/a&gt; comes with user authentication and many other useful features baked in.  It&#8217;s a great starting place for your new Rails app!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-09-07:5</id>
    <published>2007-09-07T19:53:00Z</published>
    <updated>2007-09-21T03:44:36Z</updated>
    <category term="Microblog"/>
    <category term="micro"/>
    <category term="peepcode"/>
    <category term="rails"/>
    <category term="tip"/>
    <link href="http://its.arubything.com/2007/9/7/massive-list-of-rails-development-tips-from-peepcode" rel="alternate" type="text/html"/>
    <title>Massive list of Rails development tips from Peepcode</title>
<content type="html">
            &lt;p&gt;The &lt;a href=&quot;http://peepcode&quot;&gt;Peepcode&lt;/a&gt; people have published a long list of Rails development tips: &lt;a href=&quot;http://nubyonrails.com/articles/massive-list-of-rails-development-tips&quot;&gt;Tips!&lt;/a&gt;&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://its.arubything.com">
    <author>
      <name>brandon.dimcheff</name>
    </author>
    <id>tag:its.arubything.com,2007-09-07:4</id>
    <published>2007-09-07T16:27:00Z</published>
    <updated>2007-09-07T19:55:38Z</updated>
    <category term="Microblog"/>
    <category term="micro"/>
    <category term="plugin"/>
    <category term="rails"/>
    <link href="http://its.arubything.com/2007/9/7/railsify" rel="alternate" type="text/html"/>
    <title>Railsify</title>
<content type="html">
            &lt;p&gt;A new Rails plugin repository has been launched: &lt;a href=&quot;http://railsify.com/&quot;&gt;Railsify&lt;/a&gt;.  Check it out.&lt;/p&gt;
          </content>  </entry>
</feed>
