A Slack Bot that pulls Pixiv information and posts the full image(s) into Slack, with iOS shortcuts.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

19 lines
577 B

module SlackMathbot
module Commands
class Calculate < SlackRubyBot::Commands::Base
operator '='
def self.call(data, _command, arguments)
result = Dentaku::Calculator.new.evaluate(arguments.join)
result = result.to_s if result
if result && result.length > 0
send_message data.channel, result
else
send_message_with_gif data.channel, 'Got nothing.', 'nothing'
end
rescue StandardError => e
send_message_with_gif data.channel, "Sorry, #{e.message}.", 'idiot'
end
end
end
end