Yet Another Telegram Bot

IN DEV

Usage

require 'ya_telegram_bot'

class Bot
  extend YATelegramBot::Base

  token YOUR_TOKEN
end

updates = Bot.updates
updates.each do |message|
  chat_id = message['chat']['id']
  user = message['from']['first_name']
  text = "Hello, *#{user}*"

  Bot.send_message chat: chat_id,
                   text: text,
                   markdown: true
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/telegram_bot. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.