<?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>Mark Richman &#187; rails</title>
	<atom:link href="http://www.markrichman.com/tag/rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markrichman.com</link>
	<description>Web and Mobile Application Development</description>
	<lastBuildDate>Tue, 06 Apr 2010 14:34:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Rails Integration Test with shoulda, factory_girl, webrat, and authlogic</title>
		<link>http://www.markrichman.com/2010/02/25/rails-integration-test-with-shoulda-factory_girl-webrat-and-authlogic/</link>
		<comments>http://www.markrichman.com/2010/02/25/rails-integration-test-with-shoulda-factory_girl-webrat-and-authlogic/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:22:11 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=225</guid>
		<description><![CDATA[I had some issues trying to use a symbol
session[:user_credentials_id]
 vs. a string
session["user_credentials_id"]
Here is my solution:

require 'test_helper'

class LoginTest < ActionController::IntegrationTest
  context 'A user' do
    setup do
      @user = Factory(:user)
      # puts @user.inspect
    end

    should 'be able [...]]]></description>
		<wfw:commentRss>http://www.markrichman.com/2010/02/25/rails-integration-test-with-shoulda-factory_girl-webrat-and-authlogic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 2.3 Application Template template.rb</title>
		<link>http://www.markrichman.com/2009/03/20/rails-23-application-template-templaterb/</link>
		<comments>http://www.markrichman.com/2009/03/20/rails-23-application-template-templaterb/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:18:59 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[gem]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rubygems]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=58</guid>
		<description><![CDATA[Here&#8217;s my current Rails 2.3 application template which uses the following features:

asset_packager
exception_notifier
paperclip
restful-authentication (generates user and session)
role-requirement (generates roles for user)
rspec
cucumber
active_merchant
sqlite3-ruby
will_paginate
haml
nifty_layout
Capistrano capify
database session store




]]></description>
		<wfw:commentRss>http://www.markrichman.com/2009/03/20/rails-23-application-template-templaterb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying Rails Apps with Capistrano, Git, and Passenger</title>
		<link>http://www.markrichman.com/2008/08/20/deploying-rails-apps-with-capistrano-git-and-passenger/</link>
		<comments>http://www.markrichman.com/2008/08/20/deploying-rails-apps-with-capistrano-git-and-passenger/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 00:15:51 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[passenger]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=53</guid>
		<description><![CDATA[I host my sites on an Ubuntu VPS. I use a combination of Rails, Apache2, Phusion Passenger, Git, and MySQL. I have a pretty useful Capistrano deploy.rb if you have a similar configuration. I&#8217;d love some feedback, as I promised to assist Jamis Buck in his Capistrano documentation efforts.

]]></description>
		<wfw:commentRss>http://www.markrichman.com/2008/08/20/deploying-rails-apps-with-capistrano-git-and-passenger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails: Adding XSL Processing Instruction with to_xml</title>
		<link>http://www.markrichman.com/2008/08/09/ruby-on-rails-adding-xsl-processing-instruction-with-to_xml/</link>
		<comments>http://www.markrichman.com/2008/08/09/ruby-on-rails-adding-xsl-processing-instruction-with-to_xml/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 18:35:14 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xsl]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=52</guid>
		<description><![CDATA[Style Sheets can be associated with an XML document by using a processing instruction whose target is xml-stylesheet. It looks something like this:
&#60;?xml version="1.0" encoding="ISO-8859-1"?&#62;
&#60;?xml-stylesheet type="text/xsl" href="something.xsl"?&#62;
How do we get to_xml to render the XSL processing instruction? Put this in your controller:

]]></description>
		<wfw:commentRss>http://www.markrichman.com/2008/08/09/ruby-on-rails-adding-xsl-processing-instruction-with-to_xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RailsConf Git Talk</title>
		<link>http://www.markrichman.com/2008/06/14/railsconf-git-talk/</link>
		<comments>http://www.markrichman.com/2008/06/14/railsconf-git-talk/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 20:44:24 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[chacon]]></category>
		<category><![CDATA[railsconf]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[scott]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=49</guid>
		<description><![CDATA[Scott Chacon&#8217;s RailsConf 2008 Talk on Git:

]]></description>
		<wfw:commentRss>http://www.markrichman.com/2008/06/14/railsconf-git-talk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RailsConf 2008 David Heinemeier Hansson&#8217;s Keynote Video</title>
		<link>http://www.markrichman.com/2008/06/14/railsconf-2008-david-heinemeier-hanssons-keynote-video/</link>
		<comments>http://www.markrichman.com/2008/06/14/railsconf-2008-david-heinemeier-hanssons-keynote-video/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 20:20:52 +0000</pubDate>
		<dc:creator>Mark A. Richman</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[dhh]]></category>
		<category><![CDATA[keynote]]></category>
		<category><![CDATA[railsconf]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[rubyonrails]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.markrichman.com/?p=46</guid>
		<description><![CDATA[RailsConf 2008 David Heinemeier Hansson&#8217;s Keynote Video

RailsConf 2008 David Heinemeier Hansson Keynote from daniel wanja on Vimeo.
]]></description>
		<wfw:commentRss>http://www.markrichman.com/2008/06/14/railsconf-2008-david-heinemeier-hanssons-keynote-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
