lib/slack-ruby-bot/commands/unknown.rb in slack-ruby-bot-0.15.0 vs lib/slack-ruby-bot/commands/unknown.rb in slack-ruby-bot-0.16.0

- old
+ new

@@ -4,10 +4,10 @@ module Commands class Unknown < Base match(/^(?<bot>\S*)[\s]*(?<expression>.*)$/) def self.call(client, data, _match) - client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!", gif: 'understand') + client.say(channel: data.channel, text: "Sorry <@#{data.user}>, I don't understand that command!") end end end end