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