<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Update: Using Capistrano 2.5 to deploy Rails 2.3 to Webfaction</title>
	<atom:link href="http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/</link>
	<description>Everything you&#039;ve ever thought, but never had the balls to say.</description>
	<lastBuildDate>Tue, 22 Nov 2011 07:17:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John Wright</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30179</link>
		<dc:creator>John Wright</dc:creator>
		<pubDate>Fri, 19 Feb 2010 04:53:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30179</guid>
		<description>@ryan

Yes it was symbolic links.  I resolved this by copying over the uploaded files to the new releases directory before recreating the symbolic link in the Capfile.

Thanks for the idea!</description>
		<content:encoded><![CDATA[<p>@ryan</p>
<p>Yes it was symbolic links.  I resolved this by copying over the uploaded files to the new releases directory before recreating the symbolic link in the Capfile.</p>
<p>Thanks for the idea!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryankanno</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30175</link>
		<dc:creator>ryankanno</dc:creator>
		<pubDate>Thu, 11 Feb 2010 03:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30175</guid>
		<description>@John

Interesting. I don&#039;t expect Capistrano to touch anything other than the directories it sets up (current, releases, shared).  Are you uploading into a directory that current is symlinked to - thus, when you deploy again, the current symlink changes and your files disappear into releases?</description>
		<content:encoded><![CDATA[<p>@John</p>
<p>Interesting. I don&#8217;t expect Capistrano to touch anything other than the directories it sets up (current, releases, shared).  Are you uploading into a directory that current is symlinked to &#8211; thus, when you deploy again, the current symlink changes and your files disappear into releases?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Wright</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30167</link>
		<dc:creator>John Wright</dc:creator>
		<pubDate>Fri, 05 Feb 2010 06:22:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30167</guid>
		<description>I upload files and save them to ~/webapps/public/uploads. Everytime I am deploying (using the above method) my uploaded files are getting removed. Is there an easy way in webfaction to save uploaded files to a safe directory or I am doing something wrong.  My files are not stored in git.</description>
		<content:encoded><![CDATA[<p>I upload files and save them to ~/webapps/public/uploads. Everytime I am deploying (using the above method) my uploaded files are getting removed. Is there an easy way in webfaction to save uploaded files to a safe directory or I am doing something wrong.  My files are not stored in git.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryankanno</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30150</link>
		<dc:creator>ryankanno</dc:creator>
		<pubDate>Tue, 15 Dec 2009 20:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30150</guid>
		<description>Thanks John for the update! 

I have a git configuration that&#039;s very similar to yours. :D</description>
		<content:encoded><![CDATA[<p>Thanks John for the update! </p>
<p>I have a git configuration that&#8217;s very similar to yours. <img src='http://blog.localkinegrinds.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Wright</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30148</link>
		<dc:creator>John Wright</dc:creator>
		<pubDate>Mon, 14 Dec 2009 17:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30148</guid>
		<description>If using  a public git  here is the scm config (shown here for a github account called atc): 

set :scm, :git
set :repository, &quot;git://github.com/atc/atc.git&quot;
set :git_shallow_clone, 1
set :short_branch, &quot;master&quot;
set :user, &quot;#{webfaction_username}&quot;
set :use_sudo, false 

To install git on webfaction follow these instructions: http://docs.webfaction.com/software/git.html#installing-git.

If using git you might want to add a custom path to your Capfile so that Capistrano can find git (by default installed in ~/bin/git).  Add something like this line before your task defs:

default_environment[&quot;PATH&quot;] = &quot;/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/#{webfaction_username}/bin:/home/#{webfaction_username}/.gem/ruby/1.8/bin&quot;

namespace :deploy do
...</description>
		<content:encoded><![CDATA[<p>If using  a public git  here is the scm config (shown here for a github account called atc): </p>
<p>set :scm, :git<br />
set :repository, &#8220;git://github.com/atc/atc.git&#8221;<br />
set :git_shallow_clone, 1<br />
set :short_branch, &#8220;master&#8221;<br />
set :user, &#8220;#{webfaction_username}&#8221;<br />
set :use_sudo, false </p>
<p>To install git on webfaction follow these instructions: <a href="http://docs.webfaction.com/software/git.html#installing-git" rel="nofollow">http://docs.webfaction.com/software/git.html#installing-git</a>.</p>
<p>If using git you might want to add a custom path to your Capfile so that Capistrano can find git (by default installed in ~/bin/git).  Add something like this line before your task defs:</p>
<p>default_environment["PATH"] = &#8220;/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/#{webfaction_username}/bin:/home/#{webfaction_username}/.gem/ruby/1.8/bin&#8221;</p>
<p>namespace :deploy do<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryankanno</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30132</link>
		<dc:creator>ryankanno</dc:creator>
		<pubDate>Fri, 16 Oct 2009 04:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30132</guid>
		<description>@Jay -

If you were just using sqlite3, you&#039;d want to set the following:

set :webfaction_db_type, &quot;sqlite3&quot;
set :webfaction_db, &quot;db/name_of_database&quot; (where name_of_database is the name of your db)

I&#039;m pretty sure if you have empty values for the other options, Rails will just ignore them. :D</description>
		<content:encoded><![CDATA[<p>@Jay -</p>
<p>If you were just using sqlite3, you&#8217;d want to set the following:</p>
<p>set :webfaction_db_type, &#8220;sqlite3&#8243;<br />
set :webfaction_db, &#8220;db/name_of_database&#8221; (where name_of_database is the name of your db)</p>
<p>I&#8217;m pretty sure if you have empty values for the other options, Rails will just ignore them. <img src='http://blog.localkinegrinds.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30131</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Tue, 13 Oct 2009 23:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30131</guid>
		<description>Thanks for the update to your Capistrano tutorial. I have one question though: what would the Capfile look like if we were just using sqlite3?

thanks.</description>
		<content:encoded><![CDATA[<p>Thanks for the update to your Capistrano tutorial. I have one question though: what would the Capfile look like if we were just using sqlite3?</p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Capistrano to deploy to WebFaction &#124; Ryan Kanno: The diary of an Enginerd in Hawaii</title>
		<link>http://blog.localkinegrinds.com/2009/07/27/update-using-capistrano-2-5-to-deploy-rails-2-3-to-webfaction/comment-page-1/#comment-30051</link>
		<dc:creator>Using Capistrano to deploy to WebFaction &#124; Ryan Kanno: The diary of an Enginerd in Hawaii</dc:creator>
		<pubDate>Mon, 27 Jul 2009 09:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.localkinegrinds.com/?p=366#comment-30051</guid>
		<description>[...] If you like to stay on the edge, check out my latest post describing how to use Capistrano 2.5 to deploy Rails 2.3 to Webfaction! [...]</description>
		<content:encoded><![CDATA[<p>[...] If you like to stay on the edge, check out my latest post describing how to use Capistrano 2.5 to deploy Rails 2.3 to Webfaction! [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: blog.localkinegrinds.com @ 2012-02-07 21:46:34 -->
