<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
 
 <title>SpicyCode - The ramblings of Chad Humphries</title>
 
 <link href="http://spicycode.github.com/" />
 <updated>2009-10-16T20:49:21-07:00</updated>
 <id>http://spicycode.github.com/</id>
 <author>
   <name>Chad Humphries</name>
   <email>chad@spicycode.com</email>
 </author>

 
 <link rel="self" href="http://feeds.feedburner.com/spicycode" type="application/atom+xml" /><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/spicycode" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://plusmo.com/res/graphics/fbplusmo.gif">Subscribe with Plusmo</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2Fspicycode" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry>
   <title>GemKata - The Art of the Gem</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/J8QkveTXzQU/current-gem-practices.html" />
   <updated>2009-10-09T00:00:00-07:00</updated>
   <id>http://spicycode.github.com/2009/10/09/current-gem-practices</id>
   <content type="html">&lt;h1 id='gemkata__the_art_of_the_gem'&gt;GemKata - The Art of the Gem&lt;/h1&gt;
&lt;p class='meta'&gt;09 Oct 2009&lt;/p&gt;&lt;img class='awesome-image' title='It&amp;apos;s not like I could find a picture of GemKata, so deal with this' src='/images/posts/gymkata.jpg' border='0' /&gt;
&lt;p&gt;The dust has settled. The &lt;a href='http://github.com'&gt;GitHub&lt;/a&gt; has moved. What&amp;#8217;s that you say? They don&amp;#8217;t build gems anymore? Don&amp;#8217;t worry, you should use &lt;a href='http://gemcutter.com'&gt;GemCutter&lt;/a&gt;. This assumes that you are already using &lt;em&gt;jeweler&lt;/em&gt;. You are, aren&amp;#8217;t you?&lt;/p&gt;

&lt;h2 id='lets_say_you_want_to_release_a_gem'&gt;Let&amp;#8217;s say you want to release a gem&lt;/h2&gt;

&lt;p&gt;Make sure your jeweler config in your &lt;em&gt;Rakefile&lt;/em&gt; looks something like the following.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;begin
  require &amp;#39;jeweler&amp;#39;
  Jeweler::Tasks.new do |gem|
    gem.name = &amp;quot;your-awesome-gem-here&amp;quot;
    # ...
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts &amp;quot;Jeweler not available. Install it with: gem install jeweler&amp;quot;
end&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now it&amp;#8217;s as easy as typing:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# If you have never released before
rake version write MAJOR=0 MINOR=1 PATCH=0
# If you are back for more, releasing again
rake version:bump:(major|minor|patch)&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;You now have an updated gemspec, and with the version set correctly. Now to tag the release on github.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rake release&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Finally, release it to &lt;a href='http://gemcutter.com'&gt;GemCutter&lt;/a&gt; using:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rake gemcutter:release &lt;/code&gt;&lt;/pre&gt;

&lt;h2 id='the_users_are_at_the_gates_and_they_demand_documentation'&gt;The users are at the gates, and they demand documentation!&lt;/h2&gt;

&lt;p&gt;The next most awesome thing to do is to add &lt;a href='http://github.com/voloko/sdoc'&gt;sdoc&lt;/a&gt;. Think the best rdoc template in the history of the universe. And as a special bonus we&amp;#8217;ll generate them on your gh-pages branch so you can go to &lt;em&gt;http://yournamehere.github.com/your-awesome-gem-here&lt;/em&gt; to see the rdoc documentation.&lt;/p&gt;

&lt;p&gt;Open your &lt;em&gt;Rakefile&lt;/em&gt; back up and put this at the bottom:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;begin
  %w{sdoc sdoc-helpers rdiscount}.each { |name| gem name }
  require &amp;#39;sdoc_helpers&amp;#39;
rescue LoadError =&amp;gt; ex
  puts &amp;quot;sdoc support not enabled:&amp;quot;
  puts ex.inspect
end

