<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Installing and managing edge Rails</title>
	<atom:link href="http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/</link>
	<description></description>
	<pubDate>Sun, 07 Sep 2008 20:56:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Coward</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-382371</link>
		<dc:creator>Coward</dc:creator>
		<pubDate>Sat, 15 Sep 2007 14:38:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-382371</guid>
		<description>I've installed edge rails, but not seeing it being used. How is the vendor/rails path added? I'm using fast cgi. I have two rails directories, one with edge, and one without. They both display the same result with rails -v. I also added a 'raise' to to_xml, and it didn't see it. I'm assuming rails -v will tell me the build number.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve installed edge rails, but not seeing it being used. How is the vendor/rails path added? I&#8217;m using fast cgi. I have two rails directories, one with edge, and one without. They both display the same result with rails -v. I also added a &#8216;raise&#8217; to to_xml, and it didn&#8217;t see it. I&#8217;m assuming rails -v will tell me the build number.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jabberwock</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-228049</link>
		<dc:creator>Jabberwock</dc:creator>
		<pubDate>Wed, 18 Apr 2007 20:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-228049</guid>
		<description>A more user friendly method of setting svn:externals is:
&lt;pre&gt;&lt;code class="html"&gt;svn propedit svn:externals vendor/&lt;/code&gt;&lt;/pre&gt;

