<?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: Last deployment date with Rails and Capistrano</title>
	<atom:link href="http://www.rubyfleebie.com/last-deployment-date/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rubyfleebie.com/last-deployment-date/</link>
	<description>Because programming should be fun</description>
	<lastBuildDate>Wed, 04 Jan 2012 05:17:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Frank</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-1390</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Mon, 28 Mar 2011 12:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-1390</guid>
		<description>Josh, agreed. restart.txt is a bit less reliable than a custom dummy file for the reason you mention.</description>
		<content:encoded><![CDATA[<p>Josh, agreed. restart.txt is a bit less reliable than a custom dummy file for the reason you mention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Nesbitt</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-1389</link>
		<dc:creator>Josh Nesbitt</dc:creator>
		<pubDate>Mon, 28 Mar 2011 12:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-1389</guid>
		<description>I&#039;m not sure the last access time would suffice. What if you you needed to restart the application but haven&#039;t deployed new code in-between restarts?</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure the last access time would suffice. What if you you needed to restart the application but haven&#8217;t deployed new code in-between restarts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-1388</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Mon, 28 Mar 2011 12:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-1388</guid>
		<description>Bastian, that&#039;&#039;s a good idea! Even simpler for passenger users</description>
		<content:encoded><![CDATA[<p>Bastian, that&#8217;&#8217;s a good idea! Even simpler for passenger users</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bastian Kruck</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-1387</link>
		<dc:creator>Bastian Kruck</dc:creator>
		<pubDate>Mon, 28 Mar 2011 01:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-1387</guid>
		<description>When using passenger, why not check for the last change on tmp/restart.tmp?

File.atime(&quot;#{Rails.root}/tmp/restart.txt&quot;).strftime(&quot;%Y-%m-%d at %H:%M&quot;)

will work with just this single line :)</description>
		<content:encoded><![CDATA[<p>When using passenger, why not check for the last change on tmp/restart.tmp?</p>
<p>File.atime(&#8220;#{Rails.root}/tmp/restart.txt&#8221;).strftime(&#8220;%Y-%m-%d at %H:%M&#8221;)</p>
<p>will work with just this single line :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Last deployment date with Rails and Capistrano</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-1140</link>
		<dc:creator>Last deployment date with Rails and Capistrano</dc:creator>
		<pubDate>Fri, 10 Dec 2010 05:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-1140</guid>
		<description>[...] while it is still in development. One thing I find useful is to display the last deployment...  [full post]    Frank     Ruby Fleebie   short &amp; sweet            0        0        0        0        0       [...]</description>
		<content:encoded><![CDATA[<p>[...] while it is still in development. One thing I find useful is to display the last deployment&#8230;  [full post]    Frank     Ruby Fleebie   short &amp; sweet            0        0        0        0        0       [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-912</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Fri, 19 Mar 2010 17:26:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-912</guid>
		<description>Thanks guys for these nice alternatives!</description>
		<content:encoded><![CDATA[<p>Thanks guys for these nice alternatives!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Nesbitt</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-911</link>
		<dc:creator>Josh Nesbitt</dc:creator>
		<pubDate>Fri, 19 Mar 2010 16:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-911</guid>
		<description>You could also pull the timestamp from the most recent folder within the releases directory, as Capistrano uses timestamped folder names as a way of separating revisions of code over different deploys. Nice idea :)</description>
		<content:encoded><![CDATA[<p>You could also pull the timestamp from the most recent folder within the releases directory, as Capistrano uses timestamped folder names as a way of separating revisions of code over different deploys. Nice idea :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Neubert</title>
		<link>http://www.rubyfleebie.com/last-deployment-date/comment-page-1/#comment-910</link>
		<dc:creator>Ian Neubert</dc:creator>
		<pubDate>Fri, 19 Mar 2010 15:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.rubyfleebie.com/last-deployment-date/#comment-910</guid>
		<description>I think you could also use the REVISION file that capistrano places by default during a deploy. You could also get the SVN/git revision from this file by reading it.

Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>I think you could also use the REVISION file that capistrano places by default during a deploy. You could also get the SVN/git revision from this file by reading it.</p>
<p>Thanks for the tip!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

