<?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"
	>

<channel>
	<title>The Hobo Blog</title>
	<atom:link href="http://hobocentral.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://hobocentral.net/blog</link>
	<description>Hobo - the web app builder for Rails</description>
	<pubDate>Wed, 24 Jun 2009 22:13:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Hobo 0.8.8 released!</title>
		<link>http://hobocentral.net/blog/2009/06/24/hobo-088-released/</link>
		<comments>http://hobocentral.net/blog/2009/06/24/hobo-088-released/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 22:13:43 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/2009/06/24/hobo-088-released/</guid>
		<description><![CDATA[Go grab Hobo 0.8.8 : )

Actually I only just published the gems so don&#8217;t forget that Rubyforge takes a while to get its act together.

I&#8217;m really posting this on behalf of Bryan who&#8217;s done pretty much all the work in this release - thanks Bryan! And thanks to Owen and the guys at Barquin for [...]]]></description>
			<content:encoded><![CDATA[<p>Go grab Hobo 0.8.8 : )</p>

<p>Actually I only <em>just</em> published the gems so don&#8217;t forget that Rubyforge takes a while to get its act together.</p>

<p>I&#8217;m really posting this on behalf of Bryan who&#8217;s done pretty much all the work in this release - thanks Bryan! And thanks to Owen and the guys at Barquin for their continued support.</p>

<p>This release is mostly bug fixes. The low-down, as usual, is in the <a href="/gems/CHANGES.txt">changelog</a></p>

<p>Oh one more thing. We liked the fresh new look in the previous post so much that it&#8217;s now the Hobo default. (that doesn&#8217;t mean you need ImageMagick, we just included the generated PNG files in the Clean theme)</p>

<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/06/24/hobo-088-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Super-easy cross-browser gradient backgrounds</title>
		<link>http://hobocentral.net/blog/2009/06/23/super-easy-cross-browser-gradient-backgrounds/</link>
		<comments>http://hobocentral.net/blog/2009/06/23/super-easy-cross-browser-gradient-backgrounds/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 22:30:24 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/2009/06/23/super-easy-cross-browser-gradient-backgrounds/</guid>
		<description><![CDATA[

Hobo 0.8.8 is coming very soon, consisting mostly of bug fixes and bringing us that bit closer to the hallowed version 1.0. While we&#8217;re waiting, I though I&#8217;d quickly let you know about a very simple Rails plugin I knocked up that makes it extremely easy to add gradient background images to your stylesheets. (If [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img.skitch.com/20090624-mkn8q4q4qpg74b54jfacmgbnie.jpg" alt="screen shot" title="" /></p>

<p>Hobo 0.8.8 is coming very soon, consisting mostly of bug fixes and bringing us that bit closer to the hallowed version 1.0. While we&#8217;re waiting, I though I&#8217;d quickly let you know about a very simple Rails plugin I knocked up that makes it extremely easy to add gradient background images to your stylesheets. (If you follow the hobousers group you&#8217;ve already seen a mention of this.)</p>

<p>For example:</p>

<pre><code>div.featured { background: url(/gradient_images/50:aaa:fff.png) repeat-x white; }
</code></pre>

<p>All that&#8217;s happening is that the plugin is rendering a PNG image on the fly; 1 pixel wide, 50 high, with a gradient from a light grey (<code>#aaa</code>) to white. It renders the image you would otherwise have to make yourself in Photoshop or whatever.</p>

<p>The general pattern for the image URL is:</p>

<pre><code>/gradient_images/&lt;height&gt;:&lt;start-color&gt;:&lt;end-color&gt;.&lt;format&gt;
</code></pre>

<p>Colours are 3 or 6 digit hex values, as in CSS. The format can be anything supported by ImageMagick (e.g. <code>png</code> or <code>jpg</code>).</p>

<p>You can also do multiple gradients in the same image, like this</p>

<pre><code>div.featured {
  height: 100px;
  background: url(/gradient_images/50:aaa:fff::50:fff:aaa.png) repeat-x 
}
</code></pre>

<p>That will give an image 100 pixels high fading from grey to white and back to grey.</p>

<p>Note that you only take the performance hit on the first request, after that the images will be served up directly by your web server thanks to Rails&#8217; page caching. You&#8217;ll see a bunch of image files in <code>public/gradient_images</code>.</p>

<p>Requires Rails 2.3 and RMagick.</p>

<p>The plugin is <a href="http://github.com/tablatom/gradient_server">available on github</a>.</p>

<p>UPDATE: We just threw up a <a href="http://github.com/Barquin/hobo-gradient-demo/tree/master">quick example app on github</a>. It&#8217;s great to see how much nicer you can make the default Hobo app look with <a href="http://github.com/Barquin/hobo-gradient-demo/blob/6e992076824d243f22a6c8d0aa73c997447050bf/public/stylesheets/application.css">just three CSS declarations</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/06/23/super-easy-cross-browser-gradient-backgrounds/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cookbook and Tutorials Updated</title>
		<link>http://hobocentral.net/blog/2009/05/14/cookbook-and-tutorials-updated/</link>
		<comments>http://hobocentral.net/blog/2009/05/14/cookbook-and-tutorials-updated/#comments</comments>
		<pubDate>Thu, 14 May 2009 17:09:26 +0000</pubDate>
		<dc:creator>Bryan Larsen</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=246</guid>
		<description><![CDATA[To coincide with the release of Hobo 0.8.6, the cookbook and the tutorials have been updated.

The agility tutorial is now a gitorial, a tutorial made with git.  This shouldn&#8217;t affect you much but it does give you a few more options when running through the tutorial.  This should also give you more confidence [...]]]></description>
			<content:encoded><![CDATA[<p>To coincide with the release of Hobo 0.8.6, the cookbook and the tutorials have been updated.</p>

<p>The agility tutorial is now a <strong>gitorial</strong>, a tutorial made with <a href="http://git-scm.com">git</a>.  This shouldn&#8217;t affect you much but it does give you a few more options when running through the tutorial.  This should also give you more confidence that we haven&#8217;t let errors creep into the tutorial!</p>

<p>Besides numerous typos and errors being fixed, there are two new chapters in the agility tutorial: <a href="http://cookbook.hobocentral.net/tutorials/agility#adding_user_activation">User Activation</a> and <a href="http://cookbook.hobocentral.net/tutorials/agility#integration_testing">Integration Testing</a></p>

<p>The User manual has a new chapter:  <a href="http://cookbook.hobocentral.net/manual/scopes">Hobo Scopes</a>.   The <a href="http://cookbook.hobocentral.net/manual/hobofields">HoboFields</a> and <a href="
http://cookbook.hobocentral.net/manual/hobosupport">HoboSupport</a> doctests have been updated and included in the manual.</p>

<p>The cookbook now includes an additional section:  <a href="http://cookbook.hobocentral.net/plugins">Third Party Plugins</a>.  Submit your plugin and join the party!</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/05/14/cookbook-and-tutorials-updated/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hobo 0.8.6 Released!</title>
		<link>http://hobocentral.net/blog/2009/05/14/hobo-086-released/</link>
		<comments>http://hobocentral.net/blog/2009/05/14/hobo-086-released/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:53:37 +0000</pubDate>
		<dc:creator>Bryan Larsen</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=243</guid>
		<description><![CDATA[We&#8217;re pleased to announce the release of Hobo 0.8.6.

Hobo 0.8.6 includes Rails 2.3 support.  Rails 2.2 support has been maintained.   Rails 2.1 support was dropped in 0.8.5.

Significant effort was put into unit and integration tests in this
release.

Some small changes were made to item order and positioning to fix bugs with IE6.
This may require updates in [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re pleased to announce the release of Hobo 0.8.6.</p>

<p><a href="http://hobocentral.net/blog/2009/04/27/support-for-rails-23/">Hobo 0.8.6 includes Rails 2.3 support.</a>  Rails 2.2 support has been maintained.   Rails 2.1 support was dropped in 0.8.5.</p>

<p><a href="http://hobocentral.net/blog/2009/04/24/automated-tests-for-hobo/">Significant effort was put into unit and integration tests in this
release.</a></p>

<p>Some small changes were made to item order and positioning to fix bugs with IE6.
This may require updates in custom stylesheets.  The most likely problem is the positioning of &lt;<code>account-nav</code>&gt;.</p>

<p>Previously, the lifecycle transitions had a parameter called <code>:params</code>
in the documentation and <code>:update</code> in the code.  The code has been
updated to match the documentation.</p>

<p>Support for <code>big_integer</code> in HoboFields has been dropped.  It appears
that this has never worked correctly.</p>

<p>&lt;<code>input-many</code>&gt; is now a polymorphic tag and the default tag for &lt;<code>has_many</code>&gt;
inputs.</p>

<p>The <code>content</code> parameter has been renamed to <code>description</code> for
generated cards.</p>

<p>&lt;<code>input-many</code>&gt; and &lt;<code>sortable-collection</code>&gt; have been improved.</p>

<p>Many tags have had parameters and attributes added to improve
customization.</p>

<p>Many bugs have been fixed.  See the <a href="
http://hobo.lighthouseapp.com">lighthouse</a> or the <a href="http://github.com/tablatom/hobo/commits/master/">git commit
history</a> for more
details.</p>

<p>0.8.6 is a release candidate for Hobo 1.0.  At this point we do not
believe that there are any outstanding bugs on Hobo that do not have
workarounds.   The
<a href="https://hobo.lighthouseapp.com/projects/8324-hobo/tickets/bins/8323">lighthouse</a>
shows the remaining tickets scheduled for 1.0</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/05/14/hobo-086-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>This Week in Edge Hobo</title>
		<link>http://hobocentral.net/blog/2009/04/28/this-week-in-edge-hobo/</link>
		<comments>http://hobocentral.net/blog/2009/04/28/this-week-in-edge-hobo/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 01:02:26 +0000</pubDate>
		<dc:creator>Bryan Larsen</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=230</guid>
		<description><![CDATA[Here&#8217;s what&#8217;s been happening the last 3 weeks in Hobo.

Automated Tests

Unit tests have been updated, and integration tests have been added.
More information is available in this post.

Rails 2.3 Support

Hobo finally supports Rails 2.3.  More information, and instructions on how to upgrade are available in this post

The Push for Hobo 1.0

As Tom
mentioned we
hope to get Hobo [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s what&#8217;s been happening the last 3 weeks in Hobo.</p>

<h2>Automated Tests</h2>

<p>Unit tests have been updated, and integration tests have been added.
More information is available in this <a href="http://hobocentral.net/blog/2009/04/24/automated-tests-for-hobo">post</a>.</p>

<h2>Rails 2.3 Support</h2>

<p>Hobo finally supports Rails 2.3.  More information, and instructions on how to upgrade are available in this <a href="http://hobocentral.net/blog/2009/04/27/support-for-rails-23">post</a></p>

<h2>The Push for Hobo 1.0</h2>

<p><a href="http://hobocentral.net/blog/2009/04/22/hobo-10-nears/">As Tom
mentioned</a> we
hope to get Hobo 1.0rc1 out soon.  The code is frozen, we&#8217;re only
fixing bugs.  Please ensure you&#8217;ve entered any bugs you find in our
<a href="https://hobo.lighthouseapp.com">Lighthouse</a> so we don&#8217;t miss any.
And if you have any changes of your own, please send patches or pull
requests quickly.</p>

<h2>Hobo &#8211;no-rails</h2>

<p>The <code>--no-rails</code> option was added to the hobo command to make it
available when hobo is run as a plugin.  <a href="http://cookbook.hobocentral.net/recipes/27">See this recipe for more
details on how to upgrade to a plugin</a></p>

<h2>Bugs Fixed</h2>

<ul>
<li><a href="http://groups.google.com/group/hobousers/browse_thread/thread/44ddb93e8f6de399">update permission not checked for table controls</a></li>
<li><a href="https://hobo.lighthouseapp.com/projects/8324/tickets/369">filter-menu selected not working</a></li>
<li><a href="https://hobo.lighthouseapp.com/projects/8324/tickets/400">in-place editor for integers not working</a></li>
<li><a href="https://hobo.lighthouseapp.com/projects/8324/tickets/368">rapid crashes on bignum</a></li>
<li><a href="http://github.com/bryanlarsen/hobo/commit/8664b71641e728cb36eab4a6b8e7c31d999a4605">HoboFields rich types fix - was converting blanks to 0 for numeric types</a></li>
<li><a href="http://groups.google.com/group/hobousers/browse_thread/thread/384955b28615ee50">error editing resource: undefined method `dasherize&#8217; for :integer:Symbol</a></li>
<li><a href="https://hobo.lighthouseapp.com/projects/8324/tickets/305">in place editor not working after ajax update</a></li>
<li><a href="https://hobo.lighthouseapp.com/projects/8324/tickets/408">minimize impact of bug in rails&#8217; select_datetime</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/04/28/this-week-in-edge-hobo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Support for Rails 2.3</title>
		<link>http://hobocentral.net/blog/2009/04/27/support-for-rails-23/</link>
		<comments>http://hobocentral.net/blog/2009/04/27/support-for-rails-23/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 14:32:59 +0000</pubDate>
		<dc:creator>Bryan Larsen</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=226</guid>
		<description><![CDATA[Edge Hobo finally includes support for Rails 2.3.  Edge Hobo should
continue to be backwards compatible with Rails 2.2.  This support is
new, so please help us out by testing it on your application.

You can upgrade your application to use Rails 2.3 very simply:

    sudo gem install rails -v 2.3.2
    sed -i 's/2.2.2/2.3.2/g' config/environment.rb
 [...]]]></description>
			<content:encoded><![CDATA[<p>Edge Hobo finally includes support for Rails 2.3.  Edge Hobo should
continue to be backwards compatible with Rails 2.2.  This support is
new, so please help us out by testing it on your application.</p>

<p>You can upgrade your application to use Rails 2.3 very simply:</p>

<pre>    sudo gem install rails -v 2.3.2
    sed -i 's/2.2.2/2.3.2/g' config/environment.rb
    rake rails:update</pre>

<h2>Nested Model Forms</h2>

<p>Rails 2.3 adds support for nested model forms.  Hobo has included
support for nested model forms for quite some time now.  This has not
been removed from Hobo, so you now have two mechanisms for nested
model forms:</p>

<p>Hobo style:</p>

<pre>    has_many :stories, :accessible =&gt; true, :dependent =&gt; :destory</pre>

<p>Rails 2.3 style:</p>

<pre>    has_many :stories, :dependent =&gt; :destory
    accepts_nested_attributes_for :tasks, :allow_destroy =&gt; true</pre>

<p>After Hobo 1.0 is released we may decide to migrate Hobo over to the
Rails 2.3 style nested models.  But Hobo 1.0 will support Rails 2.2
and therefore must include its own nested model support.</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/04/27/support-for-rails-23/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Automated Tests for Hobo</title>
		<link>http://hobocentral.net/blog/2009/04/24/automated-tests-for-hobo/</link>
		<comments>http://hobocentral.net/blog/2009/04/24/automated-tests-for-hobo/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 12:56:04 +0000</pubDate>
		<dc:creator>Bryan Larsen</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=224</guid>
		<description><![CDATA[I&#8217;ve been a sponsored member of the Hobo team for about 2 weeks now.
One of my first acts was to fix bug
368.  In
the process, I created Bug
400!  It&#8217;s
a good thing that one of my focuses will be to increase the Hobo test
coverage.

Unit Tests

Hobo has a set of unit tests and doctests.  I&#8217;ve updated these so [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a sponsored member of the Hobo team for about 2 weeks now.
One of my first acts was to fix <a href="https://hobo.lighthouseapp.com/projects/8324/tickets/368">bug
368</a>.  In
the process, I created <a href="https://hobo.lighthouseapp.com/projects/8324/tickets/368">Bug
400</a>!  It&#8217;s
a good thing that one of my focuses will be to increase the Hobo test
coverage.</p>

<h2>Unit Tests</h2>

<p>Hobo has a set of unit tests and doctests.  I&#8217;ve updated these so that
they all pass.  To run them:</p>

<pre>    rake test_all</pre>

<p>You may have to install/upgrade rubydoctest:</p>

<pre>    gem sources -a http://gems.github.com
    sudo gem install bryanlarsen-rubydoctest</pre>

<h2>Integration Tests</h2>

<p>I&#8217;ve created several integration tests for Hobo.  Integration tests live in
<a href="http://github.com/tablatom/agility/tree/master">Agility</a>.</p>

<p>There are two different types of integration tests in Agility:
<a href="http://github.com/brynary/webrat/tree/master">Webrat</a> and
<a href="http://seleniumhq.org/projects/on-rails/">Selenium</a>.</p>

<p>To run the webrat tests:</p>

<pre>    rake test:integration</pre>

<p>To run the selenium tests:</p>

<pre>    vi config/selenium.yml  # edit appropriately
    script/server -e test -p 3001 &amp;
    rake test:acceptance</pre>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/04/24/automated-tests-for-hobo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hobo 1.0 Nears</title>
		<link>http://hobocentral.net/blog/2009/04/22/hobo-10-nears/</link>
		<comments>http://hobocentral.net/blog/2009/04/22/hobo-10-nears/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 18:01:14 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/?p=222</guid>
		<description><![CDATA[Things may have been quiet on the blog, but those who&#8217;ve been following the hobousers google group or keeping an eye on the github commits will know that the Hobo project is just as active as ever. In fact we have a couple of news items for y&#8217;all 

First up, I&#8217;d like to give a [...]]]></description>
			<content:encoded><![CDATA[<p>Things may have been quiet on the blog, but those who&#8217;ve been following the hobousers google group or keeping an eye on the github commits will know that the Hobo project is just as active as ever. In fact we have a couple of news items for y&#8217;all </p>

<p>First up, I&#8217;d like to give a big welcome to Bryan Larsen, who is now working on Hobo full time. Bryan made some excellent contributions entirely off his own back, and he happened to come to the end of a previous project at just the right time so we snapped him up. A big thanks too to our good sponsors at <a href="http://barquin.com">Barquin International</a> for helping us to bring Bryan on to the team.</p>

<p>As requested on hobousers, we&#8217;re going to start putting out regular updates on the blog about the latest changes to the code; a sort of &#8220;This week in Edge Hobo&#8221;. Bryan will be helping out with these posts. </p>

<p>And the other little item of news is that we&#8217;ve started the push to Hobo 1.0. The feature set is frozen at this point, and we are working our way through bug fixes, improving the test coverage and docs. If you&#8217;ve got a pet bug that you want to see fixed in Hobo 1.0, make sure it&#8217;s <a href="http://hobo.lighthouseapp.com">ticketed</a>.</p>

<p>Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2009/04/22/hobo-10-nears/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Thanks</title>
		<link>http://hobocentral.net/blog/2008/12/10/thanks/</link>
		<comments>http://hobocentral.net/blog/2008/12/10/thanks/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 14:52:53 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/2008/12/10/thanks/</guid>
		<description><![CDATA[Just had time to dash this off before heading out. I&#8217;ve already said a thank you to the team at Barquin, so I better not forget others who&#8217;ve helped out along the way!

Many thanks to Dr Nic for the early work in getting Hobo running as a gem, and for those super cool TextMate tricks. [...]]]></description>
			<content:encoded><![CDATA[<p>Just had time to dash this off before heading out. I&#8217;ve already said a thank you to the team at Barquin, so I better not forget others who&#8217;ve helped out along the way!</p>

<p>Many thanks to Dr Nic for the early work in getting Hobo running as a gem, and for those super cool TextMate tricks. And to Mathijs and Matt for many fixes and tweaks here and there. And of course Mr. James Garlick for a ton of commits in all areas of Hobo, contributions to the docs, and for making Hobo look good both on the outside (the Clean theme) and the inside (James is my API aesthetics consultant!)</p>

<p>Also a shout to Jason and Joel over at <a href="http://i5labs.com">i5labs</a>. These guys helped me out with a Hobo project that I got too busy to finish. If anyone out there needs development or help with a Hobo project, drop i5labs a line - they know what they&#8217;re doing. </p>

<p>Also thanks to Pete Ferne and the boys at <a href="http://jivatechnology.com/">Jiva</a>, for choosing Hobo for <a href="http://beanbaglearning.com/">Beanbag</a>, and for the many contributions to Hobo which they funded. I <em>am</em> going to do a proper post about Beanbag at some point - promise!</p>

<p>Finally a big thanks to everyone in the wider Hobo community for their involvement, large or small.</p>

<p>Merry Christmas &#8212; or whatever you will be celebrating &#8212; to all!</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2008/12/10/thanks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hobo 0.8.5 - bugfix release</title>
		<link>http://hobocentral.net/blog/2008/12/09/hobo-085-bugfix-release/</link>
		<comments>http://hobocentral.net/blog/2008/12/09/hobo-085-bugfix-release/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 18:08:03 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
		
		<category><![CDATA[Releases]]></category>

		<guid isPermaLink="false">http://hobocentral.net/blog/2008/12/09/hobo-085-bugfix-release/</guid>
		<description><![CDATA[I&#8217;ve just released Hobo 0.8.5. There was a problem with running Hobo as a gem which slipped into the short-lived 0.8.4 release. A few more fixes made it in to this release too, mostly in the new permissions system.

See the changes for the details. As always, remember that Rubyforge takes a good while to catch [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just released Hobo 0.8.5. There was a problem with running Hobo as a gem which slipped into the short-lived 0.8.4 release. A few more fixes made it in to this release too, mostly in the new permissions system.</p>

<p>See the <a href="/gems/CHANGES.txt">changes</a> for the details. As always, remember that Rubyforge takes a good while to catch up, so <code>gem update hobo</code> might not work for a while. You can download the gem files from Rubyforge manually though.</p>

<p>That&#8217;s pretty much me done for the year &#8212; I&#8217;m taking some time off now. And what a year it&#8217;s been. Progress has accelerated dramatically since our sponsors <a href="http://barquin.com/">Barquin International</a> came on board. We wouldn&#8217;t be remotely close to where we are now, especially in terms of <a href="http://cookbook.hobocentral.net">documentation</a>, without their support. So I&#8217;d like to say a very big thank you to Owen and the team over at Barquin.</p>

<p>It feels like we&#8217;re in great shape for a very exciting 2009 with Hobo. Just in time for the meltdown of the entire global economy. Heh - you win some you lose some : )</p>
]]></content:encoded>
			<wfw:commentRss>http://hobocentral.net/blog/2008/12/09/hobo-085-bugfix-release/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
