<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/stylesheets/rss.css" type="text/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>Robby on Rails: Install Ruby, Rails, and PostgreSQL on OSX</title>
    <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>thoughts.sort_by{|t| t[:topic]}.collect </description>
    <item>
      <title>Install Ruby, Rails, and PostgreSQL on OSX</title>
      <description>&lt;div class="warning"&gt;
&lt;strong&gt;&lt;span class="caps"&gt;WARNING&lt;/span&gt;:&lt;/strong&gt; This post contains some outdated instructions. Please read &lt;a href="http://www.robbyonrails.com/articles/2007/06/19/installing-ruby-on-rails-and-postgresql-on-os-x-second-edition"&gt; Installing Ruby on Rails and PostgreSQL on &lt;span class="caps"&gt;OS X&lt;/span&gt;, Second Edition&lt;/a&gt;.
&lt;/div&gt;

	&lt;p&gt;Our Creative Director, Allison Beckwith, picked up a new black MacBook this weekend and I had the luxury of getting it setup to model our standard setup. We all try to keep our setups fairly similar so that we don&amp;#8217;t hit too many issues when working together on projects.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ll try to keep this short and to the point&amp;#8230; because if you&amp;#8217;re like me&amp;#8230; you just want to start playing with Rails! ;-)&lt;/p&gt;


	&lt;p&gt;The steps I followed to get her setup like the rest of the development team at &lt;a href="http://www.planetargon.com"&gt;&lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt;&lt;/a&gt; went something like this.&lt;/p&gt;


	&lt;h3&gt;XCode and DarwinPorts&lt;/h3&gt;


	&lt;ul&gt;
	&lt;li&gt;Download and install &lt;a href="http://iterm.sf.net/"&gt;iterm&lt;/a&gt; (the Universal dmg)&lt;/li&gt;
		&lt;li&gt;Download and install XCode tools from Apple (dmg)&lt;/li&gt;
		&lt;li&gt;Download and install &lt;a href="http://darwinports.opendarwin.org/"&gt;DarwinPorts&lt;/a&gt; (dmg)&lt;/li&gt;
		&lt;li&gt;Start up iterm.&lt;/li&gt;
	&lt;/ul&gt;


In this step we are going to modify the default bash profile so that every user on the machine that uses bash will get the path for darwinports in their bash_profile.
&lt;pre&gt;&lt;code&gt;sudo vi /etc/profile&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Modify the following line to include &lt;code&gt;/opt/local/bin&lt;/code&gt; in the &lt;span class="caps"&gt;PATH&lt;/span&gt;&amp;#8230; save the file (see vim documentation for details)&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;
  PATH="/bin:/sbin:/opt/local/bin:/usr/bin:/usr/sbin" 
&lt;/code&gt;&lt;/pre&gt;

	&lt;h3&gt;Ruby and Rails&lt;/h3&gt;


	&lt;ul&gt;
	&lt;li&gt;Open up a new iterm tab (apple-t)&lt;/li&gt;
		&lt;li&gt;Install ruby with darwinports with: &lt;code&gt;sudo port install ruby rb-rubygems&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Install Ruby on Rails and all its dependencies with: &lt;code&gt;sudo gem install -y rails&lt;/code&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;h3&gt;PostgreSQL and Ruby libs&lt;/h3&gt;


	&lt;ul&gt;
	&lt;li&gt;Install PostgreSQL8 with: &lt;code&gt;sudo port install postgresql8&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;We need to modify the &lt;code&gt;/etc/profile&lt;/code&gt; file again because the postgresql8 install doesn&amp;#8217;t add programs like pg_ctl to /opt/local/bin. Change the &lt;span class="caps"&gt;PATH&lt;/span&gt; to now look like this and save.&lt;/li&gt;
	&lt;/ul&gt;


&lt;pre&gt;&lt;code&gt;
  PATH="/bin:/sbin:/opt/local/bin:/usr/bin:/usr/sbin:/opt/local/lib/pgsql8/bin" 
