<?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>Bradly Feeley &#187; Rails</title>
	<atom:link href="http://bradlyfeeley.com/category/rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradlyfeeley.com</link>
	<description>San Diego Ruby on Rails Developer</description>
	<lastBuildDate>Thu, 28 Jul 2011 23:53:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Simple Rails Deployments with Net/SSH</title>
		<link>http://bradlyfeeley.com/2011/07/26/simple-rails-deployments-with-net-ssh/</link>
		<comments>http://bradlyfeeley.com/2011/07/26/simple-rails-deployments-with-net-ssh/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 04:49:24 +0000</pubDate>
		<dc:creator>Bradly Feeley</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://bradlyfeeley.com/?p=110</guid>
		<description><![CDATA[Recently I created a small Rails app as a sales/marketing site for the startup I am working at. The site is very basic with just a few models and controllers. We time came to deploy the site, Capistrano felt to big, but we didn&#8217;t want to have to manually ssh in every time we had [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I created a small Rails app as a sales/marketing site for the startup I am working at. The site is very basic with just a few models and controllers. We time came to deploy the site, Capistrano felt to big, but we didn&#8217;t want to have to manually ssh in every time we had a code change. What I wanted was a way to run one command locally that would simply run a few commands on the remote server. To do this I turned to the net/ssh library.</p>
<p>Just drop this code in lib/tasks/deploy.rake and now a simple `$ rake deploy` will push your changes live.</p>
<p><script src="https://gist.github.com/1108644.js?file=deploy.rb"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://bradlyfeeley.com/2011/07/26/simple-rails-deployments-with-net-ssh/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Major Change to Hash.from_xml in Rails 2.3.4</title>
		<link>http://bradlyfeeley.com/2009/10/06/major-change-to-hash-from_xml-in-rails-2-3-4/</link>
		<comments>http://bradlyfeeley.com/2009/10/06/major-change-to-hash-from_xml-in-rails-2-3-4/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 02:30:34 +0000</pubDate>
		<dc:creator>Bradly Feeley</dc:creator>
				<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://bradlyfeeley.com/?p=91</guid>
		<description><![CDATA[Recently after upgrading a Rails app to Rails 2.3.4 I noticed my Soap service calls throwing errors. After a little investigation I found this commit: The problem is that since String#underscore lowercases the string, any Hashes created using Hash.from_xml with xml that contain any capital letters in the node names will break when updating to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently after upgrading a Rails app to Rails 2.3.4 I noticed my Soap service calls throwing errors. After a little investigation I found this commit:</p>
<p><script src="http://gist.github.com/187091.js"></script></p>
<p>The problem is that since String#underscore lowercases the string, any Hashes created using Hash.from_xml with xml that contain any capital letters in the node names will break when updating to Rails 2.3.4.</p>
<p>XML <em>is</em> case-sensitive, so reverting back to using underscore probably isn&#8217;t going to happen, but this is definitely something that should have been a bigger focus at the release of 2.3.4.</p>
<p>For apps using Hash.to_xml that would like to upgrade to Rails 2.3.4 with there existing codebase, I created a <a href="http://github.com/bradly/rails_hash_from_xml_compatibility_fix">small plugin</a> to revert back to the using .underscore when creating a hash from XML.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradlyfeeley.com/2009/10/06/major-change-to-hash-from_xml-in-rails-2-3-4/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Installing a Ruby on Rails Plugin from a Github Branch</title>
		<link>http://bradlyfeeley.com/2008/09/18/installing-a-ruby-on-rails-plugin-from-a-github-branch/</link>
		<comments>http://bradlyfeeley.com/2008/09/18/installing-a-ruby-on-rails-plugin-from-a-github-branch/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 19:50:43 +0000</pubDate>
		<dc:creator>Bradly Feeley</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://bradlyfeeley.com/?p=54</guid>
		<description><![CDATA[One of the coolest things about Git is how easy it makes working with branches. Rails has been playing catch up with Git&#8217;s distributed methodologies and recently took a nice step forward. Previously you could only use ./script/plugin install to install from the master branch of a Github repository. Now you can specify the branch name [...]]]></description>
			<content:encoded><![CDATA[<p>One of the coolest things about Git is how easy it makes working with branches. Rails has been playing catch up with Git&#8217;s distributed methodologies and recently took a nice step forward. Previously you could only use <code>./script/plugin install</code> to install from the master branch of a Github repository. Now you can specify the branch name when installing the plugin</p>
<p><code>./script/plugin install git://github.com/technoweenie/restful-authentication.git -r modular</code></p>
<p>This will install the modular branch of the Restful Authentication plugin. Pretty cool, huh?</p>
<p>At the time of writing this Rails 2.2 has not been released. If you are using Rails 2.1.0 or 2.1.1 you will need to upgrade to Edge Rails for this to work. Otherwise you will have to wait for 2.2 to be released.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradlyfeeley.com/2008/09/18/installing-a-ruby-on-rails-plugin-from-a-github-branch/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

