class <%= user.to_s.camelize %>Permit < CanTango::UserPermit def initialize ability super end protected def permit_rules # insert your can, cannot and any other rule statements here <%= permit_logic.strip %> <%= license_logic %> end module Cached def permit_rules end end module NonCached def permit_rules end end end