This will fire up whatever editor is stored in $SVN_EDITOR, where you can add your  externals. Once you save and quit the editor, the new property values will be set.</description>
		<content:encoded><![CDATA[<p>A more user friendly method of setting svn:externals is:</p>
<pre><code class="html">svn propedit svn:externals vendor/</code></pre>
<p>This will fire up whatever editor is stored in $SVN_EDITOR, where you can add your  externals. Once you save and quit the editor, the new property values will be set.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: timlucas</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-161598</link>
		<dc:creator>timlucas</dc:creator>
		<pubDate>Wed, 24 Jan 2007 00:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-161598</guid>
		<description>stormville: sure, that will work, as long as your project isn't in SVN itself... otherwise you're checking out the Rails repo in the middle of your own repo. It's a good point though, doing &lt;code&gt;ruby vendor/rails/railties/bin/rails .&lt;/code&gt; from your vendor directory... though it could leave some unnecessary folders lying around from the previous ver of rails.</description>
		<content:encoded><![CDATA[<p>stormville: sure, that will work, as long as your project isn&#8217;t in SVN itself&#8230; otherwise you&#8217;re checking out the Rails repo in the middle of your own repo. It&#8217;s a good point though, doing <code>ruby vendor/rails/railties/bin/rails .</code> from your vendor directory&#8230; though it could leave some unnecessary folders lying around from the previous ver of rails.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: stormville</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-161469</link>
		<dc:creator>stormville</dc:creator>
		<pubDate>Tue, 23 Jan 2007 20:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-161469</guid>
		<description>I am a windows user and this worked for me:
rails cutting_edge_project 
cd cutting_edge_project 
svn co http://dev.rubyonrails.org/svn/rails/trunk vendor/rails
ruby vendor/rails/railties/bin/rails . 
ruby script/server</description>
		<content:encoded><![CDATA[<p>I am a windows user and this worked for me:<br />
rails cutting_edge_project<br />
cd cutting_edge_project<br />
svn co <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a> vendor/rails<br />
ruby vendor/rails/railties/bin/rails .<br />
ruby script/server</p>]]></content:encoded>
	</item>
	<item>
		<title>By: timlucas</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-139165</link>
		<dc:creator>timlucas</dc:creator>
		<pubDate>Wed, 27 Dec 2006 10:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-139165</guid>
		<description>Sorry it took so long to edit this article. It should indeed read:

&lt;code&gt;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk" vendor&lt;/code&gt;

For an updated technique on managing edge Rails you can check out my more recent article: &lt;a href="http://toolmantim.com/article/2006/12/7/a_clean_slate_edge_rails_recipe" rel="nofollow"&gt;A clean slate, Edge Rails recipe&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Sorry it took so long to edit this article. It should indeed read:</p>
<code>svn propset svn:externals "rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a>" vendor</code>
<p>For an updated technique on managing edge Rails you can check out my more recent article: <a href="http://toolmantim.com/article/2006/12/7/a_clean_slate_edge_rails_recipe" rel="nofollow">A clean slate, Edge Rails recipe</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: wilfordbrimley</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-139149</link>
		<dc:creator>wilfordbrimley</dc:creator>
		<pubDate>Wed, 27 Dec 2006 10:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-139149</guid>
		<description>ack. 

it should read:

&lt;code&gt;svn propset svn:externals \"rails http://dev.rubyonrails.org/svn/rails/trunk\" vendor&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>ack. </p>
<p>it should read:</p>
<code>svn propset svn:externals \"rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a>\" vendor</code>]]></content:encoded>
	</item>
	<item>
		<title>By: wilfordbrimley</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-139142</link>
		<dc:creator>wilfordbrimley</dc:creator>
		<pubDate>Wed, 27 Dec 2006 10:01:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-139142</guid>
		<description>&lt;pre&gt;&lt;code class="html"&gt;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk" vendor&lt;/code&gt;&lt;/pre&gt;

"the 'rails' in the beginning of the quoted string sets the directory"
-jhubert</description>
		<content:encoded><![CDATA[<pre><code class="html">svn propset svn:externals "rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a>" vendor</code></pre>
<p>&#8220;the &#8216;rails&#8217; in the beginning of the quoted string sets the directory&#8221;<br />
-jhubert</p>]]></content:encoded>
	</item>
	<item>
		<title>By: wilford brimley</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-139135</link>
		<dc:creator>wilford brimley</dc:creator>
		<pubDate>Wed, 27 Dec 2006 09:56:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-139135</guid>
		<description>i can confirm that problem

&lt;pre&gt;&lt;code class="html"&gt;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk vendor/rails" vendor&lt;/code&gt;&lt;/pre&gt;

causes: 

&lt;pre&gt;&lt;code class="html"&gt;svn: Error parsing svn:externals property on 'vendor': 'rails http://dev.rubyonrails.org/svn/rails/trunk vendor/rails&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>i can confirm that problem</p>
<pre><code class="html">svn propset svn:externals "rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a> vendor/rails" vendor</code></pre>
<p>causes: </p>
<pre><code class="html">svn: Error parsing svn:externals property on 'vendor': 'rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a> vendor/rails</code></pre>]]></content:encoded>
	</item>
	<item>
		<title>By: dwormuth</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-115204</link>
		<dc:creator>dwormuth</dc:creator>
		<pubDate>Sun, 03 Dec 2006 19:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-115204</guid>
		<description>Grrrr, the second string should be:

&#60;code&#62;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk" vendor/rails&#60;/code&#62;

PS, it would be nice to add a "preview" option to the posts :)</description>
		<content:encoded><![CDATA[<p>Grrrr, the second string should be:</p>
<p>&lt;code&gt;svn propset svn:externals &#8220;rails <a href="http://dev.rubyonrails.org/svn/rails/trunk&#8221" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk&#8221</a>; vendor/rails&lt;/code&gt;</p>
<p>PS, it would be nice to add a &#8220;preview&#8221; option to the posts :)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: dwormuth</title>
		<link>http://www.sitepoint.com/blogs/2006/07/11/installing-and-managing-edge-rails/#comment-115198</link>
		<dc:creator>dwormuth</dc:creator>
		<pubDate>Sun, 03 Dec 2006 19:34:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=1623#comment-115198</guid>
		<description>Trying this again:

I think the string:

&#60;code&#62;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk vendor/rails" vendor &#60;/code&#62;

is malformed. I could only get it to work with the following:

&#60;code&#62;svn propset svn:externals "rails http://dev.rubyonrails.org/svn/rails/trunk vendor/rails" vendor &#60;/code&#62;

I'm new to svn, is that correct, or did I do something bad?</description>
		<content:encoded><![CDATA[<p>Trying this again:</p>
<p>I think the string:</p>
<p>&lt;code&gt;svn propset svn:externals &#8220;rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a> vendor/rails&#8221; vendor &lt;/code&gt;</p>
<p>is malformed. I could only get it to work with the following:</p>
<p>&lt;code&gt;svn propset svn:externals &#8220;rails <a href="http://dev.rubyonrails.org/svn/rails/trunk" rel="nofollow">http://dev.rubyonrails.org/svn/rails/trunk</a> vendor/rails&#8221; vendor &lt;/code&gt;</p>
<p>I&#8217;m new to svn, is that correct, or did I do something bad?</p>]]></content:encoded>
	</item>
</channel>
</rss>
