I have a AR model inside a module
class Long::Module::Path::Model < ActiveRecord::Base
end
and want to use following routes (without the module names, because it's easier to write and remember)
resources :models
buts Rails 3 always wants to use a URL like
long_module_path_model_url
Is there are way to change this behavior?
Hope anyone out there can help me?
Mario