module Launchy

def to_bool(arg)

def to_bool(arg)
  if arg.is_a? String
    arg == "true"
  else
    arg.is_a? TrueClass
  end
end