<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>crunchlife: Tag Rails</title>
    <link>http://crunchlife.com/articles/tag/rails</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Ruby on Rails with Hardy Heron</title>
      <description>&lt;p&gt;&lt;img src="/files/ruby.png" class="right"&gt;This Thursday, Canonical released &lt;a href="http://www.ubuntu.com/" target="_blank"&gt;Ubuntu&lt;/a&gt;, Hardy Heron, into the wild. Like many others, I immediately fired up a torrent and began downloading. From what I read of the aftermath, many launch day downloaders were not as lucky. Most Torrent servers became immediately inaccessible due to Hardy Heron&amp;#8217;s popular demand. It has been three days and the US update servers are still saturated. This happens every release and can only mean that Ubuntu&amp;#8217;s userbase is steadily growing.&lt;/p&gt;

&lt;p&gt;My installation went well, but with any new OS release comes problems and Hardy Heron was not an exception. I couldn&amp;#8217;t connect to &lt;a href="http://crunchlife.com/articles/2007/08/03/review-linksys-nas200" target="_blank"&gt;my NAS&lt;/a&gt; through Nautilus. None of my browser extensions worked and &lt;a href="http://www.rubyonrails.org/" target="_blank"&gt;Ruby on Rails&lt;/a&gt; was MIA. I decided to fix Rails first. Here are the steps I took to install Ruby on Rails on Ubuntu, Hardy Heron.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;sudo apt-get install ruby&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;At this point I could not install Ruby on Rails with &lt;a href="http://rubygems.org/" target="_blank"&gt;RubyGems&lt;/a&gt; because of the following exception:&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;/usr/bin/gem:23: uninitialized constant Gem::GemRunner(NameError)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;I opened up the source file and edited the offending line.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;sudo gedit /usr/bin/gem&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Adding &lt;strong&gt;require &amp;#8216;rubygems/gem_runner&amp;#8217;&lt;/strong&gt; to the source file,&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;require 'rubygems'
require 'rubygems/gem_runner'&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;I was then able to update RubyGems&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;sudo gem install rubygems-update&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;and install Ruby on Rails and the Mongrel web server.&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;sudo gem install rails mongrel&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;At this point I had a working version of Rails on my installation of Ubuntu, Hardy Heron. To get back to work the only thing missing was the NetBeans Ruby IDE. If you haven&amp;#8217;t tried NetBeans for your Ruby on Rails projects, &lt;a href="http://crunchlife.com/articles/2007/10/25/the-netbeans-ruby-ide" target="_blank"&gt;I highly recommend it&lt;/a&gt;. It&amp;#8217;s located in the repos and only takes a few plugins to have Rails support out of the box.&lt;/p&gt;</description>
      <pubDate>Sat, 26 Apr 2008 14:20:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:c4860403-cbd3-439c-9e29-9681d677b943</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2008/04/26/ruby-on-rails-with-hardy-heron</link>
      <category>Ubuntu</category>
      <category>Rails</category>
      <trackback:ping>http://crunchlife.com/articles/trackback/56</trackback:ping>
    </item>
    <item>
      <title>The NetBeans Ruby IDE</title>
      <description>&lt;p&gt;&lt;img src="/files/ruby.png" class="right"&gt;Some time ago I wrote about &lt;a href="http://crunchlife.com/articles/2007/08/09/i-want-my-ide" target="_blank"&gt;my search&lt;/a&gt; for the perfect Ruby IDE.  I understand that the criteria for perfect is different for everyone, but in my &lt;a href="http://crunchlife.com/articles/2007/08/09/i-want-my-ide" target="_blank"&gt;previous article&lt;/a&gt; I outlined the eleven features that best describe &lt;strong&gt;my&lt;/strong&gt; perfect Ruby IDE. I will admit that I haven&amp;#8217;t kept up with my analysis.  Like everyone else, I have a lot of other things to do and evaluating a dozen IDEs takes a lot of time.  Apologies aside &amp;#8211; I have found an IDE that fits all of my expectations. My search might be over.&lt;/p&gt;

&lt;p&gt;Roman Strobl&amp;#8217;s recently published article, &lt;a href="http://www.infoq.com/articles/netbeans-rubyide1" target="_blank"&gt;NetBeans: Ruby Developer&amp;#8217;s New Best Friend&lt;/a&gt;, highlights the features and improvements of NetBeans&amp;#8217; efforts in the Ruby IDE arena.  I&amp;#8217;m consistently amazed by the quality of writing published by &lt;a href="http://www.infoq.com/" target="_blank"&gt;InfoQ&lt;/a&gt; and Strobl&amp;#8217;s work is a fine example.  I recommend reading his article and then &lt;a href="http://deadlock.netbeans.org/hudson/job/ruby/" target="_blank"&gt;downloading the NetBeans Ruby IDE&lt;/a&gt; to test drive it yourself.&lt;/p&gt;

