When you have the gem can tango in your Gemfile and you run
$ bundle instal
then Rails should include can tango like any other gem. Part of
cantango, if you look into the source is a so called Rails Engine (see
lib/cantango/rails/engine.rb). The engine should include the main
cantango API methods into views and controllers for each registered
user and account. For this to work, you have to register your User and/
or Account classes.
See the dummy apps for examples of how to do this:
class User
tango_user
end
class Admin < User
tango_user
end
these are so called class level macro methods. You can check if the
classes have been registered via can tango config.
CanTango.config.users.registered
CanTango.config.account.registered
I hope this helps. I'm currently on vacation in Marocco, surfing, but
you can also ask the other main contributor, @stanislaw. Good luck!
Kristian