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.
 

21 lines
666 B

module SlackMathbot
module Commands
class Test < SlackRubyBot::Commands::Base
operator ']'
command 'test'
def self.call(client, data, match)
send_message client, data.channel, match
result = Dentaku::Calculator.new.evaluate(match[:expression]) if match.names.include?('expression')
result = result.to_s if result
if result && result.length > 0
send_message client, data.channel, result
else
send_message client, data.channel, 'Got nothing.'
end
rescue StandardError => e
send_message client, data.channel, "Sorry, #{e.message}."
end
end
end
end