<?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>Ramblings &#187; rails</title>
	<atom:link href="http://matthewkwilliams.com/index.php/tag/rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://matthewkwilliams.com</link>
	<description>Musings of Matt Williams</description>
	<lastBuildDate>Thu, 04 Nov 2010 18:05:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Torquebox and Cygwin: Take I</title>
		<link>http://matthewkwilliams.com/index.php/2010/06/09/torquebox-and-cygwin-take-i/</link>
		<comments>http://matthewkwilliams.com/index.php/2010/06/09/torquebox-and-cygwin-take-i/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 17:38:26 +0000</pubDate>
		<dc:creator>Matt Williams</dc:creator>
				<category><![CDATA[gotchas]]></category>
		<category><![CDATA[jboss]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[torquebox]]></category>
		<category><![CDATA[cygwin]]></category>

		<guid isPermaLink="false">http://matthewkwilliams.com/?p=263</guid>
		<description><![CDATA[Torquebox and Cygwin don&#8217;t work as nicely together as one might hope. That said, here are a couple of findings: In order to deploy, you need to set the $JBOSS_HOME with the Windows path.  You can do this via export JBOSS_PATH=`cygpath -w PATH_TO_JBOSS`. Additionally, the JRUBY_HOME needs to be a windows path as well.   Otherwise [...]]]></description>
		<wfw:commentRss>http://matthewkwilliams.com/index.php/2010/06/09/torquebox-and-cygwin-take-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting a rails app from 1.2.6 to 2.1</title>
		<link>http://matthewkwilliams.com/index.php/2008/09/05/converting-a-rails-app-from-126-to-21/</link>
		<comments>http://matthewkwilliams.com/index.php/2008/09/05/converting-a-rails-app-from-126-to-21/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 17:30:39 +0000</pubDate>
		<dc:creator>Matt Williams</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[1.2.6]]></category>
		<category><![CDATA[2.1]]></category>

		<guid isPermaLink="false">http://matthewkwilliams.com/?p=133</guid>
		<description><![CDATA[This is the first in a series(???) of posts detailing things that I&#8217;ve found in the process of updating rails (and other plugins/gems) for an application.  Due to politics, it&#8217;s using JRuby, running inside a JBoss container, with a Derby backend. Things which are getting updated include: Rails ActiveRecord-JDBC ActiveScaffold ActiveScaffoldExport Goldspike is being replaced [...]]]></description>
		<wfw:commentRss>http://matthewkwilliams.com/index.php/2008/09/05/converting-a-rails-app-from-126-to-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Project Setup Script</title>
		<link>http://matthewkwilliams.com/index.php/2008/08/25/rails-project-setup-script/</link>
		<comments>http://matthewkwilliams.com/index.php/2008/08/25/rails-project-setup-script/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 20:35:13 +0000</pubDate>
		<dc:creator>Matt Williams</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[restful_authentication]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://matthewkwilliams.com/?p=91</guid>
		<description><![CDATA[I got tired of typing the same commands all the time and/or looking up urls for plugins.  Hence this script&#8230;.  Yes, I know it&#8217;s been done before, but this does what I want (for now; I&#8217;m sure I&#8217;ll edit it). It does the following: Creates rails instance (optionally setting the database, etc.) Installs rspec &#38; [...]]]></description>
		<wfw:commentRss>http://matthewkwilliams.com/index.php/2008/08/25/rails-project-setup-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>rspec, restful_authentication, and login_required</title>
		<link>http://matthewkwilliams.com/index.php/2008/08/19/rspec-restful_authentication-and-login_required/</link>
		<comments>http://matthewkwilliams.com/index.php/2008/08/19/rspec-restful_authentication-and-login_required/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:55:24 +0000</pubDate>
		<dc:creator>Matt Williams</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[gotchas]]></category>
		<category><![CDATA[restful_authentication]]></category>
		<category><![CDATA[rspec]]></category>

		<guid isPermaLink="false">http://matthewkwilliams.com/?p=76</guid>
		<description><![CDATA[This is partly for myself, and partly for anyone after me&#8230;.. I have a controller generated via rspec_scaffold &#8212; yes, I know, it might not be what all the cool kids are doing, but it works.  I also have restful_authentication set up to use rspec.  So, when I go to add before_filter :login_required, autotest frowns [...]]]></description>
		<wfw:commentRss>http://matthewkwilliams.com/index.php/2008/08/19/rspec-restful_authentication-and-login_required/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>O_RLY? A Ruby/Rails implementation of snowl (Part I)</title>
		<link>http://matthewkwilliams.com/index.php/2008/08/12/o_rly-part1/</link>
		<comments>http://matthewkwilliams.com/index.php/2008/08/12/o_rly-part1/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 17:32:52 +0000</pubDate>
		<dc:creator>Matt Williams</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://matthewkwilliams.com/?p=12</guid>
		<description><![CDATA[Recently Mozilla Labs released a prototype of snowl, a rss/atom/twitter feed reader. It is a firefox plugin and provides two views of messages &#8212; a &#8220;traditional&#8221; message view, as well as a &#8220;river of news&#8220;. I thought that this could be easily &#8220;redone&#8221; as a rails application. The rest of this article steps through the [...]]]></description>
		<wfw:commentRss>http://matthewkwilliams.com/index.php/2008/08/12/o_rly-part1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