&lt;p&gt;NetBean&amp;#8217;s Ruby IDE has the best code completion I&amp;#8217;ve found in a Ruby IDE.  It rivals Visual Studio on the .NET platform.  The IDE is lightweight.  At no point during my testing did it ever slow down.  Its source control integration works well.  The default font is easy on the eyes and compliments the Ruby syntax highlighting scheme.  My favorite feature is the garbage collection button located in the upper right-hand corner of the application.  Some developers might think the application poorly designed for needing this feature, but coming from Visual Studio, I applaud it.&lt;/p&gt;

&lt;p&gt;The NetBean&amp;#8217;s Ruby IDE is still in development, but the testing I&amp;#8217;ve done hasn&amp;#8217;t uncovered any issues worth mentioning.  While working on one of my side projects I haven&amp;#8217;t noticed any appreciable difference between the Windows and Linux versions.  Have I mentioned yet that the NetBean&amp;#8217;s Ruby IDE is free?  I&amp;#8217;ve found my new daily driver.  Kudos NetBeans!&lt;/p&gt;

&lt;p&gt;Download it &lt;a href="http://deadlock.netbeans.org/hudson/job/ruby/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 25 Oct 2007 07:26:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:dca7aa17-1b20-4747-a50f-01172bc97da6</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2007/10/25/the-netbeans-ruby-ide</link>
      <category>Reviews</category>
      <category>Rails</category>
      <category>Ruby</category>
      <category>IDE</category>
    </item>
    <item>
      <title>Free Ruby on Rails Book</title>
      <description>&lt;p&gt;&lt;img src="/files/ruby.png" class="right"&gt;Free?  Yes, that&amp;#8217;s right!  &lt;a href="http://www.sitepoint.com/books/rails1/freebook.php" target="_blank"&gt;A totally free Ruby on Rails book&lt;/a&gt;.  Those fine fellows at &lt;a href="http://www.railsenvy.com/" target="_blank"&gt;Rails Envy&lt;/a&gt; mentioned it in episode #2 of the &lt;a href="http://www.railsenvy.com/podcast" target="_blank"&gt;Rails Envy Podcast&lt;/a&gt;.  What&amp;#8217;s the catch?  You only have 37 days from today to download this book.  Do it now!  Thanks to Patrick Lenz for writing the book and thanks to the guys at Rails Envy for making it known.&lt;/p&gt;</description>
      <pubDate>Thu, 25 Oct 2007 06:51:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ceaaae05-9442-4745-8287-9ec3cfd6e381</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2007/10/25/free-ruby-on-rails-book</link>
      <category>Rails</category>
      <enclosure type="image/png" url="http://crunchlife.com/files/ruby.png" length="10805"/>
    </item>
    <item>
      <title>rake aborted! No such file or directory - /tmp/mysql.sock</title>
      <description>&lt;p&gt;If you&amp;#8217;re running into the above error message when trying to perform a Rails migration on Debian or Ubuntu then you might try adding the following line to your database.yml file:&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;socket: /var/run/mysqld/mysqld.sock&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;My database.yml file looks sorta like this:&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_default "&gt;development:
  database: crunchlife_development
  adapter: mysql
  host: localhost
  username: mysql_user
  password: @!#?@!
  socket: /var/run/mysqld/mysqld.sock 

test:
  database: crunchlife_test
  adapter: mysql
  host: mysql.ryanbaxter.net
  username: mysql_user
  password: @!#?@!
  socket: /var/run/mysqld/mysqld.sock

production:
  database: crunchlife_production
  adapter: mysql
  host: mysql.ryanbaxter.net
  username: mysql_user
  password: @!#?@!&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;Good luck and happy migrations!&lt;/p&gt;</description>
      <pubDate>Sat, 06 Oct 2007 13:40:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:5b1b3a3a-cab6-4bf2-9964-5559ce870a82</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2007/10/06/rake-aborted-no-such-file-or-directory-tmp-mysql-sock</link>
      <category>Ubuntu</category>
      <category>Rails</category>
    </item>
    <item>
      <title>I Want My IDE Update</title>
      <description>&lt;p&gt;I started writing some Ruby code this past weekend for a new project that I&amp;#8217;m involved in.  Rather than download an IDE mentioned in my previous article, &lt;a href="http://crunchlife.com/articles/2007/08/09/i-want-my-ide" target="_blank"&gt;I Want My IDE&lt;/a&gt;, I decided to use the &lt;a href="http://www.gnome.org/projects/gedit/" target="_blank"&gt;gedit&lt;/a&gt; text editor that comes bundled with Ubuntu Linux.&lt;/p&gt;

