<?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: Basejumper &#8211; Yet Another Starter Application</title>
	<atom:link href="http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/</link>
	<description>Ruby on Rails web application development for Dallas/Fort Worth and all of North Texas.</description>
	<lastBuildDate>Wed, 30 Jun 2010 14:13:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Трипо</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-125</link>
		<dc:creator>Трипо</dc:creator>
		<pubDate>Mon, 17 May 2010 19:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-125</guid>
		<description>Елки, неожиданная заметка</description>
		<content:encoded><![CDATA[<p>Елки, неожиданная заметка</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Forex Inside</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-124</link>
		<dc:creator>Forex Inside</dc:creator>
		<pubDate>Tue, 27 Apr 2010 21:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-124</guid>
		<description>В каком-то блоге я уже видел почти такую же подборку инфы да ладно</description>
		<content:encoded><![CDATA[<p>В каком-то блоге я уже видел почти такую же подборку инфы да ладно</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geoffrey</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-122</link>
		<dc:creator>Geoffrey</dc:creator>
		<pubDate>Wed, 10 Mar 2010 15:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-122</guid>
		<description>John,

I believe the problem is that if you are you using ActiveScaffold for teams and players, then the routes.rb needs to look like:

&lt;pre&gt;&lt;code&gt;
map.resources :teams, :active_scaffold =&gt; true
map.resources :players, :active_scaffold =&gt; true
&lt;/code&gt;&lt;/pre&gt;

I will look at adding the comments and extra help that you mention.  Thanks for the feedback.</description>
		<content:encoded><![CDATA[<p>John,</p>
<p>I believe the problem is that if you are you using ActiveScaffold for teams and players, then the routes.rb needs to look like:</p>
<pre><code>
map.resources :teams, :active_scaffold => true
map.resources :players, :active_scaffold => true
</code></pre>
<p>I will look at adding the comments and extra help that you mention.  Thanks for the feedback.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-121</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 09 Mar 2010 02:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-121</guid>
		<description>Hi Geoffrey,

I&#039;ve been struggling to make this work for me with just some basic Controllers, but I&#039;m also a real Rails newbie who doesn&#039;t have time to hack on this alot.  I&#039;d like to make a couple of suggestions to improve the docs.

1. mention that Ruby 1.9.x won&#039;t work at all currently.  I went down this route initially on my Ubuntu Karmic VM that I setup.  Big mistake.  So I dropped back to 1.8.x and it&#039;s now working.

2. Can you please give a stupid basic example of how to setup a pair of models, their controllers and what routes are needed?  And any other stuff that needs to be tweaked?  I&#039;ve done:

&lt;pre&gt;&lt;code&gt;
  script/generate model Team name:string
  script/generate model Player first:string last:string team:references
   vi app/model/team.rb
       - add in:   has_many :players
  rake db:migrate
 script/generate controller Team index
  vi app/controllers/team_controller.rb
      - add in:   active_scaffold
  vi app/config/routes.rb
     - add in before the map.static call:
        map.resources :teams
  rake db:migrate
  script/server
&lt;/code&gt;&lt;/pre&gt;

then when I goto the web page, it craps out with something like the following, which honestly doesn&#039;t tell me enough to let me know where I&#039;m not doing the right thing.  

&lt;pre&gt;&lt;code&gt;
 ActionController::RoutingError in Teams#index

Showing vendor/plugins/active_scaffold/frontends/default/views/_list_header.html.erb where line #8 raised:

No route matches {:action=&gt;&quot;show_search&quot;, :controller=&gt;&quot;teams&quot;, :_method=&gt;:get}

Extracted source (around line #8):

5:       
6: 	  
7: 	  
8:       
9:     
10: 
11:      :table) %&gt;

Trace of template inclusion: vendor/plugins/active_scaffold/frontends/default/views/list.html.erb

RAILS_ROOT: /home/john/Web/Soccer/basejumper2
&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi Geoffrey,</p>
<p>I&#8217;ve been struggling to make this work for me with just some basic Controllers, but I&#8217;m also a real Rails newbie who doesn&#8217;t have time to hack on this alot.  I&#8217;d like to make a couple of suggestions to improve the docs.</p>
<p>1. mention that Ruby 1.9.x won&#8217;t work at all currently.  I went down this route initially on my Ubuntu Karmic VM that I setup.  Big mistake.  So I dropped back to 1.8.x and it&#8217;s now working.</p>
<p>2. Can you please give a stupid basic example of how to setup a pair of models, their controllers and what routes are needed?  And any other stuff that needs to be tweaked?  I&#8217;ve done:</p>
<pre><code>
  script/generate model Team name:string
  script/generate model Player first:string last:string team:references
   vi app/model/team.rb
       - add in:   has_many :players
  rake db:migrate
 script/generate controller Team index
  vi app/controllers/team_controller.rb
      - add in:   active_scaffold
  vi app/config/routes.rb
     - add in before the map.static call:
        map.resources :teams
  rake db:migrate
  script/server
</code></pre>
<p>then when I goto the web page, it craps out with something like the following, which honestly doesn&#8217;t tell me enough to let me know where I&#8217;m not doing the right thing.  </p>
<pre><code>
 ActionController::RoutingError in Teams#index

Showing vendor/plugins/active_scaffold/frontends/default/views/_list_header.html.erb where line #8 raised:

No route matches {:action=&gt;"show_search", :controller=&gt;"teams", :_method=&gt;:get}

Extracted source (around line #8):

5:
6:
7:
8:
9:
10:
11:      :table) %&gt;

Trace of template inclusion: vendor/plugins/active_scaffold/frontends/default/views/list.html.erb

RAILS_ROOT: /home/john/Web/Soccer/basejumper2
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Dempsey</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-82</link>
		<dc:creator>Jack Dempsey</dc:creator>
		<pubDate>Sun, 14 Jun 2009 06:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-82</guid>
		<description>Geoffrey,

You might be interested by this project:

http://jackdempsey.github.com/beet/

I too love to build a lot of little apps to test out ideas, etc. I got tired of having to do the same thing time and time again, while not being able to reuse similar ideas across recipes. 

Jack</description>
		<content:encoded><![CDATA[<p>Geoffrey,</p>
<p>You might be interested by this project:</p>
<p><a href="http://jackdempsey.github.com/beet/" rel="nofollow">http://jackdempsey.github.com/beet/</a></p>
<p>I too love to build a lot of little apps to test out ideas, etc. I got tired of having to do the same thing time and time again, while not being able to reuse similar ideas across recipes. </p>
<p>Jack</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Ortinau</title>
		<link>http://www.mckinneystation.com/2009/02/22/basejumper-yet-another-starter-application/comment-page-1/#comment-55</link>
		<dc:creator>David Ortinau</dc:creator>
		<pubDate>Tue, 24 Feb 2009 05:34:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mckinneystation.com/?p=102#comment-55</guid>
		<description>That&#039;s great info. It&#039;s helpful to see what Rails bits and pieces you&#039;re getting mileage out of. 

I&#039;ve been browsing GitHub looking at plugins and such, but often it&#039;s hard for me to judge if something is solid, reliable, and useful, or just unmaintained junk. A few that you mentioned I haven&#039;t heard of, so I really appreciate it.

Dave</description>
		<content:encoded><![CDATA[<p>That&#8217;s great info. It&#8217;s helpful to see what Rails bits and pieces you&#8217;re getting mileage out of. </p>
<p>I&#8217;ve been browsing GitHub looking at plugins and such, but often it&#8217;s hard for me to judge if something is solid, reliable, and useful, or just unmaintained junk. A few that you mentioned I haven&#8217;t heard of, so I really appreciate it.</p>
<p>Dave</p>
]]></content:encoded>
	</item>
</channel>
</rss>
