aboutsummaryrefslogtreecommitdiff
path: root/example.rb
blob: c161af5163e4a3b149c708c0cc4048d35ae8b6d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby

require_relative 'dinobot'

bot = Dinobot::Bot.new('irc.example.org', 6667, 'dinobot') do
  join '#dinobot'

  load_module :echo
end

loop do
  bot.run
end