dots in URL routes with namespace rails 3.1
问题 I have this in routes.rb root :to => "posts#index" devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks" } resources :users, :only => :show resources :boards resources :posts do resources :comments end namespace :users do resources :posts do get :posts, :on => :member end resources :boards do get :boards, :on => :member end end rake routes: boards_users_board GET /users/boards/:id/boards(.:format) {:action=>"boards", :controller=>"users/boards"} users_boards