summaryrefslogtreecommitdiff
path: root/lib/rbot/plugins/cal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbot/plugins/cal.rb')
-rw-r--r--lib/rbot/plugins/cal.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/rbot/plugins/cal.rb b/lib/rbot/plugins/cal.rb
deleted file mode 100644
index 4f28310b..00000000
--- a/lib/rbot/plugins/cal.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class CalPlugin < Plugin
- def help(plugin, topic="")
- "cal [options] => show current calendar [unix cal options]"
- end
- def cal(m, params)
- if params.has_key?(:month)
- m.reply Utils.safe_exec("cal", params[:month], params[:year])
- else
- m.reply Utils.safe_exec("cal")
- end
- end
-end
-plugin = CalPlugin.new
-plugin.map 'cal :month :year', :requirements => {:month => /^\d+$/, :year => /^\d+$/}
-plugin.map 'cal'