<?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>Kurinchi Blogger Scribbles ... &#187; Ruby</title>
	<atom:link href="http://kurinchilamp.kurinchilion.com/category/ruby/feed" rel="self" type="application/rss+xml" />
	<link>http://kurinchilamp.kurinchilion.com</link>
	<description>On Open Source Technologies</description>
	<lastBuildDate>Mon, 02 Jan 2012 06:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Install Ruby, Rails, RadRails on CentOS, Fedora</title>
		<link>http://kurinchilamp.kurinchilion.com/2009/05/install-ruby-rails-radrails-on-centos-fedora.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2009/05/install-ruby-rails-radrails-on-centos-fedora.html#comments</comments>
		<pubDate>Sun, 03 May 2009 20:47:38 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[RadRails]]></category>
		<category><![CDATA[Rail]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby gems]]></category>
		<category><![CDATA[ruby IDE]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=285</guid>
		<description><![CDATA[Installing Ruby, Rails on CentOS Installing Ruby on Rails involves using yum to first install ruby and then to install ruby docs, irba followed by rails installation. $ yum install -y ruby $ yum install -y ruby-devel ruby-docs ruby-ri ruby-irb ruby-rdoc $ gem install rails &#8211;include-dependencies To install Ruby Gems $ wget http://rubyforge.org/frs/download.php/45905/rubygems-1.3.1.tgz $ tar [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Installing Ruby, Rails on CentOS</strong><br />
Installing Ruby on Rails involves using yum to first install ruby and then to install ruby docs, irba followed by rails installation.<br />
<strong>$ yum install -y ruby<br />
$ yum install -y ruby-devel ruby-docs ruby-ri ruby-irb ruby-rdoc<br />
$ gem install rails &#8211;include-dependencies</strong><span id="more-285"></span></p>
<p><em>To install Ruby Gems</em><br />
<strong>$ wget http://rubyforge.org/frs/download.php/45905/rubygems-1.3.1.tgz<br />
$ tar xvf rubygems-1.3.1.tgz<br />
$ cd rubygems-1.3.1<br />
$ ruby setup.rb</strong></p>
<p><strong>To install Radrails IDE</strong><br />
RadRails is one of the tools that can be used to develop scripting languages like Ruby, PHP. Thought it is preferred to hand  code programs, knowledge of using an IDE comes in handy at times. The following steps should help you install <em>RadRails on CentOS</em></p>
<p><strong>$ wget http://prdownloads.sourceforge.net/radrails/radrails-0.6.2-linux.zip?download</strong></p>
<p>Extract the files and then you can open the RadRails by executing the command<br />
<strong>$ ./radrails/radrails</strong></p>
<p>To check if ruby, rails is installed you can check their versions numbers to ensure that it got installed.</p>
<p>$ ruby -v<br />
$ rails -v </p>
<p>Hope this gives a good installation intro for Ruby on Rails. Hope it saved your some time</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2009/05/install-ruby-rails-radrails-on-centos-fedora.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repository: How to configure yum repos?</title>
		<link>http://kurinchilamp.kurinchilion.com/2009/05/repository-yum-repos.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2009/05/repository-yum-repos.html#comments</comments>
		<pubDate>Sat, 02 May 2009 21:17:19 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[dynamic repos]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[repo]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[ruby repo]]></category>
		<category><![CDATA[rubyforge]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum repo]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=292</guid>
		<description><![CDATA[To make automatic download and installation by using &#8220;yum&#8221; you can create/add the repo to /etc/yum.repos.d/. Then create file with .repo extension to do an automatic yum update at later stage vi /etc/yum.repos.d/reponame.repo Below is the content to RubyForge yum repo. Save the content as &#8220;rubyforge.repos&#8221; under &#8220;/etc/yum.repos.d&#8221; [rubyforge] name=RubyForge baseurl=http://rubyworks.rubyforge.org/redhat/$releasever/RPMS/$basearch enabled=1 gpgcheck=1 gpgkey=http://rubyworks.rubyforge.org/RubyWorks.GPG.key priority=1]]></description>
			<content:encoded><![CDATA[<p>To make automatic download and installation by using &#8220;yum&#8221; you can create/add the repo to <strong>/etc/yum.repos.d/. </strong></p>
<p>Then create file with .repo extension to do an automatic yum update at later stage<br />
<strong>vi /etc/yum.repos.d/reponame.repo</strong></p>
<p>Below is the content to RubyForge yum repo. Save the content as <strong>&#8220;rubyforge.repos&#8221;</strong> under <strong>&#8220;/etc/yum.repos.d&#8221;</strong></p>
<p>[rubyforge]<br />
name=RubyForge<br />
baseurl=http://rubyworks.rubyforge.org/redhat/$releasever/RPMS/$basearch<br />
enabled=1<br />
gpgcheck=1<br />
gpgkey=http://rubyworks.rubyforge.org/RubyWorks.GPG.key<br />
priority=1</p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2009/05/repository-yum-repos.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

