module Chatterbot # # primary Bot object, includes all the other modules class Bot include Blacklist include Config include Logging include Search include Tweet include Retweet include Reply include UI include Client include DB include Helpers # # Create a new bot. No options for now. def initialize(params={}) if params.has_key?(:name) @botname = params.delete(:name) end @config = load_config(params) if reset_bot? reset_since_id update_config puts "Reset to #{@config[:since_id]}" exit else # update config when we exit at_exit do raise $! if $! update_config end end end end end