&lt;p&gt;Attempting to capture the experience Mac users get from using &lt;a href="http://macromates.com/" target="_blank"&gt;TextMate&lt;/a&gt;, I installed the Class Browser, File Browser Pane, Project Manager, Snap open, and Snippets plugins from &lt;a href="http://live.gnome.org/Gedit/Plugins" target="_blank"&gt;live.gnome.org&lt;/a&gt;.  I also enabled line numbers, current line highlighting, and bracket matching.  It&amp;#8217;s not quite TextMate, but it&amp;#8217;s not a bad choice either.&lt;/p&gt;

&lt;p&gt;I had initially stated that my top two needs of an IDE were Subversion (SVN) integration and code completion.  I didn&amp;#8217;t have either of these with gedit, but I didn&amp;#8217;t find myself missing them either.  I&amp;#8217;ve grown accustomed to using SVN from the command-line and &lt;a href="http://www.ruby-doc.org/" target="_blank"&gt;ruby-doc.org&lt;/a&gt; didn&amp;#8217;t slow me down too much while looking up class definitions.&lt;/p&gt;

&lt;p&gt;Overall I&amp;#8217;m quite pleased, but I have to admit that installing gedit plugins was a bit tricky and I never did get my fonts to look like those found in the &lt;a href="http://grigio.org/textmate_gedit_few_steps" target="_blank"&gt;TextMate-like Gedit&lt;/a&gt; tutorial.&lt;/p&gt;</description>
      <pubDate>Mon, 20 Aug 2007 21:14:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:48347c3e-cc06-447c-91bf-11c56ec35968</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2007/08/20/i-want-my-ide-update</link>
      <category>IDE</category>
      <category>Rails</category>
      <category>Ruby</category>
    </item>
    <item>
      <title>I Want My IDE</title>
      <description>&lt;p&gt;&lt;img src="/files/i_want_my_mtv.jpg" class="photo right"&gt;The majority of my academic and professional programming career has been spent writing code using an &lt;a href="http://en.wikipedia.org/wiki/Integrated_development_environment" target="_blank"&gt;integrated development environment&lt;/a&gt; (IDE).  I&#8217;ve dabbled with Eclipse, Microsoft Visual Studio, Macrodobe Dreamweaver, and various Borland products.  Rather than juggle multiple text editors and source control consoles, I find it easier to stay organized using an IDE on large projects.  When editing config files or writing scripts I prefer a lightweight text editor.  In Linux, &lt;a href="http://en.wikipedia.org/wiki/Vi" target="_blank"&gt;vi&lt;/a&gt; or gedit is my choice.  &lt;a href="http://www.flos-freeware.ch/notepad2.html" target="_blank"&gt;Notepad2&lt;/a&gt; is at the top of my Windows list.&lt;/p&gt;

&lt;p&gt;A few months ago I decided to learn &lt;a href="http://www.ruby-lang.org/en/" target="_blank"&gt;Ruby&lt;/a&gt; and the &lt;a href="http://www.rubyonrails.org/" target="_blank"&gt;Ruby on Rails&lt;/a&gt; framework.  I began with the obligatory &lt;a href="http://en.wikipedia.org/wiki/Hello_World" target="_blank"&gt;Hello World program&lt;/a&gt; and quickly progressed through a series of tutorials using vi and gedit to get the job done.  Since then, I&#8217;ve begun some larger projects and am quickly finding myself losing focus and missing the benefits of an IDE.  Consulting Google, I compiled a list of prospective IDEs to begin my evaluation.  I&#8217;m willing to give each of them a fair chance at becoming my Rails development environment, but have a few questions before I begin.  What, if any, IDEs have I missed?  How long should I try each one?&lt;/p&gt;

&lt;p&gt;Needs (in order of importance):&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Linux compatible&lt;/li&gt;
  &lt;li&gt;Project Browsing&lt;/li&gt;
  &lt;li&gt;SVN integration&lt;/li&gt;
  &lt;li&gt;Syntax Highlighting&lt;/li&gt;
  &lt;li&gt;Code Completion&lt;/li&gt;
  &lt;li&gt;Active Community&lt;/li&gt;
  &lt;li&gt;Unit Testing&lt;/li&gt;
  &lt;li&gt;Debugging&lt;/li&gt;
  &lt;li&gt;Auto-indent&lt;/li&gt;
  &lt;li&gt;Plugin support&lt;/li&gt;
  &lt;li&gt;Less than $100&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The list:&lt;br /&gt;
