<?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: BaseApp: a quick start for your Rails App</title> <atom:link href="http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/feed/" rel="self" type="application/rss+xml" /><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/</link> <description>Code Monkey</description> <lastBuildDate>Thu, 11 Mar 2010 04:50:50 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: Josh</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-11300</link> <dc:creator>Josh</dc:creator> <pubDate>Wed, 02 Dec 2009 16:34:53 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-11300</guid> <description>Thanks a ton! This is extremely useful!!</description> <content:encoded><![CDATA[<p>Thanks a ton! This is extremely useful!!</p> ]]></content:encoded> </item> <item><title>By: Michael</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10842</link> <dc:creator>Michael</dc:creator> <pubDate>Tue, 21 Jul 2009 02:53:24 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10842</guid> <description>I&#039;m sorry to hear you&#039;re not going forward with BaseApp. As an experienced web developer new to Ruby on Rails it&#039;s the most useful starting point I have found. I was able to get it going on Rails 2.3.2 with the changes below, thanks to the very helpful post at http://vladzloteanu.wordpress.com/2009/07/13/rails-startup-app-basecamp-user-authentication/. To summarize:- To get past the&quot;Missing the Rails 2.2.2 gem. Please `gem install -v=2.2.2 rails`, update yo...&quot;edit config/environment.rb and comment the following line:RAILS_GEM_VERSION = &#039;2.2.2&#039; unless defined? RAILS_GEM_VERSION- To get past the&quot;uninitialized constant Rails::Plugin::OpenIdAuthentication&quot;run:script/plugin install git://github.com/rails/open_id_authentication.git --force- To get past the&quot;uninitialized constant ApplicationController&quot;run:rake rails:update:application_controller</description> <content:encoded><![CDATA[<p>I&#8217;m sorry to hear you&#8217;re not going forward with BaseApp. As an experienced web developer new to Ruby on Rails it&#8217;s the most useful starting point I have found. I was able to get it going on Rails 2.3.2 with the changes below, thanks to the very helpful post at <a
href="http://vladzloteanu.wordpress.com/2009/07/13/rails-startup-app-basecamp-user-authentication/" rel="nofollow">http://vladzloteanu.wordpress.com/2009/07/13/rails-startup-app-basecamp-user-authentication/</a>. To summarize:</p><p>- To get past the</p><p>&#8220;Missing the Rails 2.2.2 gem. Please `gem install -v=2.2.2 rails`, update yo&#8230;&#8221;</p><p>edit config/environment.rb and comment the following line:</p><p>RAILS_GEM_VERSION = &#8216;2.2.2&#8242; unless defined? RAILS_GEM_VERSION</p><p>- To get past the</p><p>&#8220;uninitialized constant Rails::Plugin::OpenIdAuthentication&#8221;</p><p>run:</p><p>script/plugin install git://github.com/rails/open_id_authentication.git &#8211;force</p><p>- To get past the</p><p>&#8220;uninitialized constant ApplicationController&#8221;</p><p>run:</p><p>rake rails:update:application_controller</p> ]]></content:encoded> </item> <item><title>By: Ariejan de Vroom</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10824</link> <dc:creator>Ariejan de Vroom</dc:creator> <pubDate>Thu, 02 Jul 2009 07:04:14 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10824</guid> <description>BaseApp is no longer supported. I built it once, but with the pace that new gems, plugins and rails version come out and no way to easily upgrade current baseapps, I dropped support for it in favour of rails app templates.If you upgrade to Rails 2.3 you&#039;re bound to run into trouble.</description> <content:encoded><![CDATA[<p>BaseApp is no longer supported. I built it once, but with the pace that new gems, plugins and rails version come out and no way to easily upgrade current baseapps, I dropped support for it in favour of rails app templates.</p><p>If you upgrade to Rails 2.3 you&#8217;re bound to run into trouble.</p> ]]></content:encoded> </item> <item><title>By: OHaleck</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10823</link> <dc:creator>OHaleck</dc:creator> <pubDate>Wed, 01 Jul 2009 21:58:38 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10823</guid> <description>I had the NoMethodError during the migration too and I managed to deal with it by simply creating an empty module stub in init.rb just before the line that causes the error:
config.to_prepare do
module OpenIdAuthentication
end
ActionController::Base.send :include, OpenIdAuthentication
end
Now I have this whenever I try to login...
I am on Rails 2.3. Can anyone help?</description> <content:encoded><![CDATA[<p>I had the NoMethodError during the migration too and I managed to deal with it by simply creating an empty module stub in init.rb just before the line that causes the error:<br
/> config.to_prepare do<br
/> module OpenIdAuthentication<br
/> end<br
/> ActionController::Base.send :include, OpenIdAuthentication<br
/> end<br
/> Now I have this whenever I try to login&#8230;<br
/> I am on Rails 2.3. Can anyone help?</p> ]]></content:encoded> </item> <item><title>By: Imtiaz</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10804</link> <dc:creator>Imtiaz</dc:creator> <pubDate>Wed, 24 Jun 2009 05:33:06 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10804</guid> <description>Getting following error with open id authentication after upgrading rails from 2.2 to 2.3 :(&quot;NoMethodError in UsersController#create
undefined method `using_open_id?&#039; for # &quot;after upgrading rails to 2.3 i wasn&#039;t able to migrate database using rake db:migrate. after surfing a while i found a way which describes to install a open id authentication patch or comment out following line from init.rb (open_id_authentication plugin directory).&lt;strong&gt; NoMethodError in UsersController
&quot;ActionController::Base.send :include, OpenIdAuthentication&quot; &lt;/strong&gt;Anyway, i installed patch and after that migration and baseapp installation was successful but i can&#039;t signup and login from baseapp. getting that open id error constantly. i&#039;m stuck with this. please help if possible</description> <content:encoded><![CDATA[<p>Getting following error with open id authentication after upgrading rails from 2.2 to 2.3 :(</p><p>&#8220;NoMethodError in UsersController#create<br
/> undefined method `using_open_id?&#8217; for # &#8221;</p><p>after upgrading rails to 2.3 i wasn&#8217;t able to migrate database using rake db:migrate. after surfing a while i found a way which describes to install a open id authentication patch or comment out following line from init.rb (open_id_authentication plugin directory).</p><p><strong> NoMethodError in UsersController<br
/> &#8220;ActionController::Base.send :include, OpenIdAuthentication&#8221; </strong></p><p>Anyway, i installed patch and after that migration and baseapp installation was successful but i can&#8217;t signup and login from baseapp. getting that open id error constantly. i&#8217;m stuck with this. please help if possible</p> ]]></content:encoded> </item> <item><title>By: Pattabhi</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10730</link> <dc:creator>Pattabhi</dc:creator> <pubDate>Thu, 30 Apr 2009 23:56:36 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10730</guid> <description>Hi,Great work and reduces lot of work ...Are there any scaffold generators packaged that will create controllers,models and views that look similar to  the ones provided by default.Thanks</description> <content:encoded><![CDATA[<p>Hi,</p><p>Great work and reduces lot of work &#8230;</p><p>Are there any scaffold generators packaged that will create controllers,models and views that look similar to  the ones provided by default.</p><p>Thanks</p> ]]></content:encoded> </item> <item><title>By: Stefano</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10729</link> <dc:creator>Stefano</dc:creator> <pubDate>Sun, 26 Apr 2009 14:58:07 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10729</guid> <description>Great Job,
I was wondering if this is compatible with Rails2.3 and if you plan on releasing it as a template.</description> <content:encoded><![CDATA[<p>Great Job,<br
/> I was wondering if this is compatible with Rails2.3 and if you plan on releasing it as a template.</p> ]]></content:encoded> </item> <item><title>By: Donovan</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10728</link> <dc:creator>Donovan</dc:creator> <pubDate>Sat, 25 Apr 2009 12:16:07 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10728</guid> <description>Thank you! I just launched a test app with no problems at all.Two questions:1. How do the tabs work?2. Is this Rails 2.3 compatible?Much appreciated.</description> <content:encoded><![CDATA[<p>Thank you! I just launched a test app with no problems at all.</p><p>Two questions:</p><p>1. How do the tabs work?</p><p>2. Is this Rails 2.3 compatible?</p><p>Much appreciated.</p> ]]></content:encoded> </item> <item><title>By: chris</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10615</link> <dc:creator>chris</dc:creator> <pubDate>Fri, 10 Oct 2008 03:34:05 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10615</guid> <description>never mind ...
i used: rake db:bootstrap:load
ahhh ... the fine tradition of no docs for Rails apps ... is
this why my hair is falling out :-)</description> <content:encoded><![CDATA[<p>never mind &#8230;<br
/> i used: rake db:bootstrap:load<br
/> ahhh &#8230; the fine tradition of no docs for Rails apps &#8230; is<br
/> this why my hair is falling out :-)</p> ]]></content:encoded> </item> <item><title>By: chris</title><link>http://ariejan.net/2008/09/28/baseapp-a-quick-start-for-your-rails-app/comment-page-1/#comment-10614</link> <dc:creator>chris</dc:creator> <pubDate>Fri, 10 Oct 2008 03:30:00 +0000</pubDate> <guid
isPermaLink="false">http://ariejan.net/?p=316#comment-10614</guid> <description>Thanks ... this is nice!
Just one question, what is db/bootstrap/*.yml files for, and
how do I use them ?
thanks again.</description> <content:encoded><![CDATA[<p>Thanks &#8230; this is nice!<br
/> Just one question, what is db/bootstrap/*.yml files for, and<br
/> how do I use them ?<br
/> thanks again.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using memcached
Page Caching using memcached (user agent is rejected)

Served from: starbuck.ariejan.net @ 2010-03-11 13:35:46 -->