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