<?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>Truespire Inc - Truly Inspired Web Applications &#187; Development</title>
	<atom:link href="http://www.truespire.com/topics/blog/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.truespire.com</link>
	<description>Web Development + Design + Consulting</description>
	<lastBuildDate>Thu, 02 Feb 2012 18:47:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Backup2s3 &#8211; A Simple Rails Backup Gem</title>
		<link>http://www.truespire.com/2011/08/26/backup2s3-a-simple-rails-backup-gem/</link>
		<comments>http://www.truespire.com/2011/08/26/backup2s3-a-simple-rails-backup-gem/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 01:14:38 +0000</pubDate>
		<dc:creator>Aric Walker</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.truespire.com/?p=639</guid>
		<description><![CDATA[Backup2s3 is a RubyGem used to create backups of Ruby on Rails applications and store them on Amazon S3. This gem is written for Linux and Mac OS X systems and invokes its main backup features via rake tasks. Along with backup creation and automatic rotation, a backup restoration function is provided which allows you [...]]]></description>
		<wfw:commentRss>http://www.truespire.com/2011/08/26/backup2s3-a-simple-rails-backup-gem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex 3 List Drag &amp; Drop Example</title>
		<link>http://www.truespire.com/2010/01/11/flex-3-list-drag-and-drop-example/</link>
		<comments>http://www.truespire.com/2010/01/11/flex-3-list-drag-and-drop-example/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 11:05:06 +0000</pubDate>
		<dc:creator>Wesley Gooch</dc:creator>
				<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[drag and drop]]></category>
		<category><![CDATA[dragEnabled]]></category>
		<category><![CDATA[dragMoveEnabled]]></category>
		<category><![CDATA[dropEnabled]]></category>
		<category><![CDATA[flex 3]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://truespire.com/?p=425</guid>
		<description><![CDATA[Recently, I needed to develop a drag-and-drop feature between two lists using Adobe Flex 3. As a learning experience, I built an example application to experiment with the best approach to how this is done. This post will briefly describe my solution with the source code included. I named the example application the <a href="http://www.truespire.com/examples/dual-list-manager/" target="_blank">Dual List Manager</a>.]]></description>
		<wfw:commentRss>http://www.truespire.com/2010/01/11/flex-3-list-drag-and-drop-example/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Merging A Subversion Branch Into The Trunk</title>
		<link>http://www.truespire.com/2009/12/26/svn-merge-branch-into-trunk/</link>
		<comments>http://www.truespire.com/2009/12/26/svn-merge-branch-into-trunk/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 17:59:16 +0000</pubDate>
		<dc:creator>Aric Walker</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Assembla]]></category>
		<category><![CDATA[branch]]></category>
		<category><![CDATA[commit]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[svn merge]]></category>

		<guid isPermaLink="false">http://truespire.com/?p=402</guid>
		<description><![CDATA[This post should serve as a quick example of how to do a large svn branch-to-trunk merge. We utilize <a href="http://www.assembla.com/">Assembla</a> as our repository host for all of our <a href="http://www.truespire.com/products/">products</a>.]]></description>
		<wfw:commentRss>http://www.truespire.com/2009/12/26/svn-merge-branch-into-trunk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Obfuscating Email Addresses In Ruby on Rails</title>
		<link>http://www.truespire.com/2009/05/30/obfuscating-email-addresses-in-ruby-on-rails/</link>
		<comments>http://www.truespire.com/2009/05/30/obfuscating-email-addresses-in-ruby-on-rails/#comments</comments>
		<pubDate>Sun, 31 May 2009 02:08:06 +0000</pubDate>
		<dc:creator>Wesley Gooch</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[html entity]]></category>
		<category><![CDATA[html entity encoding]]></category>
		<category><![CDATA[obscuring email addresses]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://truespire.com/?p=323</guid>
		<description><![CDATA[Posting raw e-mail addresses on a website is a guaranteed way to get an inbox full of spam. If your website can be picked up by search engine indexing bots, spambots can also find you. In this post, I present several solutions to this dilemma and the actual code to solve it using Ruby on [...]]]></description>
		<wfw:commentRss>http://www.truespire.com/2009/05/30/obfuscating-email-addresses-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

