<?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>matt vs world &#187; software</title>
	<atom:link href="http://www.mattvsworld.com/blog/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattvsworld.com/blog</link>
	<description>bring it on, world!</description>
	<lastBuildDate>Mon, 22 Aug 2011 19:16:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>using rake for old-school code sharing</title>
		<link>http://www.mattvsworld.com/blog/2010/11/using-rake-for-old-school-code-sharing/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/11/using-rake-for-old-school-code-sharing/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 19:04:00 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[rake]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=540</guid>
		<description><![CDATA[Way back in the day, source control was so clunky and frustrating (or non-existent), that sometimes the easiest way to share code was to zip it up and send it over email to your fellow developer. There are tons of source control options now, all quite mature and most very easy to use. However (heh), [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/11/using-rake-for-old-school-code-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install netdisco on ubuntu from source</title>
		<link>http://www.mattvsworld.com/blog/2010/04/install-netdisco-on-ubuntu-from-source/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/04/install-netdisco-on-ubuntu-from-source/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 16:54:17 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[netdisco]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=523</guid>
		<description><![CDATA[netdisco can be a pain&#8230; even just getting it to run&#8230; I found some neat installation scripts for installing netdisco on some other linux flavors, but I prefer ubuntu. I took those scripts and quickly hammered out one that&#8217;s ubuntu-specific. It&#8217;s not as pretty, and doesn&#8217;t allow you to do as much config by responding [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/04/install-netdisco-on-ubuntu-from-source/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>autotest with rspec-2.0 beta</title>
		<link>http://www.mattvsworld.com/blog/2010/03/autotest-with-rspec-2-0-beta/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/03/autotest-with-rspec-2-0-beta/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:57:48 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=521</guid>
		<description><![CDATA[Just saw this, made me happy: http://github.com/rspec/rspec-core/commit/c1d600cd4367fb24a333c3f27f3b27693745ad14 So you can now run autotest without a bunch of (uglier) hacks just by adding the file autotest/discover.rb to the root of your project with this inside: Autotest.add_discovery &#123; &#34;rspec2&#34; &#125; note that you&#8217;ll need at least rspec version 2.0.0.beta4 (beta3 does *not* have this) and once again [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/03/autotest-with-rspec-2-0-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rails 3, bundler, capistrano</title>
		<link>http://www.mattvsworld.com/blog/2010/03/rails-3-bundler-capistrano/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/03/rails-3-bundler-capistrano/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 19:12:33 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=516</guid>
		<description><![CDATA[Deploying a rails app with capistrano got just a little bit trickier with the new bundler integration. Here&#8217;s a super-simplified task you can tack onto the end of your deployment recipe to make sure that your server gets a bundle set up (and updated, if need be): namespace :bundler do task :create_symlink, :roles =&#62; :app [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/03/rails-3-bundler-capistrano/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>rails 3 beta &#8211; &#8220;uninitialized constant ActionDispatch::Integration::Session::Test&#8221;</title>
		<link>http://www.mattvsworld.com/blog/2010/03/rails-3-beta-uninitialized-constant-actiondispatchintegrationsessiontest/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/03/rails-3-beta-uninitialized-constant-actiondispatchintegrationsessiontest/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 16:10:17 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=501</guid>
		<description><![CDATA[I just set up a new rails project with the 3.0 beta, and when I tried to run some cucumber tests I got the following: uninitialized constant ActionDispatch::Integration::Session::Test &#40;NameError&#41; Seems that there isn&#8217;t an explicit require of &#8216;test/unit/testcase&#8217; in rails/actionpack/lib/action_dispatch/testing/integration.rb, but here is this line: 127 include Test::Unit::Assertions To get around the problem you can [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/03/rails-3-beta-uninitialized-constant-actiondispatchintegrationsessiontest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>textmate and ruby 1.9 &#8211; Invalid multibyte char</title>
		<link>http://www.mattvsworld.com/blog/2010/03/textmate-and-ruby-1-9-invalid-multibyte-char/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/03/textmate-and-ruby-1-9-invalid-multibyte-char/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:37:16 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=479</guid>
		<description><![CDATA[If you&#8217;ve upgraded to ruby 1.9 (i&#8217;m currently on 1.9.1), and you use textmate, you might be getting slammed with these &#8220;invalid multibyte char&#8221; errors when running all kinds of commands. A lot of textmate bundles are actually ruby-driven, so these errors can pop up even when you&#8217;re not running commands from a ruby bundle. [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/03/textmate-and-ruby-1-9-invalid-multibyte-char/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>&#8220;version_requirements deprecated&#8221; warning in rails</title>
		<link>http://www.mattvsworld.com/blog/2010/03/version_requirements-deprecated-warning-in-rails/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/03/version_requirements-deprecated-warning-in-rails/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 05:28:02 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=470</guid>
		<description><![CDATA[[NOTE: This post is getting an alarming number of hits... everyone be sure and note the update at the bottom] Another minor annoyance with a quick fix: If you&#8217;re getting this warning: Warning: Gem::Dependency#version_requirements is deprecated and will be removed on or after August 2010. Use #requirement when running anything using rails (i believe this [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/03/version_requirements-deprecated-warning-in-rails/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>fixing login_generator</title>
		<link>http://www.mattvsworld.com/blog/2010/02/fixing-login_generator/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/02/fixing-login_generator/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:39:23 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=467</guid>
		<description><![CDATA[The login_generator script seems to be broken with rails > 2.0.1, at least at login_generator gem version 1.2.2. It&#8217;s due to the fact that the login_generator script uses the older &#8220;.rhtml&#8221; extension, rather than the newer &#8220;.html.erb&#8221;, so you&#8217;ll get errors like this if you try and script/generate login: No such file or directory - [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/02/fixing-login_generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ruby 1.9, rails 2.3.5, and cucumber</title>
		<link>http://www.mattvsworld.com/blog/2010/02/ruby-1-9-rails-2-3-5-and-cucumber/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/02/ruby-1-9-rails-2-3-5-and-cucumber/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 04:35:23 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=461</guid>
		<description><![CDATA[My toy of the day is cucumber, a very intriguing BDD framework for ruby (and rails). I had quickly looked at a few screencasts and decided to jump right in, and did this: sudo gem install cucumber and right away, did this in a freshly made rails app folder: script/generate cucumber It&#8217;s probably not surprising [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/02/ruby-1-9-rails-2-3-5-and-cucumber/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>constraining php dynamic properties</title>
		<link>http://www.mattvsworld.com/blog/2010/02/constraining-php-dynamic-properties/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://www.mattvsworld.com/blog/2010/02/constraining-php-dynamic-properties/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 18:34:25 +0000</pubDate>
		<dc:creator>matt</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.mattvsworld.com/blog/?p=455</guid>
		<description><![CDATA[PHP supports dynamic properties. Generally, I don&#8217;t find this feature to be very helpful at all, as it makes your code prone to bugs caused by property misspellings (yet another reason I&#8217;m not a huge fan of PHP at all). Take this snippet: 1 2 3 4 5 6 7 8 9 10 class foo [...]]]></description>
		<wfw:commentRss>http://www.mattvsworld.com/blog/2010/02/constraining-php-dynamic-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

