passcod/caskbot

View on GitHub
plugins/about.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Caskbot::Plugins::About
  include Cinch::Plugin

  match 'about'
  @@commands = ['about']

  def execute(m)
    m.reply Caskbot.template('about').render
  end
end