&lt;/code&gt;&lt;/pre&gt;

	&lt;ul&gt;
	&lt;li&gt;Install the &lt;strong&gt;postgres&lt;/strong&gt; gem with: &lt;code&gt;sudo gem install postgres&lt;/code&gt;
	&lt;ul&gt;
	&lt;li&gt;Oh NO!!! You should see an error about it not finding libraries&amp;#8230; what will we do?&lt;/li&gt;
	&lt;/ul&gt;&lt;/li&gt;
	&lt;/ul&gt;


&lt;pre&gt;&lt;code&gt;
  cd /opt/local/lib/ruby/gems/1.8/gems/postgres-0.7.1
  sudo ruby extconf.rb --with-pgsql-include=/opt/local/include/pgsql8 --with-pgsql-lib=/opt/local/lib/pgsql8
  sudo make &amp;#38;&amp;#38; sudo make install
  # for good measure...
  sudo gem install postgres
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;&lt;strong&gt;Successfully installed postgres-0.7.1&lt;/strong&gt;&lt;/p&gt;


	&lt;h3&gt;Configure PostgreSQL for single user&lt;/h3&gt;


	&lt;p&gt;In our development environments, we don&amp;#8217;t find it necessary to keep PostgreSQL running all the time on our servers. We only want it running when we&amp;#8217;re doing development. We also typically install it per user on a machine to keep us from needing things like usernames and passwords to connect to it from an application we&amp;#8217;re running on the machine. Let&amp;#8217;s setup PostgreSQL the &lt;span class="caps"&gt;PLANET ARGON&lt;/span&gt; way!&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Open up iterm and go to your home directory&lt;/li&gt;
		&lt;li&gt;Init your new PostgreSQL database with: &lt;code&gt;initdb -D pgdata&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Start up PostgreSQL with: &lt;code&gt;pg_ctl -D pgdata -l pgdata/psql.log start&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Create a new database with: &lt;code&gt;createdb argon_development&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Test the new database with: &lt;code&gt;psql argon_development&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Did it load up your new database? If so, great! If not&amp;#8230; check your steps&amp;#8230; :-)&lt;/li&gt;
	&lt;/ul&gt;


	&lt;h3&gt;Test Rails + PostgreSQL&lt;/h3&gt;


	&lt;ul&gt;
	&lt;li&gt;Navigate to a directory where you don&amp;#8217;t mind sticking projects&amp;#8230; &lt;code&gt;mkdir development; cd development&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Generate a new Rails application with: &lt;code&gt;rails -d postgresql argon&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Navigate to new Rails application directory. &lt;code&gt;cd argon&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Generate a new model to test with: &lt;code&gt;./script/generate model Argonista&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Edit and save the migration that was generated ( &lt;code&gt;db/migrate/001_create_argonistas.rb&lt;/code&gt; ) file with your favorite editor&amp;#8230;&lt;/li&gt;
	&lt;/ul&gt;


&lt;pre&gt;&lt;code&gt;
  class CreateArgonistas &amp;lt; ActiveRecord::Migration
    def self.up
      create_table :argonistas do |t|
        t.column :name, :string
        t.column :blog_url, :string
      end
    end

    def self.down
      drop_table :argonistas
    end
  end
&lt;/code&gt;&lt;/pre&gt;

	&lt;ul&gt;
	&lt;li&gt;Edit &lt;code&gt;config/database.yml&lt;/code&gt; to look like the following&amp;#8230; you&amp;#8217;ll notice that we don&amp;#8217;t need to supply a username or password.&lt;/li&gt;
	&lt;/ul&gt;


&lt;pre&gt;&lt;code&gt;
  development:
    adapter: postgresql
    database: argon_development

  test:
    adapter: postgresql 
    database: argon_test

  production:
    adapter: postgresql
    database: argon_production
