<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Bootspring</title>
	
	<link>http://www.bootspring.com</link>
	<description>Software development and infrastructure services</description>
	<lastBuildDate>Wed, 22 Sep 2010 17:02:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bootspring" /><feedburner:info uri="bootspring" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>MiniTest: Ruby 1.9′s test framework</title>
		<link>http://www.bootspring.com/2010/09/22/minitest-rubys-test-framework/</link>
		<comments>http://www.bootspring.com/2010/09/22/minitest-rubys-test-framework/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 16:55:13 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=179</guid>
		<description><![CDATA[Aaron Patterson gave a talk at GoGaRuCo last weekend about the latest changes in Ruby 1.9.2&#8242;s standard library and one of the topics he spoke on was MiniTest. The Ruby community has been particularly innovative in the world of testing &#8230; <a href="http://www.bootspring.com/2010/09/22/minitest-rubys-test-framework/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Aaron Patterson gave a talk at GoGaRuCo last weekend about the latest changes in Ruby 1.9.2&#8242;s standard library and one of the topics he spoke on was MiniTest.  The Ruby community has been particularly innovative in the world of testing and Ruby 1.8&#8242;s Test::Unit library is circa 2003, providing nothing but the most basic testing API.  Every Ruby project I&#8217;ve ever worked on has skipped Test::Unit and pulled in many different test gems (e.g. rspec, shoulda, mocha, flexmock) to provide a modern test infrastructure.</p>
<h2>Test::Unit Refresher</h2>
<p>With Test::Unit, you just subclass Test::Unit::TestCase, name your methods starting with &#8216;test&#8217; and include one or more assertions to verify:</p>
<pre class="brush: ruby;">
class TestSomething &lt; Test::Unit::TestCase
  def test_foo
    foo = Foo.new
    assert foo
    bar = nil
    assert_nil bar
  end
end
</pre>
<p>Believe it or not, Test::Unit is actually rather slow and bloated.  It includes a number of GUIs (GTk v1, GTk v2, FxRuby) that are rarely if ever used.  A revamp was needed&#8230;</p>
<h2>Enter MiniTest</h2>
<p>Ruby 1.9 includes an updated version of the venerable Test::Unit which removes a lot of the more esoteric features, called <a href="http://bfts.rubyforge.org/minitest/">MiniTest</a>.  You don&#8217;t need to do anything to use MiniTest in 1.9, it replaces Test::Unit and provides a backwards compatible API that provides the 90% of Test::Unit that people were using often.  You can even use minitest on Ruby 1.8 by installing the `minitest` gem.  Aside from the Test::Unit API, several improvements over Test::Unit are included:</p>
<p><strong>Randomization</strong></p>
<p>When you run your test suite, you might notice this at the bottom:</p>
<pre>
Test run options: --seed 1261
</pre>
<p>This is because MiniTest by default runs your tests in random order.  This is a good thing because it prevents your tests from accidentally becoming order-dependent due to &#8220;state leakage&#8221;.  If you find that your tests are breaking randomly, it is most likely due to this state leakage.  You can run your tests with the same seed to reproduce the problem:</p>
<pre>
rake TESTOPTS="--seed=1261"
</pre>
<p><strong>Skip Tests</strong></p>
<p>MiniTest allows you to easily skip tests that are not working with the `skip` method:</p>
<pre class="brush: ruby;">
    def test_foo
        skip(&quot;Need to debug this...&quot;)
        assert_equal false, true
    end
</pre>
<p>which results in this:</p>
<pre>
83 tests, 106 assertions, 0 failures, 0 errors, 1 skips
</pre>
<p><strong>Verbosity</strong></p>
<p>MiniTest also has a &#8216;-v&#8217; flag which will print out the time each test takes &#8211; excellent for determining those tests which are slowing down your test suite:</p>
<pre>
rake TESTOPTS="-v"
</pre>
<p>which emits a line for each test.  It&#8217;s too bad it doesn&#8217;t have an option for sorting or a minimum time (like 0.1 sec); this would be useful for suites which have thousands of tests.</p>
<pre>
TestMemCache#test_check_size_off: 0.02 s: .
TestMemCache#test_check_size_on: 0.01 s: .
TestMemCache#test_consistent_hashing: 0.11 s: .
TestMemCache#test_crazy_multithreaded_access: 0.00 s: S
TestMemCache#test_custom_encoding: 0.00 s: .
TestMemCache#test_decr: 0.00 s: .
</pre>
<p><strong>BDD DSL</strong></p>
<p>MiniTest also includes a basic BDD DSL like RSpec:</p>
<pre class="brush: ruby;">
require 'minitest/spec'

describe Meme do
  before do
    @meme = Meme.new
  end

  describe &quot;when asked about cheeseburgers&quot; do
    it &quot;should respond positively&quot; do
      @meme.i_can_has_cheezburger?.must_equal &quot;OHAI!&quot;
    end
  end

  describe &quot;when asked about blending possibilities&quot; do
    it &quot;won't say no&quot; do
      @meme.does_it_blend?.wont_match /^no/i
    end
  end
end
</pre>
<p>It even includes a basic mocking API which you can read about in the <a href="http://bfts.rubyforge.org/minitest/">MiniTest documentation</a>.  These changes are a great step forward for Ruby&#8217;s standard test library.  Personally I&#8217;m going to use MiniTest on my next project and see if I can slim down my test dependencies.  Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/09/22/minitest-rubys-test-framework/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Building Dalli</title>
		<link>http://www.bootspring.com/2010/09/02/building-dalli/</link>
		<comments>http://www.bootspring.com/2010/09/02/building-dalli/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 03:27:56 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=140</guid>
		<description><![CDATA[One of our first clients for Bootspring is NorthScale, a company specializing in memcached-based infrastructure for scaling large websites. Since I maintain memcache-client, the most popular Ruby client for memcached, they contacted me about building a next generation client. This &#8230; <a href="http://www.bootspring.com/2010/09/02/building-dalli/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bootspring.com/wp-content/uploads/2010/09/31PersistenceOfMemory-300x216.jpg" alt="" title="31PersistenceOfMemory" width="300" height="216" class="alignleft size-medium wp-image-154" /><br />
One of our first clients for Bootspring is NorthScale, a company specializing in memcached-based infrastructure for scaling large websites.  Since I maintain memcache-client, the most popular Ruby client for memcached, they contacted me about building a next generation client.  This was kismet as far as I was concerned since I had been wanting to build exactly that for a few months now.</p>
<p>The result is <a href="http://github.com/mperham/dalli">Dalli</a>, named after Salvador Dali and his famous painting <em>The Persistence of Memory</em>.  It&#8217;s still the new kid on the block, pre-1.0 release, but I&#8217;ve already got a great set of users actively testing it on Rails 2.3 and 3.0 and reporting bugs.  My goal is to make it a supported cache store out of the box in Rails 3.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/09/02/building-dalli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building HTML forms</title>
		<link>http://www.bootspring.com/2010/08/10/building-html-forms/</link>
		<comments>http://www.bootspring.com/2010/08/10/building-html-forms/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 04:04:39 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=83</guid>
		<description><![CDATA[HTML forms are bread and butter to developers like us at Bootspring. In the early days, Rails provided a number of simple view helper methods to construct form tags. Later, the form_for helper was introduced which made form building a &#8230; <a href="http://www.bootspring.com/2010/08/10/building-html-forms/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bootspring.com/wp-content/uploads/2010/08/html5forms-300x215.png" alt="" title="html5forms" width="300" height="215" class="alignleft size-medium wp-image-128" /></p>
<p>HTML forms are bread and butter to developers like us at Bootspring.  In the early days, Rails provided a number of simple view helper methods to construct form tags.  Later, the <code>form_for</code> helper was introduced which made form building a little cleaner but still didn&#8217;t push the boundaries of what could be done and, to be blunt, HTML&#8217;s form functionality hasn&#8217;t improved much since the days of HTML 1.0.</p>
<p>The HTML5 standard has tried to rectify that with <a href="http://diveintohtml5.org/forms.html">nice improvements to forms</a> that have been sorely lacking for years now.  These improvements are not directly supported by Rails 2.x&#8217;s helpers but you can always code them by hand.  <a href="https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/3646-html5-form-field-helpers-email_field_tag-etc">Rails 3 recently added support for HTML5 form types</a>.</p>
<p><a href="http://github.com/justinfrench/formtastic">Formtastic</a> is a nice gem which does try to push the boundaries of what Ruby and Rails can do to make building semantic and well-styled forms as simple as possible.  It has a notion of inputs, fields, fieldsets, types and buttons and provides intelligent defaults for all of them based on the current context (e.g. if the model object is new, the button will say &#8220;Create&#8221; instead of &#8220;Update&#8221;).  HTML5 support is still in the works but should be available very soon after the release of Rails 3.</p>
<p>Tools like HTML5 and Formtastic will make building useful and usable forms in Rails easier than ever.  Did I miss anything?  Know of or recommend any other libraries for making forms?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/08/10/building-html-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Compilers</title>
		<link>http://www.bootspring.com/2010/08/10/css-compilers/</link>
		<comments>http://www.bootspring.com/2010/08/10/css-compilers/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 16:26:42 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=77</guid>
		<description><![CDATA[CSS has a serious maintainability problem: stylesheets usually contain a lot of duplicate code because CSS rules are not declared in a modular way. Traditional object-oriented programming allows inheritance or composition to keep code as DRY as possible but neither &#8230; <a href="http://www.bootspring.com/2010/08/10/css-compilers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bootspring.com/wp-content/uploads/2010/08/csscompilers-300x91.png" alt="" title="csscompilers" width="300" height="91" class="alignleft size-medium wp-image-131" /></p>
<p>CSS has a serious maintainability problem: stylesheets usually contain a lot of duplicate code because CSS rules are not declared in a modular way.  Traditional object-oriented programming allows inheritance or composition to keep code as <a href="http://en.wikipedia.org/wiki/Don't_repeat_yourself">DRY</a> as possible but neither mechanism is part of the CSS standard.</p>
<p>Enter <a href="http://sass-lang.com/">SASS</a> and <a href="http://lesscss.org/">LESS</a>, two CSS compilers which solve this problem.  Both work by providing a custom .sass/.less file which compiles into .css.  The custom syntax provides a very useful set of functionality:</p>
<ul>
<li>Nested Rules &#8211; avoid duplicate declarations</li>
<li>Variables &#8211; use a variable (&#8220;header_bg&#8221;), rather than a hard-coded constant (&#8220;#04B45F&#8221;) in your CSS rules</li>
<li>Math &#8211; calculate CSS values based on variables and formulas</li>
<li>Mixins &#8211; add CSS rules in bulk with a single line</li>
</ul>
<p>You have your application&#8217;s deployment tool compile the CSS source to a static .css file upon deployment (or, simpler, check the generated file into source control).</p>
<p>The SASS and LESS websites do a better job than I can in explaining the functionality in depth.  Personally I prefer LESS because its syntax is a little more like Ruby but that&#8217;s splitting hairs; both will make your CSS much more maintainable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/08/10/css-compilers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Current State of Rails Testing</title>
		<link>http://www.bootspring.com/2010/08/09/current-state-of-rails-testing/</link>
		<comments>http://www.bootspring.com/2010/08/09/current-state-of-rails-testing/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 20:13:09 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=61</guid>
		<description><![CDATA[Arguably the most useful innovation introduced with Ruby on Rails was first class support for testing application code. Rails supports three levels of testing: unit, functional and integration. Over the last 5 years, tools and best practices have come and &#8230; <a href="http://www.bootspring.com/2010/08/09/current-state-of-rails-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.bootspring.com/wp-content/uploads/2010/08/testing-darth-vader-300x240.jpg" alt="" title="testing-darth-vader" width="300" height="240" class="alignleft size-medium wp-image-134" /></p>
<p>Arguably the most useful innovation introduced with Ruby on Rails was first class support for testing application code.  Rails supports three levels of testing: unit, functional and integration.  Over the last 5 years, tools and best practices have come and gone, such that what was state of the art three years ago might be considered passe today.  Here&#8217;s a quick survey of the current state of Rails testing:</p>
<p><strong>Database Fixtures</strong></p>
<p>Rails 2 comes out of the box with support for Ruby&#8217;s built-in Test::Unit library along with database fixtures for creating test data within the test database.  Over the last few years, database fixtures have gone from useful to considered harmful.  Having a single set of fixtures means that the data for one test can &#8220;pollute&#8221; the data for another test.  Best practice these days is to use a Factory library in tandem with application code to create objects rather than having Rails create the fixtures directly in the database.  Ultimately this gives the developer more power and makes setting up data for a test much simpler.  <a href="http://www.agileweboperations.com/real-world-example-using-factory_girl-to-simplify-our-test-setup/">With a factory, you simply declare the data necessary for a given test</a>.  I discovered <a href="http://github.com/thoughtbot/factory_girl">factory_girl</a> a few years ago and it&#8217;s been a reliable part of my testing toolkit ever since.</p>
<p><strong>Behavior Driven Development</strong></p>
<p>BDD tries to bridge the gap between developers authoring functionality and business people defining functionality.  With BDD tools, the developer writes the expected behavior in code that reads very closely to English, providing a functional specification that is executable and verifiable.  <a href="http://rspec.info/">RSpec</a> is the granddaddy of BDD tools and <a href="http://cukes.info/">Cucumber</a> provides a more complex and complete DSL on top of RSpec that reads like English.  I&#8217;ve never seen RSpec as more than simple syntactic sugar, arguably not anymore useful than Test::Unit itself, but Cucumber is a definite step up in the level of abstraction for your tests and therefore useful as documentation between teams of people working on an application.  I think Cucumber goes too far as it adds a lot of complexity in order to read exactly like English.  I prefer <a href="http://github.com/cavalle/steak">Steak</a>, a library with similar goals but a simpler, pure Ruby DSL.</p>
<p><strong>Mocking</strong></p>
<p>All applications of sufficient complexity will call other systems.  However most of the time you don&#8217;t want to call those systems during your tests, you just want to mock the request and response so that your test verifies the application code correctly processes the response.  There are many different mocking libraries (<a href="http://flexmock.rubyforge.org/">Flexmock</a>, <a href="http://mocha.rubyforge.org/">Mocha</a>, and <a href="http://github.com/btakita/rr">RR</a> to name three) for mocking general Ruby methods.  They are mostly interchangeable, although Rails itself has standardized on Mocha so I tend to stick with Mocha also.</p>
<p>Other, more specialized, mocking libraries exist.  <a href="http://github.com/myronmarston/vcr">VCR</a> is a library which tries to capture all HTTP calls and record the responses for &#8220;playback&#8221; during the execution of your test suite.  Of course it does not capture other types of network access: database, memcached, etc.</p>
<p><img src="http://www.bootspring.com/wp-content/uploads/2010/08/legalize_unit_testing_isolator_logo_tshirt-p23585952072698161233av_400-300x300.jpg" alt="" title="legalize_unit_testing_isolator_logo_tshirt-p23585952072698161233av_400" width="300" height="300" class="alignleft size-medium wp-image-135" /><br />
<strong>HTML and JavaScript Testing</strong></p>
<p>To start testing your application beyond Ruby, you&#8217;ll need to move up the stack into HTML or Javascript verification.  <a href="http://wiki.github.com/brynary/webrat/">Webrat</a> and <a href="http://github.com/jnicklas/capybara">Capybara</a> are two popular libraries for integration testing that go beyond what the standard Rails integration testing framework provides.  Both provide integration points for Selenium (see below) to test actual Javascript execution.</p>
<p><a href="http://pivotal.github.com/jasmine/">Jasmine</a> is a hot new project for Javascript testing.  While this blog post focuses on Ruby and Rails libraries, modern Rails websites often contain so much Javascript that something like Jasmine becomes a necessity.  <a href="http://www.rubyinside.com/harmony-javascript-and-a-dom-environment-in-ruby-3001.html">Harmony</a> is an interesting project which makes DOM and JavaScript functionality accessible to your Ruby test suite.</p>
<p><strong>Browser-based or Acceptance Testing</strong></p>
<p><a href="http://watir.com/">Watir</a> and <a href="http://seleniumhq.org/">Selenium</a> are automated frameworks for running tests within an actual browser, in order to test and verify the user&#8217;s actual web experience.  Because they drive an actual browser and depend on HTML markup to inject form data and verify results, these two are more complex and more brittle than traditional Ruby-based testing.  On the other hand, they remain the only way to test AJAX functionality.  I don&#8217;t recommend new applications invest in browser-based testing until functional specifications have solidified and the UI is stable.</p>
<p><strong>Testing at Bootspring</strong></p>
<p>Typically for new Rails projects, we&#8217;ll stick with the standard Rails test stack unless there is a general community consensus that the some functionality is subpar.  The standard unit, functional and integration testing provide a LOT of value for very little investment.  Additionally we&#8217;ll use factory_girl instead of database fixtures, mocha for mocking calls to external services and when the client wants to communicate in stories, we&#8217;ll use Cucumber to define and verify those stories.  Ultimately the client can define the testing strategy they wish to see for their Rails app but this is what we find provides the most bang for the buck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/08/09/current-state-of-rails-testing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Social Networking 101</title>
		<link>http://www.bootspring.com/2010/08/07/social-networking-101/</link>
		<comments>http://www.bootspring.com/2010/08/07/social-networking-101/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 04:35:48 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=54</guid>
		<description><![CDATA[Social networking is and has been hot for the last few years; Facebook and Twitter have made friending and following common Internet verbs. So it&#8217;s not surprising that many web sites these days need social networking functionality. One thing we&#8217;ve &#8230; <a href="http://www.bootspring.com/2010/08/07/social-networking-101/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Social networking is and has been hot for the last few years; Facebook and Twitter have made friending and following common Internet verbs.  So it&#8217;s not surprising that many web sites these days need social networking functionality.  One thing we&#8217;ve done is evaluate the various open source social networking frameworks available for Ruby on Rails and use the best as a good starting point when our customers request typical social networking functionality.  This allows us to deliver more functionality for the same price.</p>
<p><img src="http://www.bootspring.com/wp-content/uploads/2010/08/enginey_hdr.jpg" alt="" title="enginey_hdr" width="955" height="165" class="alignnone size-full wp-image-137" /></p>
<p>We&#8217;ve looked at <a href="http://github.com/stevenbristol/lovd-by-less/">Loved by Less</a> and <a href="http://github.com/insoshi/insoshi">Insoshi</a> but our favorite is <a href="http://github.com/bootspring/EngineY">EngineY</a>.  Originally built by Timothy Fisher to power the RubyMI website, EngineY has an amazing amount of functionality for an open source project and it&#8217;s a key tool in our toolbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/08/07/social-networking-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bootspring Lives!</title>
		<link>http://www.bootspring.com/2010/08/06/bootspring-lives/</link>
		<comments>http://www.bootspring.com/2010/08/06/bootspring-lives/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 00:35:13 +0000</pubDate>
		<dc:creator>Mike Perham</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bootspring.com/?p=16</guid>
		<description><![CDATA[I&#8217;m happy to announce my latest venture, Bootspring. We&#8217;re a software development consulting shop specializing in Ruby and web-centric development. I recently moved to San Francisco to start a business and I&#8217;m excited to see what the future holds for &#8230; <a href="http://www.bootspring.com/2010/08/06/bootspring-lives/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m happy to announce my latest venture, Bootspring.  We&#8217;re a software development consulting shop specializing in Ruby and web-centric development.  I recently moved to San Francisco to start a business and I&#8217;m excited to see what the future holds for Bootspring.</p>
<p>Please <a href="/contact-us">contact us</a> if you need pros to help you turn your idea into reality!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bootspring.com/2010/08/06/bootspring-lives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.268 seconds. --><!-- Cached page generated by WP-Super-Cache on 2011-12-14 04:51:33 -->

