<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>nicholasjon.com :: a weblog &gt;&gt; posts tagged: rails</title>
    <link>http://nicholasjon.com/</link>
    <pubDate>Thu, 01 May 2008 13:46:48 GMT</pubDate>
    <description>nicholasjon.com :: an rss feed</description>
    <image>
      <url>http://www.nicholasjon.com/images/n_ficon.gif</url>
      <link>http://nicholasjon.com/</link>
      <title>nicholasjon.com :: favicon</title>
    </image>
    <item>
      <title>New Relic</title>
      <link>http://nicholasjon.com/permalink/2008/5/1/new_relic</link>
      <description>&lt;p&gt;A whole company forms around the idea of Ruby on Rails scalability.  I&amp;#8217;m hoping a lot of neat stuff comes from this.&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://www.newrelic.com/"&gt;http://www.newrelic.com/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 01 May 2008 13:46:48 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2008/5/1/new_relic</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Updating Rubygems</title>
      <link>http://nicholasjon.com/permalink/2007/3/14/updating_rubygems</link>
      <description>&lt;p&gt;Here&amp;#8217;s how I updated my MacBook Pro from Rails 1.2.1 to Rails 1.2.3:&lt;/p&gt;


&lt;code&gt;sudo gem update --system
sudo mv /usr/local/lib/ruby/gems/1.8/source_cache ~/tmp
mv ~/.gem/ ~/tmp/
gem sources
sudo gem install rails --include-dependencies
&lt;/code&gt;

	&lt;p&gt;Those five lines of code took about an hour and some serious Googling to figure out.  Ah well, back to work.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;: You may (probably will) get an error after you run &amp;#8220;sudo gem install rails&amp;#8212;include-dependencies&amp;#8221;.  I&amp;#8217;m not sure exactly why, but running the same command again will finally update your Rails install.  Anyone with a better solution should feel free to pop a comment down below.&lt;/p&gt;</description>
      <pubDate>Thu, 15 Mar 2007 05:24:03 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2007/3/14/updating_rubygems</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Inline RJS</title>
      <link>http://nicholasjon.com/permalink/2007/1/12/inline_rjs</link>
      <description>&lt;p&gt;For when a &amp;#8220;whole &amp;#8216;nother file&amp;#8221; just seems like a waste&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://weblog.jamisbuck.org/2007/1/10/inline-rjs"&gt;http://weblog.jamisbuck.org/2007/1/10/inline-rjs&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 12 Jan 2007 20:12:00 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2007/1/12/inline_rjs</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Capistrano cheat sheet</title>
      <link>http://nicholasjon.com/permalink/2006/10/22/capistrano_cheat_sheet</link>
      <description>&lt;p&gt;Always good to have a printed reference in a pinch.&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://cheat.errtheblog.com/s/capistrano/"&gt;http://cheat.errtheblog.com/s/capistrano/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:44 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/10/22/capistrano_cheat_sheet</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>AssetPackager</title>
      <link>http://nicholasjon.com/permalink/2006/6/23/assetpackager</link>
      <description>&lt;p&gt;Compress &lt;span class="caps"&gt;CSS&lt;/span&gt; and JS files for production apps&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://synthesis.sbecker.net/pages/asset_packager"&gt;http://synthesis.sbecker.net/pages/asset_packager&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:19 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/6/23/assetpackager</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Camping, a Microframework</title>
      <link>http://nicholasjon.com/permalink/2006/5/28/camping_a_microframework</link>
      <description>&lt;p&gt;When you don&amp;#8217;t need &amp;#8220;everything&amp;#8221; that is Rails, go Camping&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://code.whytheluckystiff.net/camping/"&gt;http://code.whytheluckystiff.net/camping/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:29 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/5/28/camping_a_microframework</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Rails developers: Use params, not @params</title>
      <link>http://nicholasjon.com/permalink/2006/4/25/rails_developers_use_params_not_params</link>
      <description>&lt;p&gt;I&amp;#8217;m guilty in the worst way &amp;mdash; I&amp;#8217;ve been doing about half with @ and half without with no real logic&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://weblog.rubyonrails.com/articles/2006/04/25/use-params-not-params"&gt;http://weblog.rubyonrails.com/articles/2006/04/25/use-params-not-params&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:24 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/4/25/rails_developers_use_params_not_params</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>DHH in CRN</title>
      <link>http://nicholasjon.com/permalink/2006/4/14/dhh_in_crn</link>
      <description>&lt;p&gt;Anil Dash: &amp;#8220;Blue Steel!&amp;#8221;  Too true.&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://www.flickr.com/photo_zoom.gne?id=124362649&amp;context=photostream&amp;size=l"&gt;http://www.flickr.com/photo_zoom.gne?id=124362649&amp;context=photostream&amp;size=l&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:12 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/4/14/dhh_in_crn</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Rails 1.1</title>
      <link>http://nicholasjon.com/permalink/2006/3/28/rails_11</link>
      <description>&lt;p&gt;Lots of new stuff&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://weblog.rubyonrails.com/articles/2006/03/28/rails-1-1-rjs-active-record-respond_to-integration-tests-and-500-other-things"&gt;http://weblog.rubyonrails.com/articles/2006/03/28/rails-1-1-rjs-active-record-respond_to-integration-tests-and-500-other-things&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:34 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/3/28/rails_11</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Rails for Designers</title>
      <link>http://nicholasjon.com/permalink/2006/3/23/rails_for_designers</link>
      <description>&lt;p&gt;A write up of the &amp;#8220;V&amp;#8221; in Rails&amp;#8217;s &lt;span class="caps"&gt;MVC&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://glu.ttono.us/articles/2006/03/21/rails-for-designers"&gt;http://glu.ttono.us/articles/2006/03/21/rails-for-designers&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:27 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/3/23/rails_for_designers</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>When You Say I Beg Your Pardon, Then I Come Back To You</title>
      <link>http://nicholasjon.com/permalink/2006/3/8/when_you_say_i_beg_your_pardon_then_i_come_back_to_you</link>
      <description>&lt;p&gt;The song by Jack Benny which I reference in the previous post about Capistrano for those of you who might not be up on your old time radio references&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://www.tvacres.com/music_songs_begpardon.htm"&gt;http://www.tvacres.com/music_songs_begpardon.htm&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:08 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/3/8/when_you_say_i_beg_your_pardon_then_i_come_back_to_you</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>SwitchTower is now Capistrano</title>
      <link>http://nicholasjon.com/permalink/2006/3/7/switchtower_is_now_capistrano</link>
      <description>&lt;p&gt;For crying out loud, I just figured out how to use the damn thing and now they go and change the name to something which evokes the image of Jack Benny singing about swallows&amp;#8230; but I&amp;#8217;m the only person under 80 who thinks of stuff like that&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://weblog.rubyonrails.com/articles/2006/03/06/switchtower-is-now-capistrano"&gt;http://weblog.rubyonrails.com/articles/2006/03/06/switchtower-is-now-capistrano&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:07 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/3/7/switchtower_is_now_capistrano</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>What (will be) new in Rails 1.1</title>
      <link>http://nicholasjon.com/permalink/2006/3/3/what_will_be_new_in_rails_11</link>
      <description>&lt;p&gt;Some pretty cool stuff is coming&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://scottraymond.net/articles/2006/02/28/rails-1.1"&gt;http://scottraymond.net/articles/2006/02/28/rails-1.1&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:42 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/3/3/what_will_be_new_in_rails_11</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Evaluation: moving from Java to Ruby on Rails</title>
      <link>http://nicholasjon.com/permalink/2006/2/28/evaluation_moving_from_java_to_ruby_on_rails</link>
      <description>&lt;p&gt;Some tips&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://rewrite.rickbradley.com/pages/moving_to_rails/"&gt;http://rewrite.rickbradley.com/pages/moving_to_rails/&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:30 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/2/28/evaluation_moving_from_java_to_ruby_on_rails</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>How to access your project with RadRails and SVN</title>
      <link>http://nicholasjon.com/permalink/2006/2/11/how_to_access_your_project_with_radrails_and_svn</link>
      <description>&lt;p&gt;Can you tell I&amp;#8217;m learning subversion?&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://wiki.railsplayground.com/railsplayground/show/How+To+Access+Your+Project+With+RadRails"&gt;http://wiki.railsplayground.com/railsplayground/show/How+To+Access+Your+Project+With+RadRails&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:12 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/2/11/how_to_access_your_project_with_radrails_and_svn</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
    <item>
      <title>Shovel</title>
      <link>http://nicholasjon.com/permalink/2006/2/7/shovel</link>
      <description>&lt;p&gt;Switchtower deployment for those folks on Dreamhost&lt;/p&gt;&lt;p&gt;Link: &lt;a href="http://nubyonrails.com/pages/shovel_dreamhost"&gt;http://nubyonrails.com/pages/shovel_dreamhost&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 30 Oct 2006 20:31:44 GMT</pubDate>
      <guid>http://nicholasjon.com/permalink/2006/2/7/shovel</guid>
      <author>nicholasjon@nicholasjon.com (Nick)</author>
    </item>
  </channel>
</rss>
