<?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>Managed Chaos &#187; Ruby n Rails</title>
	<atom:link href="http://blogs.agilefaqs.com/category/ruby-n-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.agilefaqs.com</link>
	<description>Naresh Jain&#039;s Random Thoughts on Software Development and Adventure Sports</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Proxy Issues while installing Rails Plugins</title>
		<link>http://blogs.agilefaqs.com/2008/04/23/proxy-issues-while-installing-rails-plugins/</link>
		<comments>http://blogs.agilefaqs.com/2008/04/23/proxy-issues-while-installing-rails-plugins/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 09:51:32 +0000</pubDate>
		<dc:creator>Naresh Jain</dc:creator>
				<category><![CDATA[Ruby n Rails]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Proxy Settings]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://blogs.agilefaqs.com/2008/04/23/proxy-issues-while-installing-rails-plugins/</guid>
		<description><![CDATA[I&#8217;m trying to install restful_authentication plugin on a rails project on a Windows platform. Every time I try &#8220;ruby script\plugin install http://svn.techno-weenie.net/projects/plugins/restful_authentication/&#8221; I get the following error: Plugin not found: ["http://svn.techno-weenie.net/projects/plugins/restful_authentication/"] This really does not help. When you pass the verbose parameter to the install command, it give a more meaningful error message. ruby script\plugin [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to install restful_authentication plugin on a rails project on a Windows platform.</p>
<p>Every time I try &#8220;ruby  script\plugin install http://svn.techno-weenie.net/projects/plugins/restful_authentication/&#8221;</p>
<p>I get the following error:</p>
<p>Plugin not found: ["http://svn.techno-weenie.net/projects/plugins/restful_authentication/"]</p>
<p>This really does not help. When you pass the verbose parameter to the install command, it give a more meaningful error message.</p>
<p>ruby  script\plugin -v install http://svn.techno-weenie.net/projects/plugins/restful_authentication/<br />
Plugins will be installed using http fetching from &#8216;http://svn.techno-weenie.net/projects/plugins/restful_authentication/&#8217;<br />
Plugin not found: ["http://svn.techno-weenie.net/projects/plugins/restful_authentication/"]<br />
# openuri::httperror: /openuri::httperror:</p>
<p>When you search for this error, it becomes very clear that its a proxy issue. Following is the solution given by <span class="name">                         Nick Chistyakov</span></p>
<p>This `407 Proxy Authentication Required&#8217; happens because along with proxy address and proxy port two additional params must by supplied:<br />
1. user<br />
2. password</p>
<p>In open-uri.rb (under \ruby\lib\ruby\1.8 folder), method OpenURI.open_http, line 216 there is a record:<br />
klass = Net::HTTP::Proxy(proxy.host, proxy.port)</p>
<p>The full signature of that Net::HTTP::Proxy(&#8230;) method is:<br />
def Net::HTTP.Proxy(p_addr, p_port = nil, p_user = nil, p_pass = nil)<br />
So just add proxy.user, proxy.password:</p>
<p>klass = Net::HTTP::Proxy(proxy.host, proxy.port, proxy.user, proxy.password)</p>
<p>Note that your environment variable http_proxy must be set in a way it described above (http_proxy=http://user:password@host:port)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.agilefaqs.com/2008/04/23/proxy-issues-while-installing-rails-plugins/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install Subversion on a shared host</title>
		<link>http://blogs.agilefaqs.com/2008/03/21/how-to-install-subversion-on-a-shared-host/</link>
		<comments>http://blogs.agilefaqs.com/2008/03/21/how-to-install-subversion-on-a-shared-host/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 11:47:10 +0000</pubDate>
		<dc:creator>Naresh Jain</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Ruby n Rails]]></category>

		<guid isPermaLink="false">http://blogs.agilefaqs.com/2008/03/21/how-to-install-subversion-on-a-shared-host/</guid>
		<description><![CDATA[I use http://bluehost.com for hosting all my sites. So far I&#8217;m very happy with their service. The only thing I wished they provided was subversion on the servers. But they don&#8217;t. So I decided to find ways of installing subversion on a shared host. While researching about this about, I stumbled upon this excellent post [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://bluehost.com" target="_blank">http://bluehost.com</a> for hosting all my sites. So far I&#8217;m very happy with their service. The only thing I wished they provided was subversion on the servers. But they don&#8217;t.</p>
<p>So I decided to find ways of installing subversion on a shared host. While researching about this about, I stumbled upon this excellent post <a href="http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/" target="_blank">http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/</a> by Joe Maller where is explains step by step how to install SVN on a shared host.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.agilefaqs.com/2008/03/21/how-to-install-subversion-on-a-shared-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

