class Guard::Jobs::PryWrapper

def _configure_history_file(history_file)

def _configure_history_file(history_file)
  history_file_path = File.expand_path(history_file)
  # Pry >= 0.13
  if _pry_config.respond_to?(:history_file=)
    _pry_config.history_file = history_file_path
  else
    _pry_config.history.file = history_file_path
  end
end