require &amp;#39;rake/rdoctask&amp;#39;
Rake::RDocTask.new do |rdoc|
  version = File.exist?(&amp;#39;VERSION&amp;#39;) ? File.read(&amp;#39;VERSION&amp;#39;) : &amp;#39;&amp;#39;
  rdoc.rdoc_dir = &amp;#39;rdoc&amp;#39;
  rdoc.title = &amp;quot;your-awesome-gem-here #{version}&amp;quot;
  rdoc.rdoc_files.include(&amp;#39;README*&amp;#39;)
  rdoc.rdoc_files.include(&amp;#39;lib/**/*.rb&amp;#39;)
end&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;To generate the docs the first time run:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rake pages:init&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;To rebuild the github pages branch after updates:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;rake pages&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id='bask_in_your_amazingness'&gt;Bask in your amazingness&lt;/h2&gt;

&lt;p&gt;Now you&amp;#8217;ve done it! You&amp;#8217;re the envy of ever ne&amp;#8217;er-do-well programmer from here to there. Enjoy!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/J8QkveTXzQU" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/10/09/current-gem-practices.html</feedburner:origLink></entry>
 
 <entry>
   <title>Speeding up port install</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/YYtWuc42Bzo/sudo-port-install-turbo.html" />
   <updated>2009-05-17T00:00:00-07:00</updated>
   <id>http://spicycode.github.com/2009/05/17/sudo-port-install-turbo</id>
   <content type="html">&lt;h1 id='speeding_up_port_install'&gt;Speeding up port install&lt;/h1&gt;
&lt;p class='meta'&gt;17 May 2009&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve been doing a lot of software installation via &lt;a href='http://macports.org'&gt;macports&lt;/a&gt; recently and I wanted to make sure things were building as fast as they could. After reading through the macports FAQ I found a few easy steps for speeding up installations.&lt;/p&gt;

&lt;h2 id='install_ccache'&gt;Install ccache&lt;/h2&gt;

&lt;p&gt;From the &lt;strong&gt;ccache&lt;/strong&gt; homepage:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;ccache is a compiler cache. It acts as a caching pre-processor to C/C++ compilers, using the -E compiler switch and a hash to detect when a compilation can be satisfied from cache. This often results in a 5 to 10 times speedup in common compilations.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;To use &lt;strong&gt;ccache&lt;/strong&gt; port install it by typing:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo port install ccache&lt;/code&gt;&lt;/pre&gt;

&lt;h2 id='tweak_your_macportsconf'&gt;Tweak your macports.conf&lt;/h2&gt;

&lt;p&gt;We will need to edit a few settings in our &lt;strong&gt;macports.conf&lt;/strong&gt; to enable ccache, and to make builds faster. First open &lt;strong&gt;macports.conf&lt;/strong&gt; in your editor of choice.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;sudo vim /opt/local/etc/macports/macports.conf&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now find the &lt;strong&gt;configureccache&lt;/strong&gt; setting and change it&amp;#8217;s value to &lt;strong&gt;yes&lt;/strong&gt;. Next find &lt;strong&gt;buildmakejobs&lt;/strong&gt; and change it&amp;#8217;s value from &lt;strong&gt;1&lt;/strong&gt; to &lt;strong&gt;0&lt;/strong&gt;. Now you can save and exit the file.&lt;/p&gt;

&lt;p&gt;With the last changes we have enabled &lt;strong&gt;ccache&lt;/strong&gt; integration in macports and also told it to detect the number of processor cores to use, instead of leaving it hardcoded to 1.&lt;/p&gt;

&lt;p&gt;Things should zoom along quite a bit faster now when compiling in macports.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/YYtWuc42Bzo" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/05/17/sudo-port-install-turbo.html</feedburner:origLink></entry>
 
 <entry>
   <title>RCov News Extravaganza</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/qHXOkjRFjMw/rcov-updates.html" />
   <updated>2009-05-12T00:00:00-07:00</updated>
   <id>http://spicycode.github.com/2009/05/12/rcov-updates</id>
   <content type="html">&lt;h1 id='rcov_news_extravaganza'&gt;RCov News Extravaganza&lt;/h1&gt;
&lt;p class='meta'&gt;12 May 2009&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s been a while since the last fireside chat about RCov, so let&amp;#8217;s head into this one at full-steam.&lt;/p&gt;

&lt;h2 id='no_more_rexml'&gt;No more REXML&lt;/h2&gt;

&lt;p&gt;The source of countless bugs in RCov reporting across multiple versions of Ruby has been eliminated in favor of simple ERB templates. This simplifies the codebase and makes way for better template support down the road.&lt;/p&gt;

&lt;h2 id='the_official_repository_on_github_is_now_under_the_relevance_account'&gt;The official repository on GitHub is now under the Relevance account&lt;/h2&gt;

&lt;p&gt;This is great for everyone as it means more support, faster response to issues, and generally nothing but up for RCov going forward. Issues are moving to GitHub as well, so make sure to keep track of them at their &lt;a href='http://github.com/relevance/rcov/issues'&gt;new location&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id='jruby_has_a_maintainer_for_their_rcov_version'&gt;JRuby has a maintainer for their RCov version&lt;/h2&gt;

&lt;p&gt;Charles Nutter is maintaining the official JRuby fork at &lt;a href='http://github.com/jruby/rcov'&gt;http://github.com/jruby/rcov&lt;/a&gt;. This should do similiarly great things for RCov on JRuby. Thanks to everyone who has submitted patches building out the initial version for JRuby in the past.&lt;/p&gt;

&lt;h2 id='ruby_19_support_is_drawing_near'&gt;Ruby 1.9 support is drawing near&lt;/h2&gt;

&lt;p&gt;With the removal of REXML many of the biggest pain points are now gone, leading to a much more streamlined RCov. Work on Ruby 1.9 is progressing and already in &lt;strong&gt;alpha&lt;/strong&gt; working state. More on this soon.&lt;/p&gt;

&lt;h2 id='to_recap'&gt;To recap&amp;#8230;&lt;/h2&gt;

&lt;p&gt;1) Install Rcov by doing the following:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;gem install relevance-rcov --source=http://gems.github.com&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;2) Need JRuby support?&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;gem install jruby-rcov --source=http://gems.github.com&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;3) Still having issues on Ruby 1.8.X with RCov? Make sure you are using &lt;strong&gt;relevance-rcov v0.8.3.2&lt;/strong&gt; or higher. If you have an outstanding issue, or requests file it at our &lt;a href='http://github.com/relevance/rcov/issues'&gt;GitHub Issue Tracker&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;4) Waiting on Ruby 1.9? Support is coming soon.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/qHXOkjRFjMw" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/05/12/rcov-updates.html</feedburner:origLink></entry>
 
 <entry>
   <title>Binding Option-Left and Option-Right in iTerm and Terminal</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/YldurCnIujM/binding-option-left-and-right-in-terminal.html" />
   <updated>2009-03-11T00:00:00-07:00</updated>
   <id>http://spicycode.github.com/2009/03/11/binding-option-left-and-right-in-terminal</id>
   <content type="html">&lt;h1 id='binding_optionleft_and_optionright_in_iterm_and_terminal'&gt;Binding Option-Left and Option-Right in iTerm and Terminal&lt;/h1&gt;
&lt;p class='meta'&gt;11 Mar 2009&lt;/p&gt;
&lt;p&gt;I finally got around to solving one of the consistency issues I encounter on OSX as I switch between Cocoa and the terminal. I really enjoy &lt;code&gt;Option-Left&lt;/code&gt; and &lt;code&gt;Option-Right&lt;/code&gt; as skip back one word and skip forward a word. Drop the following in your ZSH config to get things done.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# To see the key combo you want to use just do:
# cat &amp;gt; /dev/null
# And press it

bindkey &amp;#39;^K&amp;#39; kill-whole-line                      # ctrl-k
bindkey &amp;quot;^R&amp;quot; history-incremental-search-backward  # ctrl-r
bindkey &amp;quot;^A&amp;quot; beginning-of-line                    # ctrl-a  
bindkey &amp;quot;^E&amp;quot; end-of-line                          # ctrl-e
bindkey &amp;quot;[B&amp;quot;: history-search-forward              # down arrow
bindkey &amp;quot;[A&amp;quot;: history-search-backward             # up arrow
bindkey &amp;#39;^[[D&amp;#39; backward-word                      # option left
bindkey &amp;#39;^[[C&amp;#39; forward-word                       # option right&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I&amp;#8217;ve included the quick instructions on finding out what a key combo is in the terminal so you can bind any old thing. You can see what is currently bound by using &lt;code&gt;bindkey -L&lt;/code&gt;.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/YldurCnIujM" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/03/11/binding-option-left-and-right-in-terminal.html</feedburner:origLink></entry>
 
 <entry>
   <title>Keeping things clean when using MacPorts</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/LaILqXNGjms/cleaning-up-with-macports.html" />
   <updated>2009-02-23T00:00:00-08:00</updated>
   <id>http://spicycode.github.com/2009/02/23/cleaning-up-with-macports</id>
   <content type="html">&lt;h1 id='keeping_things_clean_when_using_macports'&gt;Keeping things clean when using MacPorts&lt;/h1&gt;
&lt;p class='meta'&gt;23 Feb 2009&lt;/p&gt;
&lt;p&gt;A common pattern I perform in MacPorts is embodied in the following function.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;function update_macports {
  sudo port selfupdate
  sudo port sync
  sudo port outdated
}&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;It updates MacPorts, syncs the ports database, and then shows me what is outdated. For most ports I tend to uninstall the old version and then install the newer version. Sometimes this gets you in a never ending dependency removal loop.&lt;/p&gt;

&lt;p&gt;Use &lt;code&gt;sudo port uninstall --follow-dependents your-portname-here&lt;/code&gt;. This will uninstall this port and any dependent ports not in use by other ports on the system. Useful for cleanup after experimentation.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/LaILqXNGjms" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/02/23/cleaning-up-with-macports.html</feedburner:origLink></entry>
 
 <entry>
   <title>Rubygems in your HOME directory, a 5 second guide.</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/fX1tF72CZhI/rubygems-in-your-home-directory.html" />
   <updated>2009-02-14T00:00:00-08:00</updated>
   <id>http://spicycode.github.com/2009/02/14/rubygems-in-your-home-directory</id>
   <content type="html">&lt;h1 id='rubygems_in_your_home_directory_a_5_second_guide'&gt;Rubygems in your HOME directory, a 5 second guide.&lt;/h1&gt;
&lt;p class='meta'&gt;14 Feb 2009&lt;/p&gt;
&lt;p&gt;It seems you are finally ready to let your gems live only in your &lt;em&gt;HOME&lt;/em&gt; directory. I&amp;#8217;ll show you the ropes.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;First, stop typing &lt;code&gt;sudo gem whatever&lt;/code&gt;, all the cool kids type &lt;code&gt;gem whatever&lt;/code&gt;.&lt;/li&gt;

&lt;li&gt;Add the following export to your zsh or bash config.&lt;/li&gt;

&lt;li&gt;For ruby 1.8x it would be something like &lt;code&gt;export GEM_HOME=~/.gem/ruby/1.8&lt;/code&gt;&lt;/li&gt;

&lt;li&gt;For 1.9.1 it would be &lt;code&gt;export GEM_HOME=~/.gem/ruby/1.9.1&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Now you can install and remove gems in your home directory with no issue.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/fX1tF72CZhI" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2009/02/14/rubygems-in-your-home-directory.html</feedburner:origLink></entry>
 
 <entry>
   <title>Installing Merb 1.0</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/MDfmy0W55jI/installing-merb-10.html" />
   <updated>2008-11-10T00:00:00-08:00</updated>
   <id>http://spicycode.github.com/2008/11/10/installing-merb-10</id>
   <content type="html">&lt;h1 id='installing_merb_10'&gt;Installing Merb 1.0&lt;/h1&gt;
&lt;p class='meta'&gt;10 Nov 2008&lt;/p&gt;
&lt;p&gt;I saw that merb 1.0 came out and decided to install it. I jumped, nay leaped to the terminal and ran &lt;code&gt;sudo gem install merb&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;In the terminal I saw the following:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Successfully installed extlib-0.9.8
Successfully installed abstract-1.0.0
Successfully installed erubis-2.6.2
Successfully installed json_pure-1.1.3
Successfully installed mime-types-1.15
Successfully installed thor-0.9.8
Successfully installed merb-core-1.0
Successfully installed merb-action-args-1.0
Successfully installed merb-assets-1.0
Successfully installed merb-slices-1.0
Successfully installed merb-auth-core-1.0
Successfully installed merb-auth-more-1.0
Successfully installed merb-auth-slice-password-1.0
Successfully installed merb-auth-1.0
Successfully installed merb-cache-1.0
Successfully installed merb-exceptions-1.0
Successfully installed diff-lcs-1.1.2
Successfully installed templater-0.3.5
Successfully installed merb-gen-1.0
Successfully installed haml-2.0.4
Successfully installed merb-haml-1.0
Successfully installed merb-helpers-1.0
Successfully installed mailfactory-1.4.0
Successfully installed merb-mailer-1.0
Successfully installed merb-param-protection-1.0
Successfully installed addressable-1.0.4
Successfully installed data_objects-0.9.6
Successfully installed dm-core-0.9.6
Successfully installed dm-migrations-0.9.6
Successfully installed merb_datamapper-1.0
Successfully installed merb-more-1.0
Successfully installed do_sqlite3-0.9.6
Successfully installed dm-timestamps-0.9.6
Successfully installed uuidtools-1.0.4
Successfully installed dm-types-0.9.6
Successfully installed dm-aggregates-0.9.6
Successfully installed dm-validations-0.9.6
Successfully installed randexp-0.1.4
Successfully installed dm-sweatshop-0.9.6
Successfully installed merb-1.0&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I’m all for modular, but ouch. 40 gems is quite a lot.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/MDfmy0W55jI" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2008/11/10/installing-merb-10.html</feedburner:origLink></entry>
 
 <entry>
   <title>Using MacVim and want the same ruby bindings in console VIM?</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/PyCOKHx3ZXs/using-macvim-with-the-terminal.html" />
   <updated>2008-11-07T00:00:00-08:00</updated>
   <id>http://spicycode.github.com/2008/11/07/using-macvim-with-the-terminal</id>
   <content type="html">&lt;h1 id='using_macvim_and_want_the_same_ruby_bindings_in_console_vim'&gt;Using MacVim and want the same ruby bindings in console VIM?&lt;/h1&gt;
&lt;p class='meta'&gt;07 Nov 2008&lt;/p&gt;
&lt;p&gt;Just alias vim to the following.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;alias vim=&amp;#39;/Applications/MacVim.app/Contents/MacOS/Vim -p&amp;#39;&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/PyCOKHx3ZXs" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2008/11/07/using-macvim-with-the-terminal.html</feedburner:origLink></entry>
 
 <entry>
   <title>Bringing VIM to the people</title>
   <link href="http://feedproxy.google.com/~r/spicycode/~3/5viTy2YuQGg/bringing-vim-to-the-people.html" />
   <updated>2008-11-07T00:00:00-08:00</updated>
   <id>http://spicycode.github.com/2008/11/07/bringing-vim-to-the-people</id>
   <content type="html">&lt;h1 id='bringing_vim_to_the_people'&gt;Bringing VIM to the people&lt;/h1&gt;
&lt;p class='meta'&gt;07 Nov 2008&lt;/p&gt;
&lt;h2 id='what’s_included'&gt;What’s included?&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;IRB&lt;/li&gt;

&lt;li&gt;Shell Mode with Syntax Highlighting for running test results&lt;/li&gt;

&lt;li&gt;GUI+Terminal theme (spicycode) with nearest match color palletes&lt;/li&gt;

&lt;li&gt;FuzzyFinder built-in and setup with reasonable defaults&lt;/li&gt;

&lt;li&gt;User Settings file for user specific bits&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h2 id='how_do_i_use_it'&gt;How do I use it?&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Clone the repo, or fork it if you want, then symlink &lt;strong&gt;.vimrc&lt;/strong&gt;, &lt;strong&gt;.gvimrc&lt;/strong&gt;, and &lt;strong&gt;.vim&lt;/strong&gt; to your &lt;strong&gt;$HOME&lt;/strong&gt; directory.&lt;/li&gt;

&lt;li&gt;Copy the &lt;strong&gt;~/.vim/example&lt;em&gt;user&lt;/em&gt;settings.vim&lt;/strong&gt; to &lt;strong&gt;~/.vim/user&lt;em&gt;settings.vim&lt;/em&gt;&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;Customize it as necessary&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h2 id='where_is_it'&gt;Where is it?&lt;/h2&gt;

&lt;pre&gt;&lt;code&gt;git clone git://github.com/spicycode/bringing-vim-to-the-people.git&lt;/code&gt;&lt;/pre&gt;&lt;img src="http://feeds.feedburner.com/~r/spicycode/~4/5viTy2YuQGg" height="1" width="1"/&gt;</content>
 <feedburner:origLink>http://spicycode.github.com/2008/11/07/bringing-vim-to-the-people.html</feedburner:origLink></entry>
 
 
</feed>
