I have a namespace in my router like so:
namespace :my do
resources :addressbookitems
end
and in controllers/my/addressbookitems_controller.rb I have, for example, actions index and show.
I would like to limit resources accessible to my users differently based on the namespace: if they access /addressbookitems I would like to have different abilities then with /my/addressbookitems. How would i structure my Ability class?