Sha256: ccabb27daa72af85275b0cc63b9c0dab30ae0f941533409ad45923b14b1f599c
Contents?: true
Size: 291 Bytes
Versions: 13
Compression:
Stored size: 291 Bytes
Contents
module SlackRubyBot module Commands class Default < Base command 'about' match(/^(?<bot>[[:alnum:][:punct:]@<>]*)$/u) def self.call(client, data, _match) client.say(channel: data.channel, text: SlackRubyBot::ABOUT, gif: 'selfie') end end end end
Version data entries
13 entries across 13 versions & 1 rubygems