class Thor::Options

def except_underscores(args)

Except underscores in commandline switches
def except_underscores(args)
  args.map {|x| x =~ /^--/ ? x.gsub('_', '-') : x }
end