diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | config.rb.example | 16 | ||||
-rwxr-xr-x[-rw-r--r--] | lain.rb | 0 |
3 files changed, 17 insertions, 0 deletions
@@ -1 +1,2 @@ *~ +config.rb diff --git a/config.rb.example b/config.rb.example new file mode 100644 index 0000000..a853746 --- /dev/null +++ b/config.rb.example @@ -0,0 +1,16 @@ +module Lain + module Config + JID = '' + Password = '' + + Rooms = [''] + + Modules = { + 'Credits' => {}, + 'DDate' => {}, + 'Fortune' => { 'command' => '/usr/bin/fortune -a' }, + 'Help' => {}, + 'Topic' => {}, + } + end +end |