*Each IDE/editor was capable of Project Browsing, Syntax Highlighting, and compatible with Linux.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;&lt;a href="http://www.aptana.com/" target="_blank"&gt;Aptana RadRails&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;Good SVN integration.&lt;/li&gt;
      &lt;li&gt;The latest Beta has working Code Completion.&lt;/li&gt;
      &lt;li&gt;Built on Eclipse.&lt;/li&gt;
      &lt;li&gt;More Rails features than Eclipse + DLTK.&lt;/li&gt;
      &lt;li&gt;Many plugins inherited from Eclipse&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;Code Completion is broken in the current stable release.&lt;/li&gt;
      &lt;li&gt;Built on Eclipse.&lt;/li&gt;      
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.eclipse.org/" target="_blank"&gt;Eclipse&lt;/a&gt; + &lt;a href="http://www.eclipse.org/dltk/" target="_blank"&gt;DLTK&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;SVN integration.&lt;/li&gt;
      &lt;li&gt;DLTK has Code Completion.&lt;/li&gt;
      &lt;li&gt;Tried and true.&lt;/li&gt;
      &lt;li&gt;Vast library of plugins.&lt;/li&gt;
      &lt;li&gt;Active community.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;Eclipse is slow and consumes a lot of memory.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://freeride.rubyforge.org/wiki/wiki.pl" target="_blank"&gt;FreeRIDE&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;Auto-indenting.&lt;/li&gt;
      &lt;li&gt;Debugging.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;No SVN integration.&lt;/li&gt;
      &lt;li&gt;No Code Completion.&lt;/li&gt;
      &lt;li&gt;Performance could be an issue b/c it&amp;#8217;s a native Ruby application.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.gnome.org/projects/gedit/" target="_blank"&gt;gedit&lt;/a&gt; + &lt;a href="http://live.gnome.org/Gedit/Plugins" target="_blank"&gt;plugins&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;Lightweight.&lt;/li&gt;
      &lt;li&gt;Plugins.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;No SVN integration.&lt;/li&gt;
      &lt;li&gt;No Code Completion.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.jedit.org/" target="_blank"&gt;jEdit&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;SVN integration.&lt;/li&gt;
      &lt;li&gt;Code Completion.&lt;/li&gt;
      &lt;li&gt;Plugins.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;Not user friendly.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.jetbrains.com/idea/index.html" target="_blank"&gt;IntelliJ IDEA 6.0&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;SVN integration.&lt;/li&gt;
      &lt;li&gt;Code Completion.&lt;/li&gt;
      &lt;li&gt;Debugging.&lt;/li&gt;
      &lt;li&gt;Unit Testing.&lt;/li&gt;
      &lt;li&gt;Plugins.&lt;/li&gt;
      &lt;li&gt;Much more&amp;#8230;&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;$249.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.activestate.com/Products/komodo_ide/" target="_blank"&gt;Komodo IDE 4.1&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;SVN integration.&lt;/li&gt;
      &lt;li&gt;Code Completion.&lt;/li&gt;
      &lt;li&gt;Debugging.&lt;/li&gt;
      &lt;li&gt;Built specifically for Ruby on Rails.&lt;/li&gt;
      &lt;li&gt;Much more&amp;#8230;&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;$295&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.mondrian-ide.com/" target="_blank"&gt;Mondrian Ruby IDE&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;Lightweight.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;No SVN integration.&lt;/li&gt;
      &lt;li&gt;No Code Completion.&lt;/li&gt;
      &lt;li&gt;Performance could be an issue b/c it&amp;#8217;s a native Ruby application.&lt;/li&gt;
      &lt;li&gt;Spam in support &lt;a href="http://www.mondrian-ide.com/support.php" target="_blank"&gt;forum&lt;/a&gt;.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.netbeans.org/" target="_blank"&gt;NetBeans Beta 6.0 Milestone 10+&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;SVN integration.&lt;/li&gt;
      &lt;li&gt;Code Completion.&lt;/li&gt;
      &lt;li&gt;Debugging.&lt;/li&gt;
      &lt;li&gt;Plugins.&lt;/li&gt;
      &lt;li&gt;Free.&lt;/li&gt;
      &lt;li&gt;Much more&amp;#8230;&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;Beta.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.codegear.com/products/rubyide" target="_blank"&gt;Ruby IDE from CodeGear&lt;/a&gt;&lt;br /&gt;
    Pros
    &lt;ul&gt;
      &lt;li&gt;CodeGear experience.&lt;/li&gt;
    &lt;/ul&gt;
    Cons
    &lt;ul&gt;
      &lt;li&gt;Feature set not yet released.&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I&amp;#8217;ll be evaluating each of the IDEs/editors in turn and publishing my results as a series.  Feel free to leave feedback and check back soon!&lt;/p&gt;</description>
      <pubDate>Thu, 09 Aug 2007 19:32:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:d22e0c9a-9739-490c-ba03-5f35f317296a</guid>
      <author>Ryan Baxter</author>
      <link>http://crunchlife.com/articles/2007/08/09/i-want-my-ide</link>
      <category>IDE</category>
      <category>Rails</category>
      <category>Ruby</category>
      <enclosure type="image/jpeg" url="http://crunchlife.com/files/i_want_my_mtv.jpg" length="12028"/>
    </item>
  </channel>
</rss>
