Method: Chatterbot::DSL#debug_mode

Defined in:
lib/chatterbot/dsl.rb

#debug_mode(d = nil) ⇒ Object

should we send tweets?

Parameters:

  • d (Boolean) (defaults to: nil)

    true/false if we should send tweets



219
220
221
222
# File 'lib/chatterbot/dsl.rb', line 219

def debug_mode(d=nil)
  d = true if d.nil?
  bot.debug_mode = d
end