Search Results

2
votes
4answers
416 views

Given an array of ActiveRecord objects, can I easily collect their relationships through a method call?

Let's say I have the following code: @sites = Site.find(session[:sites]) # will be an array of Site ids @languages = Language.for_sites(@sites) for_sites is a name …
2
votes

How to deploy Rails 2.3.2 app with Capistrano from the top (for FastCGI)?

Updated my answer, see #3... I don't use FastCGI for deployment, but a few things that come to mind: The process scripts have been moved out of Rails core and into …
1
vote

How to get a method to detect ‘remote_form_for’ usage?

Alternately, you can use a respond_to block: def create # ... respond_to do |format| format.html # for standard requests format.js # for AJAX requests # other format …
1
vote

Rails routes change in production

What happens if you run rake routes in both production and development modes? That might help you narrow it down to (as bensie mentioned) a hosting stack vs. framework/code iss …