&lt;/code&gt;&lt;/pre&gt;

* Run the migration with: &lt;code&gt;rake db:migrate&lt;/code&gt;
&lt;pre&gt;&lt;code&gt;
  $ rake db:migrate
  (in /Users/allisonbeckwith/development/argon)
  == CreateArgonistas: migrating ================================================
  -- create_table(:argonistas)
  NOTICE:  CREATE TABLE will create implicit sequence "argonistas_id_seq" for serial column "argonistas.id" 
  NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "argonistas_pkey" for table "argonistas" 
     -&amp;gt; 0.0399s
  == CreateArgonistas: migrated (0.0402s) =======================================
&lt;/code&gt;&lt;/pre&gt;

* Test your new model from console
&lt;pre&gt;&lt;code&gt;
  $ ./script/console 
  Loading development environment.
  &amp;gt;&amp;gt; a = Argonista.new
  =&amp;gt; #&amp;lt;Argonista:0x24569dc @attributes={"name"=&amp;gt;nil, "blog_url"=&amp;gt;nil}, @new_record=true&amp;gt;
  &amp;gt;&amp;gt; a.name = 'Robby'
  =&amp;gt; "Robby" 
  &amp;gt;&amp;gt; a.blog_url = 'http://www.robbyonrails.com'
  =&amp;gt; "http://www.robbyonrails.com" 
  &amp;gt;&amp;gt; a.save
  =&amp;gt; true
  &amp;gt;&amp;gt; exit
&lt;/code&gt;&lt;/pre&gt;

