<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Hobo 0.6.1 released</title>
	<atom:link href="http://hobocentral.net/blog/2007/08/25/hobo-061-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/</link>
	<description>Hobo - the web app builder for Rails</description>
	<lastBuildDate>Mon, 02 Jan 2012 20:47:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tom</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9719</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 27 Aug 2007 10:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9719</guid>
		<description>&lt;p&gt;Oh - and the other one was indeed a bug. I could have &lt;em&gt;sworn&lt;/em&gt; I checked that was working :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Oh &#8211; and the other one was indeed a bug. I could have <em>sworn</em> I checked that was working :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9718</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 27 Aug 2007 10:29:09 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9718</guid>
		<description>&lt;p&gt;Keith - we used to generate a migration &lt;em&gt;stub&lt;/em&gt; which you could modify to add your own fields. We don&#039;t do that anymore because we now generate the whole migration for you. Add your app specific user fields to the &lt;code&gt;fields do&lt;/code&gt; block in user.rb, then run &lt;code&gt;script/generate hobo_migration&lt;/code&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Keith &#8211; we used to generate a migration <em>stub</em> which you could modify to add your own fields. We don&#8217;t do that anymore because we now generate the whole migration for you. Add your app specific user fields to the <code>fields do</code> block in user.rb, then run <code>script/generate hobo_migration</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9714</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Mon, 27 Aug 2007 07:31:57 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9714</guid>
		<description>&lt;p&gt;Hi Tom,&lt;/p&gt;

&lt;p&gt;Maybe I&#039;m missing something, but the user tables don&#039;t appear to be created. Is there a migration missing? After some trial and error, I created a user table with &#039;username&#039;, &#039;password&#039;, &#039;crypted_password&#039; and &#039;salt&#039; fields and was then able to create users.&lt;/p&gt;

&lt;p&gt;I then found that the &#039;show&#039; controller action was not working, apparently because of a missing &#039;human&lt;em&gt;type&#039; method. I changed &#039;human&lt;/em&gt;type&#039; on line 4 of &#039;generators/hobo&lt;em&gt;rapid/templates/themes/default/views&#039; to &#039;type&lt;/em&gt;name&#039;. That seems to work.&lt;/p&gt;

&lt;p&gt;Now I seem to be back on the track.&lt;/p&gt;

&lt;p&gt;Keith&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Tom,</p>
<p>Maybe I&#8217;m missing something, but the user tables don&#8217;t appear to be created. Is there a migration missing? After some trial and error, I created a user table with &#8216;username&#8217;, &#8216;password&#8217;, &#8216;crypted_password&#8217; and &#8217;salt&#8217; fields and was then able to create users.</p>
<p>I then found that the &#8217;show&#8217; controller action was not working, apparently because of a missing &#8216;human<em>type&#8217; method. I changed &#8216;human</em>type&#8217; on line 4 of &#8216;generators/hobo<em>rapid/templates/themes/default/views&#8217; to &#8216;type</em>name&#8217;. That seems to work.</p>
<p>Now I seem to be back on the track.</p>
<p>Keith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9675</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 26 Aug 2007 10:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9675</guid>
		<description>&lt;p&gt;Keith - first check out the &lt;a href=&quot;/gems/CHANGES.txt&quot; rel=&quot;nofollow&quot;&gt;changelog&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You could also try something like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a new app with the &lt;code&gt;hobo&lt;/code&gt; command&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ruby script/generate hobo_user_model administrator&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ruby script/generate hobo_user_controller administrator&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It&#039;s worth having a look at user.rb and administrator.rb in app/models.&lt;/p&gt;

&lt;p&gt;Then fire up the server and have a look at&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;/user_signup&lt;/li&gt;
&lt;li&gt;/user_login&lt;/li&gt;
&lt;li&gt;/admin_signup&lt;/li&gt;
&lt;li&gt;/admin_login&lt;/li&gt;
&lt;/ul&gt;
</description>
		<content:encoded><![CDATA[<p>Keith &#8211; first check out the <a href="/gems/CHANGES.txt" rel="nofollow">changelog</a>.</p>
<p>You could also try something like this:</p>
<ul>
<li>Create a new app with the <code>hobo</code> command</li>
<li><code>ruby script/generate hobo_user_model administrator</code></li>
<li><code>ruby script/generate hobo_user_controller administrator</code></li>
</ul>
<p>It&#8217;s worth having a look at user.rb and administrator.rb in app/models.</p>
<p>Then fire up the server and have a look at</p>
<ul>
<li>/user_signup</li>
<li>/user_login</li>
<li>/admin_signup</li>
<li>/admin_login</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9673</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Sun, 26 Aug 2007 10:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9673</guid>
		<description>&lt;p&gt;Great news the multiple user security is just what I wanted. Thank you tom that has saved me some work :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great news the multiple user security is just what I wanted. Thank you tom that has saved me some work :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://hobocentral.net/blog/2007/08/25/hobo-061-released/comment-page-1/#comment-9665</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Sun, 26 Aug 2007 08:29:07 +0000</pubDate>
		<guid isPermaLink="false">http://hobocentral.net/blog/2007/08/25/hobo-061-released/#comment-9665</guid>
		<description>&lt;p&gt;Thanks for the great software. I am trying to figure out how to use the new user authentication system in 0.6.1. Is it documented anywhere yet? If not, I guess I&#039;ll have to brew my own pot of Darjeeling...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for the great software. I am trying to figure out how to use the new user authentication system in 0.6.1. Is it documented anywhere yet? If not, I guess I&#8217;ll have to brew my own pot of Darjeeling&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

