Hi,
I am giving a show to rails3 rc.
rails g controller sandbox/test1 index
It creates the following line in routes.rb
get "test1/index"
It should be:
namespace :sandbox do get "test1/index" end
Am I misunderstanding or is it a bug?
Thanks.
Sam