search for: render_without_active_scaffold

Displaying 5 results from an estimated 5 matches for "render_without_active_scaffold".

2009 Nov 09
1
Active Scaffold Performance
...miss, it still takes 8+ seconds to load. I tried monitoring the application on new_relic and found out that my view takes up for nearly 90% of the load time. Furthermore, I have ran ruby-prof on one of the slower transactions and found out that 65% of the transaction was from the method ''render_without_active_scaffold'' which is part of the active_scaffold plugin. I suspect the fact that the transaction calls ''render :partial'' 45 times doesn''t help much, but the application is pretty complex, and those 45 partial renderings are quite necessary. I''ve searched on googl...
2010 Jul 27
13
3.0.0rc ActionController::RoutingError No route matches
Have been developing on 3.0.0beta4 and just updated to 3.0.0.rc. When I try to link_to() a User object that previously had worked, I get the following: ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"games", :id=>#<User ..... > Yet I have in my routes.rb file has resources :users and my "rake routes" shows:
2010 Jul 19
16
Strange Error undefined method `show' for # see no way to debug, suggestions?
I changed fairly much in my app without constant testing ( my bad ) now i get an error which I cannot seem to debug point my finger on. I have a home controller which just displays a welcome page this had a index only action. Whatever controller I try to open i always get above error message ActionView::TemplateError (undefined method `show'' for
2008 May 08
5
Simple Generated Component Suddenly Gives Errors
...ionpack-2.0.2/lib/action_controller/base.rb:872:in `render_with_no_layout'' c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/layout.rb:262:in `render_without_benchmark'' c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render_without_active_scaffold'' c:/ruby/lib/ruby/1.8/benchmark.rb:293:in `measure'' c:/ruby/lib/ruby/gems/1.8/gems/actionpack-2.0.2/lib/action_controller/benchmarking.rb:51:in `render_without_active_scaffold'' vendor/plugins/active_scaffold/lib/extensions/action_controller_rendering.rb:13:in `render'...
2008 Nov 12
4
Help! getting a "can't dup NilClass" error and don't know what to do about it.
Thanks for any help you can offer. I am trying to send out a small batch of emails using an http request. I know it sounds odd. hear me out. I have loaded a bunch of emails into this table and just want to slowly work through them. Sort of a poor mans AR:Mailer. But I am getting a "can''t dup NilClass" when I hit it with a http request. **********************************