* Great, let&amp;#8217;s go look at our database table&amp;#8230;
&lt;pre&gt;&lt;code&gt;
  $ psql argon_development
  Welcome to psql 8.1.3, the PostgreSQL interactive terminal.

  Type:  \copyright for distribution terms
         \h for help with SQL commands
         \? for help with psql commands
         \g or terminate with semicolon to execute query
         \q to quit

  argon_development=# SELECT * FROM argonistas;
   id | name  |          blog_url           
  ----+-------+-----------------------------
    1 | Robby | http://www.robbyonrails.com
  (1 row)
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;There we go, we&amp;#8217;ve setup Ruby, Rails, and PostgreSQL on a brand new Intel MacBook without breaking a sweat!&lt;/p&gt;


	&lt;h3&gt;Extra Goodies&lt;/h3&gt;


	&lt;ul&gt;
	&lt;li&gt;Subversion: &lt;code&gt;sudo port install subversion&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Lighttpd: &lt;code&gt;sudo port install lighttpd&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;ImageMagick: &lt;code&gt;sudo port install ImageMagick&lt;/code&gt; (known to take a while&amp;#8230;)&lt;/li&gt;
		&lt;li&gt;GraphicsMagick: &lt;code&gt;sudo port install GraphicsMagick&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Install the rmagick gem: &lt;code&gt;sudo gem install rmagick&lt;/code&gt;&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;Have fun!&lt;/p&gt;</description>
      <pubDate>Mon, 29 May 2006 09:46:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6faf4e72-89d7-433c-8e6a-059509001562</guid>
      <author>Robby Russell</author>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx</link>
      <category>Ruby on Rails</category>
      <category>Ruby</category>
      <category>Programming</category>
      <category>PostgreSQL</category>
      <category>PLANET ARGON</category>
      <category>osx</category>
      <category>tutorial</category>
      <category>postgresql</category>
      <category>rubyonrails</category>
      <category>ruby</category>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Manjoor</title>
      <description>&lt;p&gt;mail me at &lt;a href="mailto:manzoor@aboutd.com" rel="nofollow"&gt;manzoor@aboutd.com&lt;/a&gt; phone me at +91-9829298623
india. i wat ur mail or phone&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jul 2006 06:00:30 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:471c840b-9a3b-4fa1-b7d9-87a7e9453704</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-18788</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Manjoor</title>
      <description>&lt;p&gt;hi&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jul 2006 05:59:03 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:dc98afdc-2598-4ff9-bb54-ffe9ec5789b6</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-18786</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Manjoor</title>
      <description>&lt;p&gt;hi isr i am manjoor alihere i want asoftware Cd of postgreSQl version 8.1.3
sir plz help me to run my project to it because it uninstall on my PC
           your friend 
           Er. Manjoor Ali&lt;/p&gt;</description>
      <pubDate>Thu, 13 Jul 2006 05:58:26 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:ee04c202-a69c-4a21-939e-c0ad31b57ea3</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-18785</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Dan B</title>
      <description>&lt;p&gt;Nice writeup.
I&amp;#8217;m having problems with getting ruby and postgresql installed.  They both depend on readline and darwinports cannot install readline:&lt;/p&gt;


	&lt;p&gt;mac:~ mac$ sudo port install readline
Password:&lt;/p&gt;


	&lt;p&gt;-&amp;gt;  Fetching readline
-&amp;gt;  Attempting to fetch readline51-001 from
ftp://ftp.cwru.edu/pub/bash/readline-5.1-patches/
-&amp;gt;  Attempting to fetch readline51-001 from
&lt;a href="http://distfiles-od.opendarwin.org/" rel="nofollow"&gt;http://distfiles-od.opendarwin.org/&lt;/a&gt;
-&amp;gt;  Attempting to fetch readline51-001 from
&lt;a href="http://distfiles-msn.opendarwin.org/" rel="nofollow"&gt;http://distfiles-msn.opendarwin.org/&lt;/a&gt;
-&amp;gt;  Attempting to fetch readline51-001 from
&lt;a href="http://distfiles-bay13.opendarwin.org/" rel="nofollow"&gt;http://distfiles-bay13.opendarwin.org/&lt;/a&gt;
Error: Target com.apple.fetch returned: fetch failed
Error: /opt/local/bin/port: Status 1 encountered during processing.
mac:~ mac$&lt;/p&gt;


	&lt;p&gt;I did find a readline tar-ball here:
ftp://ftp.gnu.org/gnu/readline/readline-5.1.tar.gz&lt;/p&gt;


	&lt;p&gt;Is there any way I can graft it on to /opt/local so that ports [ ruby for example ],
which depend on it can get installed?&lt;/p&gt;


	&lt;p&gt;Thanks,
-Dan&lt;/p&gt;</description>
      <pubDate>Sun, 09 Jul 2006 16:05:47 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:ffb527f7-9c0b-4302-a6ec-eb8d6dc3ee75</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-16300</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Joe</title>
      <description>&lt;p&gt;Well, since it&amp;#8217;s aPple, why isn&amp;#8217;t it xCode?&lt;/p&gt;</description>
      <pubDate>Sun, 25 Jun 2006 15:19:03 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:0ce9ff98-b8f7-481d-a35f-102a21a20165</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-8711</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by chris</title>
      <description>&lt;p&gt;Thanks for the help.&lt;/p&gt;


	&lt;p&gt;Good stuff.&lt;/p&gt;</description>
      <pubDate>Sat, 24 Jun 2006 13:54:05 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:1ef907da-7555-4344-9e01-dfd15d191ce6</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-8387</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by zorph</title>
      <description>&lt;p&gt;Leaving out the username and password in database.yml caused an error when I tried to rake migrate. When I put the username and password back in, it migrated!
(I&amp;#8217;m setting up rails/postgresql on windows XP though)&lt;/p&gt;</description>
      <pubDate>Wed, 21 Jun 2006 21:28:18 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:aae2d3d5-5a5e-443e-a654-473f247633e5</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-7480</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Chris</title>
      <description>&lt;p&gt;For a new developer, this site is so useful. Tips like these that help me streamline my own forming processes. Thanks!&lt;/p&gt;</description>
      <pubDate>Wed, 14 Jun 2006 14:10:28 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:2e173e68-3bf9-4f59-b84f-951571ba24ba</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-5098</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Jim Greer</title>
      <description>&lt;p&gt;Works for me!&lt;/p&gt;</description>
      <pubDate>Tue, 06 Jun 2006 23:21:04 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:aa3d71ad-b936-4b6c-8394-b9e5a1c17eed</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-3297</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by David Salgado</title>
      <description>&lt;p&gt;Very useful article &amp;#8211; many thanks.&lt;/p&gt;


	&lt;p&gt;On my Powerbook running Panther, I got a complaint about autoconf versions when trying to do &amp;#8220;sudo port install ruby rb-rubygems&amp;#8221;.&lt;/p&gt;


	&lt;p&gt;To fix this, simply;&lt;/p&gt;


	&lt;pre&gt;&lt;code&gt;sudo port install autoconf
sudo port install ruby rb-rubygems&lt;/code&gt;&lt;/pre&gt;


	&lt;p&gt;Thanks again.&lt;/p&gt;


	&lt;p&gt;David&lt;/p&gt;</description>
      <pubDate>Sat, 03 Jun 2006 03:47:44 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:cfe1df74-d3d0-4d07-ac66-26f833a0b8b8</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-3089</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Al Hulaton</title>
      <description>&lt;p&gt;Very timely article. I just got a Macbook Pro and was about to muddle through the postgres install. Now I can just copy  your homework. Thanks!&lt;/p&gt;</description>
      <pubDate>Wed, 31 May 2006 09:40:42 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:c335979a-0cd3-43b2-a2f3-14c4d089348b</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-2808</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Jacob Harris</title>
      <description>&lt;p&gt;FYI, there was an issue where Postgresql would fight with iChat for shared memory when you attempted to do a video chat (it would get a signal fine from the iSight for preview, but then complain there was no signal when a chat is initiated). There is a fix on the Interwebs, but I figured I&amp;#8217;d let you know in case allisbe&amp;#8217;s iChat starts acting up.&lt;/p&gt;</description>
      <pubDate>Tue, 30 May 2006 14:02:36 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:6dc0ffd3-94bd-4f37-b36e-461c18057399</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-2721</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by David</title>
      <description>&lt;p&gt;Just a minor correction: It&amp;#8217;s spelled Xcode, not XCode.  Seriously, nobody calls you RObby, do they?&lt;/p&gt;</description>
      <pubDate>Tue, 30 May 2006 09:36:32 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:38cfa1f8-c97b-493a-be8e-bf2571512677</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-2702</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by Xenith</title>
      <description>&lt;p&gt;There&amp;#8217;s no need to recompile the postgres gem. You can pass the configure options straight to the gem using &lt;code&gt;--&lt;/code&gt; as so:&lt;/p&gt;


&lt;code&gt;sudo gem install postgres -- --with-pgsql-include=/opt/local/include/pgsql8 --with-pgsql-lib=/opt/local/lib/pgsql8&lt;/code&gt;</description>
      <pubDate>Mon, 29 May 2006 16:21:14 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:07f189ac-76a0-49a9-b754-21873bb08181</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-2611</link>
    </item>
    <item>
      <title>"Install Ruby, Rails, and PostgreSQL on OSX" by atmos</title>
      <description>&lt;p&gt;I did a similar writeup but did a few things differently. :)  You can check out my macbook pro how-to &lt;a href="http://www.atmos.org/2006/5/10/macbook-rails-howto" rel="nofollow"&gt;here&lt;/a&gt; .&lt;/p&gt;</description>
      <pubDate>Mon, 29 May 2006 11:30:27 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:56c7c8be-d365-4457-81a1-ecafc1810e46</guid>
      <link>http://www.robbyonrails.com/articles/2006/05/29/install-ruby-rails-and-postgresql-on-osx#comment-2588</link>
    </item>
  </channel>
</rss>
