class RuboCop::DirectiveComment

def department_names

when all department disabled
Returns array of specified in this directive department names
def department_names
  splitted_cops_string.select { |cop| department?(cop) }
end