#!/usr/bin/env ruby # frozen_string_literal: true lib_path = File.expand_path('../lib', __dir__) $LOAD_PATH.unshift(lib_path) unless $LOAD_PATH.include?(lib_path) require 'faker/bot' Signal.trap('INT') do warn("\n#{caller.join("\n")}: interrupted") exit(1) end begin Faker::Bot::Base.start rescue Faker::Bot::Base::Error => e puts "ERROR: #{e.message}" exit 1 end