1
0
зеркало из https://github.com/glebtv/telegram-bot.git synced 2026-09-04 18:25:51 +03:00

Use bang-methods as actions for commands

Этот коммит содержится в:
Max Melentiev
2018-05-28 12:30:47 +03:00
родитель 8db3204609
Коммит 9310fa613b
15 изменённых файлов: 225 добавлений и 190 удалений

Просмотреть файл

@@ -35,7 +35,7 @@ Rails.application.initialize!
# # Controllers
%w[default other named].each do |bot_name|
controller = Class.new(Telegram::Bot::UpdatesController) do
define_method :start do |*|
define_method :start! do |*|
respond_with :message, text: "from #{bot_name}"
end
end
@@ -46,7 +46,7 @@ end
klass.class_eval do
use_session!
define_method :load_session do |*|
define_method :load_session! do |*|
session[:test]
end
end