Problem with require while making a Ruby telegram bot – Telegram API
I was doing a code in the app "Atom" and when I tried to run this code require 'telegram_bot' token = 'MY_TOKEN' bot = TelegramBot.new(token: token) bot.get_updates(fail_silently: true) do |message| puts "@#{message.from.username}: #{message.text}" command = message.get_command_for(bot) message.reply do |reply| case…