<?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: using Ruby to rename files and edit their content</title>
	<atom:link href="http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/</link>
	<description>A geek's personal domain.</description>
	<pubDate>Thu, 08 Jan 2009 20:43:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ProDevTips - dev related notes and tutorials &#187; Blog Archive &#187; Ruby File Renamer</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-267716</link>
		<dc:creator>ProDevTips - dev related notes and tutorials &#187; Blog Archive &#187; Ruby File Renamer</dc:creator>
		<pubDate>Wed, 16 Jul 2008 04:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-267716</guid>
		<description>[...] found a nice script from Sarah [...]</description>
		<content:encoded><![CDATA[<p>[...] found a nice script from Sarah [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-233913</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Fri, 14 Mar 2008 17:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-233913</guid>
		<description>Er, Luke, good point.  I don't know why I did the &lt;code&gt;elsif&lt;/code&gt; with one of the same conditions as the &lt;code&gt;if&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>Er, Luke, good point.  I don&#8217;t know why I did the <code>elsif</code> with one of the same conditions as the <code>if</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Hartman</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-233817</link>
		<dc:creator>Luke Hartman</dc:creator>
		<pubDate>Fri, 14 Mar 2008 01:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-233817</guid>
		<description>This looks helpful, but I don't understand something. When does the line &lt;code&gt;elsif path =~ /\.sphp$/i &#124;&#124; path =~ /\.php$/i&lt;/code&gt;
get called? I don't understand an &lt;em&gt;elsif&lt;/em&gt; that checks the same condition as the &lt;em&gt;if&lt;/em&gt;. Am I missing something?</description>
		<content:encoded><![CDATA[<p>This looks helpful, but I don&#8217;t understand something. When does the line <code>elsif path =~ /\.sphp$/i || path =~ /\.php$/i</code><br />
get called? I don&#8217;t understand an <em>elsif</em> that checks the same condition as the <em>if</em>. Am I missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edit Filenames and Content with Ruby. &#124; Menekali</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-228350</link>
		<dc:creator>Edit Filenames and Content with Ruby. &#124; Menekali</dc:creator>
		<pubDate>Tue, 12 Feb 2008 18:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-228350</guid>
		<description>[...] 3Till7  addthis_url = 'http%3A%2F%2Fwww.menekali.com%2Fedit-filenames-and-content-with-ruby%2F'; [...]</description>
		<content:encoded><![CDATA[<p>[...] 3Till7  addthis_url = &#8216;http%3A%2F%2Fwww.menekali.com%2Fedit-filenames-and-content-with-ruby%2F&#8217;; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max Williams</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-225815</link>
		<dc:creator>Max Williams</dc:creator>
		<pubDate>Thu, 31 Jan 2008 11:59:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-225815</guid>
		<description>This line was very useful for me, thanks!  I was wondering how to rename files and deal with svn in a migration, it never occurred to me to simply speak to svn from inside the migration.  It's a nice easy way to rename as well :)

system( "svn mv #{dir + old_name} #{dir + new_name}" )</description>
		<content:encoded><![CDATA[<p>This line was very useful for me, thanks!  I was wondering how to rename files and deal with svn in a migration, it never occurred to me to simply speak to svn from inside the migration.  It&#8217;s a nice easy way to rename as well :)</p>
<p>system( &#8220;svn mv #{dir + old_name} #{dir + new_name}&#8221; )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rilla</title>
		<link>http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/comment-page-1/#comment-206576</link>
		<dc:creator>Rilla</dc:creator>
		<pubDate>Thu, 22 Nov 2007 07:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.3till7.net/2007/11/21/using-ruby-to-rename-files-and-edit-their-content/#comment-206576</guid>
		<description>That looks so fun. I'd love to learn Ruby except... My server doesn't support it. :(</description>
		<content:encoded><![CDATA[<p>That looks so fun. I&#8217;d love to learn Ruby except&#8230; My server doesn&#8217;t support it. :(</p>
]]></content:encoded>
	</item>
</channel>
</rss>
