在控制器操作和http方法哈希方面解耦restful路径的方法是什么。
举个例子,admin_profile_path
# inside routes file
match '/admin/profile/something', :to => 'users#show', :as => :admin_profile
现在,如果我知道restful path
并想要calculate controller & action
基于路径.. ??
我需要下面的东西-
`decouple(profile_path)` #=> {:controller => 'users', :action => 'show'}