<?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>McKinney Station &#187; test/spec</title>
	<atom:link href="http://www.mckinneystation.com/categories/testspec/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mckinneystation.com</link>
	<description>Ruby on Rails web application development for Dallas/Fort Worth and all of North Texas.</description>
	<lastBuildDate>Wed, 02 Sep 2009 14:29:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>test/spec docs for Rails</title>
		<link>http://www.mckinneystation.com/2008/02/24/testspec-docs-for-rails/</link>
		<comments>http://www.mckinneystation.com/2008/02/24/testspec-docs-for-rails/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 06:35:08 +0000</pubDate>
		<dc:creator>Geoffrey</dc:creator>
				<category><![CDATA[RSpec]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[test/spec]]></category>

		<guid isPermaLink="false">http://www.mckinneystation.com/2008/02/24/testspec-docs-for-rails/</guid>
		<description><![CDATA[photo by Kriston Lewis
I am a big RSpec fan.  But occasionally, I work on projects that use test/spec.  When I want output the spec documentation with RSpec, I just use rake spec:doc.  With test/spec, I couldn&#8217;t find such a thing.  So I made one and stuck it in lib/tasks/test_spec.rake

Rake::TestTask.new(:specdox) do &#124;t&#124;
 [...]]]></description>
			<content:encoded><![CDATA[<div class="shadow right"><img src='http://www.mckinneystation.com/wp-content/uploads/2008/02/map.jpg' alt='map' /><br/><span class="credit">photo by <a href="http://flickr.com/photos/87634257@N00/">Kriston Lewis</a></span></div>
<p>I am a big <a href="http://rspec.info">RSpec</a> fan.  But occasionally, I work on projects that use <a href="http://test-spec.rubyforge.org/">test/spec</a>.  When I want output the spec documentation with RSpec, I just use <code>rake spec:doc</code>.  With test/spec, I couldn&#8217;t find such a thing.  So I made one and stuck it in <code>lib/tasks/test_spec.rake</code></p>
<p><br  class="clearfix" /></p>
<pre><code>Rake::TestTask.new(:specdox) do |t|
  t.options = '--runner=specdox'
  t.libs &lt;&lt; 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
Rake::Task[:specdox].comment = "Generate specdox."</code></pre>
<p>Now I can use <code>rake specdox</code> to see all the wonderful spec documentation!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mckinneystation.com/2008/02/24/testspec-docs-for-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
