This is very noob, but I'm still very interested. I'm using Ruby to develop telegram bot. https://github.com/atipugin/telegram-bot-ruby - this is my wrapper for this.
I have code:
bot.api.get_Chat_Members_Count(chat_id: message.chat.id)
I want to present a result in text in:
bot.api.send_message(chat_id: message.chat.id, text: "Results: %")
How can I link result of this method and print in into text?