<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Notes &#38; Stuff &#187; Ruby</title>
	<atom:link href="http://funroe.net/notes/tag/ruby/feed/" rel="self" type="application/rss+xml" />
	<link>http://funroe.net/notes</link>
	<description>Just another Funroe weblog</description>
	<lastBuildDate>Sun, 12 May 2013 20:17:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2-alpha</generator>
		<item>
		<title>Here&#8217;s the source article http www frederico araujo&#8230;</title>
		<link>http://funroe.net/notes/2012/06/05/ruby-compass-susy-and-homebrew-on-osx-lion/</link>
		<comments>http://funroe.net/notes/2012/06/05/ruby-compass-susy-and-homebrew-on-osx-lion/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 20:13:51 +0000</pubDate>
		<dc:creator>jess</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[Compass]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Susy]]></category>

		<guid isPermaLink="false">http://funroe.net/notes/2012/06/05/ruby-compass-susy-and-homebrew-on-osx-lion/</guid>
		<description><![CDATA[Here&#8217;s the source article: http://www.frederico-araujo.com/2011/07/30/installing-rails-on-os-x-lion-with-homebrew-rvm-and-mysql/ My goals here are to update an environment and move to a new Susy release: http://susy.oddbird.net/ 1. Install and upgrade XCode from the Mac App Store (4.3.2 in this case). Also install the Command Line Tools found in the Preferences pane. 2. Install Homebrew. Not entirely necessary, but I&#8217;m enjoying [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s the source article:</p>
<p><a href="http://www.frederico-araujo.com/2011/07/30/installing-rails-on-os-x-lion-with-homebrew-rvm-and-mysql/" rel="nofollow">http://www.frederico-araujo.com/2011/07/30/installing-rails-on-os-x-lion-with-homebrew-rvm-and-mysql/</a></p>
<p>My goals here are to update an environment and move to a new Susy release: <a href="http://susy.oddbird.net/" rel="nofollow">http://susy.oddbird.net/</a></p>
<p>1. Install and upgrade XCode from the Mac App Store (4.3.2 in this case). Also install the Command Line Tools found in the Preferences pane.</p>
<p>2. Install Homebrew. Not entirely necessary, but I&#8217;m enjoying it lately.</p>
<pre class="brush: bash; title: ; notranslate">
Install Homebrew Package Manager
$ /usr/bin/ruby -e &quot;$(/usr/bin/curl -fsSL <a href="https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb" rel="nofollow">https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb</a>)&quot;

</pre>
<p>3. Install RVM &#8211; Ruby Version Manager</p>
<pre class="brush: bash; title: ; notranslate">
// Install RVM
$  bash -s master &lt; &lt;(curl -s <a href="https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer" rel="nofollow">https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer</a>)
// Reset some paths
$ echo '[[ -s &quot;$HOME/.rvm/scripts/rvm&quot; ]] &amp;&amp; . &quot;$HOME/.rvm/scripts/rvm&quot; # Load RVM function' &gt;&gt; ~/.bash_profile
// Run to reset your open terminals
$ source ~/.bash_profile
// Make sure RVM is updated
$ rvm get stable
// Had to do a reinstall for Ruby stable
$ rvm reinstall 1.9.3-p194
// Use Ruby 1.9.3-p194
$ rvm use 1.9.3-p194 --default
// Check my ruby version
$ ruby -v
</pre>
<p>4. Install Compass</p>
<pre class="brush: bash; title: ; notranslate">
// Make sure all is good
$ sudo gem update --system
// Some XML Tools
$ sudo gem install builder
// Install Compass
$ sudo gem install compass
// Here's where things went wacky, so Installed the kitchen sink - over-install-panic-attack!
$ sudo gem install haml
$ sudo gem install haml-edge
$ sudo gem install rails
// Oh it's a damn bug see: 
// <a href="http://stackoverflow.com/questions/10610254/cant-install-compass-via-rvm" rel="nofollow">http://stackoverflow.com/questions/10610254/cant-install-compass-via-rvm</a>
$ rubygems-bundler-uninstaller
// Test Compass
$ compass version
</pre>
<p>5. Install my favorite Compass add-ons</p>
<pre class="brush: bash; title: ; notranslate">
// Oily_PNG to for sprite creation performance
$ sudo gem install oily_png
// Susy because grids are awesome - Now this will install some alpha SASS and Compass code but why not.
$ sudo gem install susy --pre
// Normailze CSS sortof-reset
$ sudo gem install compass-normalize
</pre>
]]></content:encoded>
			<wfw:commentRss>http://funroe.net/notes/2012/06/05/ruby-compass-susy-and-homebrew-on-osx-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
