<?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>adlatitude.com &#187; installation</title>
	<atom:link href="http://adlatitude.com/tag/installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://adlatitude.com</link>
	<description>exploring the intersection of new media and everything else</description>
	<lastBuildDate>Sun, 11 Apr 2010 09:42:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Learning Ruby on Rails &#8211; Day 1 &#8211; Installing RoR on Mac OSX</title>
		<link>http://adlatitude.com/2009/04/25/learning-ruby-on-rails-day-1-installing-ror-on-mac-osx/</link>
		<comments>http://adlatitude.com/2009/04/25/learning-ruby-on-rails-day-1-installing-ror-on-mac-osx/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 11:00:10 +0000</pubDate>
		<dc:creator>drebabels (Andre Deutmeyer)</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X v10.5]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[RubyGems]]></category>

		<guid isPermaLink="false">http://adlatitude.com/?p=292</guid>
		<description><![CDATA[Before anyone gets any ideas. This is by no mean a definitive guide to Ruby on Rails. I am an absolute newb to Ruby on Rails and really developing web applications in general. I have working knowledge of HTML and CSS. I can stumble my way through PHP. I know next to nothing about MySQL. 


Related posts:<ol><li><a href='http://adlatitude.com/2009/07/09/now-blogging-at-dtangl/' rel='bookmark' title='Permanent Link: Now blogging at dtangl'>Now blogging at dtangl</a> <small>I just wanted to let all of you know that...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Before anyone gets any ideas. This is by no mean a definitive guide to Ruby on Rails. I am an absolute newb to Ruby on Rails and really developing web applications in general. I have working knowledge of HTML and CSS. I can stumble my way through PHP. I know next to nothing about MySQL. And this is my first ever attempt to extend my skillz (or lack there of) into application development <em>a la</em> playing with Ruby on Rails on my mac.</p>
<p>This blog post is as much for my benefit so that I can look back and see what I did. And most importantly what mistakes I made. Hopefully if you are reading this blog, you will learn from my mistakes so that you won&#8217;t have to make them.</p>
<p>So before I begin here is the system I am installing this on:</p>
<p>2.16GHz Intel Mac Book Pro running OS X Version 10.5.6</p>
<p><strong>Installing Ruby on Rails.</strong></p>
<p>I installed Ruby on Rails by following this excellent step by step post <a href="http://hivelogic.com/articles/view/ruby-rails-leopard" target="_blank"><em>Building Ruby, Rails, Subversion, Mongrel, and MySQL on Mac OSX 10.5 (Leopard)</em></a><em> </em>which is the updated version of <a href="http://hivelogic.com/articles/view/ruby-rails-mongrel-mysql-osx" target="_blank">this guide</a>, both of which I found on Hivelogic. The post is a bit dated but just about everything works perfectly. I did have make some minor changes to the installation to make sure I got the latest version of Ruby and Rails, but all that requires is that you find out what the latest version is a replace it in the code.</p>
<p>(You can find out what the latest version is by checking out the <a href="http://rubyonrails.org/download">Ruby on Rails</a> and <a href="http://rubygems.org/">Ruby Gems</a> websites.)</p>
<p>So for example to install the latest version of Ruby Gems, everywhere I saw:</p>
<p><em>rubygems-1.3.1.tgz</em></p>
<p>I replaced it with:</p>
<p><em>rubygems-1.3.2.tgz</em></p>
<p>See easy as pie.</p>
<p>The only real problem I had was in installing Subversion. If you see these two error messages when trying to configure Subversion:</p>
<p><em>error: &#8211;with-openssl requires a path</em></p>
<p><em>error: &#8211;with-zlib requires an argument</em></p>
<p>then try removing the &#8211;with-openssl statement and add =/usr/ after &#8211;with-zlib so it looks like this:</p>
<p><em>./configure &#8211;prefix=/usr/local &#8211;with-ssl &#8211;with-zlib=/usr/</em></p>
<p>Now I don&#8217;t know what this actually does, but the installation does seem to work if you do this. Don&#8217;t blame me if something happens to your computer though&#8230; I am still learning too.</p>
<p>Anyway that is it for the installation. All in all it took me about 2 hours to install everything. Although I am sure that someone seasoned at this could do it much faster.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/4a5fcfc8-5b86-4521-8df0-96dcd47dc20d/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=4a5fcfc8-5b86-4521-8df0-96dcd47dc20d" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>


<p>Related posts:<ol><li><a href='http://adlatitude.com/2009/07/09/now-blogging-at-dtangl/' rel='bookmark' title='Permanent Link: Now blogging at dtangl'>Now blogging at dtangl</a> <small>I just wanted to let all of you know that...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://js-kit.com/rss/adlatitude.com/p=292</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
