Method: Campfire::Bot#start
- Defined in:
- lib/campfire_bot.rb
#start ⇒ Object
24 25 26 27 28 29 30 |
# File 'lib/campfire_bot.rb', line 24 def start raise "You need to configure me" unless @campfire @campfire.listen do |line| evaluate(line) if line[:body] end end |