class Travis::CLI::Console

def ensure_pry

def ensure_pry
  require 'pry'
rescue LoadError
  msg = [
    'You need to install pry to use Travis CLI console. Try',
    nil,
    '$ (sudo) gem install pry'
  ].join("\n")
  error msg
end