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.
end
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?
Well on ruby 1.9.2, the Config constant is an alias for RbConfig,
which I think is the root of your troubles. Why it happens only in
production I don’t know. (probably not a factor, ruby 1.9.2 is the
first ruby 1.9 version I’d want to use in production)