I am getting:

  uninitialized constant RbConfig::RetusersController

My routes look like this:

  map.namespace(:config) do |config|
    config.resources :users do |user|
      user.resources :retusers
    end
  end

and I am calling redirect with:

      redirect_to edit_config_user_retuser_url(application_user,
retuser)

where application_user is a User and retuser is a Retuser.

In app/controllers/retusers_controller.rb I have:

class RetusersController < ApplicationController
   ...
end

On my development platform, I do not get the error.  On my production
platform I do.  The two should be the same ruby and set of gems.  This
is using Rails 2.3.11 and Ruby 1.9.1.

What am I doing wrong?

Thank you,
pedz

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to