module SlackMathbot module Commands class Default < SlackRubyBot::Commands::Base match(/^(?\w*)$/) def self.call(client, data, _match) send_message client, data.channel, SlackMathbot::ABOUT end end end end