class RuboCop::Cop::Generator

def initialize(name, github_user, output: $stdout)

def initialize(name, github_user, output: $stdout)
  @badge = Badge.parse(name)
  @github_user = github_user
  @output = output
  return if badge.qualified?
  raise ArgumentError, 'Specify a cop name with Department/Name style'
end