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