<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.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>Ruby Asylum: Ruby, Ruby Gems, Rails and FastCGI Installation</title>
    <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>A place for those crazy about Ruby</description>
    <item>
      <title>Ruby, Ruby Gems, Rails and FastCGI Installation</title>
      <description>&lt;p&gt;A. Install Ruby (latest source package - &lt;a href="http://ruby-lang.org/en/20020102.html"&gt;http://ruby-lang.org/en/20020102.html&lt;/a&gt;):&lt;br /&gt;
&lt;code&gt;mkdir /root/setup&lt;br /&gt;
cd /root/setup &amp;&amp; wget ftp.ruby-lang.org/pub/ruby/ruby-1.8.4.tar.gz&lt;br /&gt;
tar -xvzf ruby-*&lt;br /&gt;
cd ruby-*&lt;br /&gt;
./configure &amp;&amp; make &amp;&amp; make install&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;B. Install Ruby Gems (latest version -  &lt;a href="http://rubyforge.org/frs/?group_id=126"&gt;http://rubyforge.org/frs/?group_id=126&lt;/a&gt;):&lt;br /&gt;
&lt;code&gt;cd /root/setup &amp;&amp; wget rubyforge.org/frs/download.php/5207/rubygems-0.8.11.tgz&lt;br /&gt;
tar -xvzf rubygems-*&lt;br /&gt;
cd rubygems-*&lt;br /&gt;
ruby setup.rb&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;C. Install Rails:&lt;br /&gt;
&lt;code&gt;gem install rails&lt;/code&gt;

&lt;p&gt;(Answer &lt;strong&gt;y&lt;/strong&gt; to all the dependancies)&lt;/p&gt;

&lt;p&gt;D. Install FCGI and FastCGI (sourced from &lt;a href="http://fastcgi.com/dist/"&gt;http://fastcgi.com/dist/&lt;/a&gt;):&lt;br /&gt;
&lt;code&gt;cd /root/setup &amp;&amp; wget fastcgi.com/dist/fcgi-2.4.0.tar.gz&lt;br /&gt;
tar -xvzf fcgi-2.4.0.tar.gz&lt;br /&gt;
cd fcgi-2.4.0&lt;br /&gt;
./configure &amp;&amp; make &amp;&amp; make install&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;cd /root/setup &amp;&amp; wget fastcgi.com/dist/mod_fastcgi-2.4.2.tar.gz&lt;br /&gt;
tar -xvzf mod_fastcgi-*&lt;br /&gt;
cd mod_fastcgi-*&lt;br /&gt;
/usr/local/apache/bin/apxs -o mod_fastcgi.so -c *.c&lt;br /&gt;
/usr/local/apache/bin/apxs -i -a -n fastcgi mod_fastcgi.so&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;E. Install Ruby Gems fcgi:&lt;br /&gt;
&lt;code&gt;gem install fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;F. Edit Apache config file:&lt;br /&gt;
&lt;code&gt;vi /etc/httpd/conf/httpd.conf&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Find the following (usually I do esc + / and enter SSLL to find this area in httpd.conf file):&lt;br /&gt;
&lt;pre style="font-size:11px"&gt;SSLLog      /usr/local/apache/logs/ssl_engine_log
SSLLogLevel info

&amp;lt;/IfModule&amp;gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Enter these lines under the ending &amp;lt;/IfModule&amp;gt; line:&lt;br /&gt;
&lt;pre style="font-size:11px"&gt;&amp;lt;IfModule mod_fastcgi.c&amp;gt;
    FastCgiIpcDir /tmp/fcgi_ipc/
    AddHandler fastcgi-script .fcgi
&amp;lt;/IfModule&amp;gt;&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Check for the fastcgi apache module entries:&lt;br /&gt;
&lt;code&gt;LoadModule fastcgi_module     libexec/mod_fastcgi.so&lt;/code&gt;&lt;br /&gt;
and&lt;br /&gt;
&lt;code&gt;AddModule mod_fastcgi.c&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;G. Make the /tmp/fcgi_ipc/ directory and setup Apache permissions for it:&lt;br /&gt;
&lt;code&gt;mkdir -p /tmp/fcgi_ipc&lt;br /&gt;
chown nobody:nobody /tmp/fcgi_ipc -R&lt;br /&gt;
chmod -755 /tmp/fcgi_ipc -R&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;H. Install MySQL for Ruby:&lt;br /&gt;
&lt;code&gt;gem install mysql&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Select option 3 for the installation process.&lt;/p&gt;

&lt;p&gt;I. Install PostGRESQL for Ruby (if you have PostGRESQL on your cPanel Dedicated server):&lt;br /&gt;
&lt;code&gt;gem install postgres&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;J. Restart Apache:&lt;br /&gt;
&lt;code&gt;/etc/init.d/httpd stop&lt;br /&gt;
killall -9 httpd&lt;br /&gt;
/etc/init.d/httpd startssl&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;K. Additional Information:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Please note that &lt;span style="color:red"&gt;user&lt;/span&gt; and &lt;span style="color:red"&gt;appname&lt;/span&gt; should be replaced by the specific account's cPanel username and the application folder name you want to use for your Rails' application.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;a. Make sure Apache can find dispatch.fcgi&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Edit your Rails application’s &lt;strong&gt;/home/user/appname/public/.htaccess&lt;/strong&gt; and change the following lines to make sure that the Rails app is using FastCGI.&lt;/p&gt;

&lt;p&gt;Change:&lt;br /&gt;
&lt;code&gt;RewriteRule ^(.*)$ dispatch.cgi?$1 [QSA,L]&lt;br /&gt;
to&lt;br /&gt;
RewriteRule ^(.*)$ dispatch.fcgi?$1 [QSA,L]&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;b. Make sure that &lt;strong&gt;dispatch.fcgi&lt;/strong&gt; is executable&lt;/em&gt;&lt;br /&gt;
&lt;code&gt;chmod 755 /home/user/appname/public/dispatch.fcgi&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;c. For existing applications:&lt;/p&gt;

&lt;p&gt;Make sure that your app lives in &lt;strong&gt;/home/user/appname&lt;/strong&gt;.  Add the following lines in your Rails application’s &lt;strong&gt;/home/user/appname/public/dispatch.fcgi&lt;/strong&gt; file:&lt;br /&gt;
&lt;code&gt;require 'fcgi'&lt;br /&gt;
require 'rubygems'&lt;br /&gt;
require_gem 'fcgi'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;d. For a new account, you can test Rails doing the following:&lt;br /&gt;
&lt;code&gt;cd /home/user&lt;br /&gt;
rails appname&lt;br /&gt;
cd appname&lt;br /&gt;
ruby script/generate controller test&lt;br /&gt;
cd /home/user/public_html&lt;br /&gt;
ln -s ../appname/public appname&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;Navigate to &lt;a href="http://domain.com/appname"&gt;http://domain.com/appname/&lt;/a&gt; and you should see a “Congratulations” page!&lt;/p&gt;</description>
      <pubDate>Sat, 03 Jun 2006 21:34:00 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:30edc538-5117-4a2b-b7d4-5919a4ed0a13</guid>
      <author>Miraenda</author>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial</link>
      <category>Dedicated Server Tutorials</category>
      <trackback:ping>http://www.rubyasylum.com/articles/trackback/7</trackback:ping>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Neu Eingetroffen</title>
      <description>Thank you ,it's really useful. </description>
      <pubDate>Wed, 01 Sep 2010 00:36:55 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:73328b5d-8d94-4cc9-b75f-9b181bec2328</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-3009</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by replica watches</title>
      <description>This article is really great, strong support
Rolex Submariner
&lt;a href='http://www.topluxwatch.com/' rel="nofollow"&gt;http://www.topluxwatch.com/&lt;/a&gt;</description>
      <pubDate>Sun, 29 Aug 2010 20:51:17 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:3db1d2c9-4f0e-4f02-95ec-0d85e4bfd6a1</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2952</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by may</title>
      <description>This article is very good, thank you for sharing!
&lt;a href='http://dressclothingblog.blog.com/' rel="nofollow"&gt;http://dressclothingblog.blog.com/&lt;/a&gt;
&lt;a href='http://mickeyli.vox.com/' rel="nofollow"&gt;http://mickeyli.vox.com/&lt;/a&gt;</description>
      <pubDate>Mon, 23 Aug 2010 00:19:41 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:5ac3d5ee-b61b-4843-affb-2be213814346</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2883</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by i9 quad band phone</title>
      <description>I really want learn it better.
</description>
      <pubDate>Fri, 20 Aug 2010 00:11:35 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:c69de17b-0756-4345-9f0b-36787aa1fc33</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2822</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by i68 quad band</title>
      <description>Thank you for sharing
</description>
      <pubDate>Fri, 20 Aug 2010 00:07:34 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:2ce647df-25bf-46d2-a8c0-579b9fc839b0</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2821</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by pandora jewelry</title>
      <description>it was very informative. I look forward in reading more of your work. Also, I made sure to bookmark your website so I can come back later. I enjoyed every moment of reading it </description>
      <pubDate>Wed, 18 Aug 2010 02:53:58 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:5a3d2d82-f5fd-4c9b-b503-e801bb833790</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2782</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by gemstone pendant</title>
      <description>This is a great post; it was very informative. I look forward in reading more of your work. Also, I made sure to bookmark your website so I can come back later. I enjoyed every moment of reading it
</description>
      <pubDate>Thu, 12 Aug 2010 19:04:55 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:30d9253f-0f51-4bc3-939f-09ddfcc32609</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2738</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by amethyst rings</title>
      <description>You have got some great posts in your blog. Keep up with the good work.
</description>
      <pubDate>Thu, 12 Aug 2010 19:04:07 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ae79bf04-7776-46d3-b140-265b9489beb8</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2737</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Red Bull Hats</title>
      <description>Fantastic Read! Looking forward to more! Bookmarked the site and will be back again!</description>
      <pubDate>Wed, 11 Aug 2010 00:04:09 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:49c1d622-b078-4a6a-a123-b071d3438675</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2699</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by wholesale hats</title>
      <description>Perhaps this is one of the most interesting blogs that I have ever seen. Interesting article, Funny comment. Keep it 

up! </description>
      <pubDate>Wed, 11 Aug 2010 00:03:35 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:abb1f3a8-9810-446d-860f-936cbc66610b</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2698</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by may</title>
      <description>Thanks for the great post. It reminds me that I have to bring more structure in to my blogging. Your blog is very interesting. Please let me know how to go for your rss blog.
&lt;a href='http://www.blogigo.com/Dress_Clothing_Blog' rel="nofollow"&gt;http://www.blogigo.com/Dress_Clothing_Blog&lt;/a&gt;</description>
      <pubDate>Thu, 05 Aug 2010 02:00:55 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:30b2ba62-8d29-45b5-97b9-0f9abe44efef</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2599</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by replica watches</title>
      <description>&lt;a href='http://www.rep1ica.com/GoodsBrand/Corum-35.html' rel="nofollow"&gt;http://www.rep1ica.com/GoodsBrand/Corum-35.html&lt;/a&gt;
&lt;a href='http://www.rep1ica.com/GoodsBrand/Daniel-Roth-36.html' rel="nofollow"&gt;http://www.rep1ica.com/GoodsBrand/Daniel-Roth-36.html&lt;/a&gt;
&lt;a href='http://www.rep1ica.com/GoodsBrand/Ebel-37.html' rel="nofollow"&gt;http://www.rep1ica.com/GoodsBrand/Ebel-37.html&lt;/a&gt;
&lt;a href='http://www.rep1ica.com/GoodsBrand/Franck-Muller-38.html' rel="nofollow"&gt;http://www.rep1ica.com/GoodsBrand/Franck-Muller-38.html&lt;/a&gt;
&lt;a href='http://www.rep1ica.com/GoodsBrand/Gerald-Genta-39.html' rel="nofollow"&gt;http://www.rep1ica.com/GoodsBrand/Gerald-Genta-39.html&lt;/a&gt;
</description>
      <pubDate>Tue, 27 Jul 2010 01:18:20 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:234d0886-4f1a-4405-94ae-4875fc0757b5</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2504</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by cheap jersey</title>
      <description>thanks… I’ve been bookmarking them for a while now and just decided to create a post to provide them to others…
</description>
      <pubDate>Mon, 26 Jul 2010 02:55:14 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ed8c6da1-5113-4938-821e-04a77c592eb9</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2486</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by MBT Sneaker,Anti Shoes</title>
      <description>MBT Sneaker,Anti Shoes</description>
      <pubDate>Thu, 15 Jul 2010 02:19:50 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:4570cb64-d50a-41c0-aa26-bf6fcf72904b</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2365</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by cheap UGG Boots outlet</title>
      <description>cheap UGG Boots outlet</description>
      <pubDate>Thu, 15 Jul 2010 02:19:36 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:7b736af1-416d-470a-bacd-b3120eca1f98</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2364</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Supra Shoes</title>
      <description>Supra Shoes</description>
      <pubDate>Thu, 15 Jul 2010 02:19:21 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:21843b64-45a7-456b-8332-0dfe8683608e</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2363</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Chanel 2.55 handbags</title>
      <description>Chanel 2.55 handbags</description>
      <pubDate>Thu, 15 Jul 2010 02:19:08 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:d887f18e-7cea-483f-a7e3-c193313dbb3c</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2362</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by louis vuitton bags</title>
      <description>cheap lv handbags on sale</description>
      <pubDate>Thu, 15 Jul 2010 02:18:52 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:57a68b66-4569-483f-acd0-0487ba666dc9</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2361</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Coach outlet</title>
      <description>Thanks for a great time visiting your site. It's really a pleasure knowing a site like this packed with great information.</description>
      <pubDate>Thu, 15 Jul 2010 02:18:28 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:92d979a5-c9bc-4182-9222-be8220cc4cc1</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2360</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Gucci Shoes</title>
      <description>Nice job, it’s a great post. The info is good to know! </description>
      <pubDate>Tue, 13 Jul 2010 00:18:55 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:ac72be8c-2538-4527-9da5-ae356cf98d29</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2292</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by fuel saver</title>
      <description>Thank you for the info, it really helps.</description>
      <pubDate>Thu, 08 Jul 2010 02:00:30 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:3b79f237-09e6-48cf-ba22-2638b1fc3014</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2258</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by coach bag</title>
      <description>Thanks for a great time visiting your site. It's really a pleasure knowing a site like this packed with great information.
</description>
      <pubDate>Thu, 01 Jul 2010 01:25:22 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:7ee18f79-4199-4aea-b361-269981cbc380</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2173</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by cheap jordans</title>
      <description>Cool comments. Big thanks for all visitors and for author. I love this site!!!
</description>
      <pubDate>Wed, 30 Jun 2010 01:30:31 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:1c3393f3-6cb7-4196-9e9a-2f13842e820b</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2156</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by Bvlgari jewelry</title>
      <description>Thanks for a great time visiting your site. It's really a pleasure knowing a site like this packed with great information.
</description>
      <pubDate>Mon, 28 Jun 2010 02:04:24 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:9a51f920-af93-4249-9de6-befa81aae5f8</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2123</link>
    </item>
    <item>
      <title>"Ruby, Ruby Gems, Rails and FastCGI Installation" by China wedding dress</title>
      <description>&lt;a href='http://www.casual-mall.com' rel="nofollow"&gt;http://www.casual-mall.com&lt;/a&gt;
&lt;a href='http://www.mycasualmall.com' rel="nofollow"&gt;http://www.mycasualmall.com&lt;/a&gt;
&lt;a href='http://www.holydress.com' rel="nofollow"&gt;http://www.holydress.com&lt;/a&gt;
&lt;a href='http://www.fuzhou-traffic.com' rel="nofollow"&gt;http://www.fuzhou-traffic.com&lt;/a&gt;
&lt;a href='http://www.brands-center.com' rel="nofollow"&gt;http://www.brands-center.com&lt;/a&gt;
</description>
      <pubDate>Thu, 24 Jun 2010 02:42:48 -0700</pubDate>
      <guid isPermaLink="false">urn:uuid:213dbd03-bb69-4ceb-a66b-02f7f641106d</guid>
      <link>http://www.rubyasylum.com/articles/2006/06/03/ruby-ruby-gems-rails-and-fastcgi-installation-tutorial#comment-2078</link>
    </item>
  </channel>
</rss>
