File: ponder.rb

package info (click to toggle)
ruby-ponder 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: ruby: 1,051; makefile: 4
file content (20 lines) | stat: -rw-r--r-- 521 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$LOAD_PATH.unshift(File.dirname(__FILE__))

module Ponder
  ROOT = File.dirname($0)

  autoload :AsyncIRC, 'ponder/async_irc'
  autoload :Callback, 'ponder/callback'
  autoload :Connection, 'ponder/connection'
  autoload :Filter, 'ponder/filter'
  autoload :Formatting, 'ponder/formatting'
  autoload :IRC, 'ponder/irc'
  autoload :Thaum, 'ponder/thaum'
  autoload :VERSION, 'ponder/version'

  module Logger
    autoload :Twoflogger, 'ponder/logger/twoflogger'
    autoload :BlindIo, 'ponder/logger/blind_io'
  end
end