#!/usr/bin/env ruby require "./<%= bot_name %>" def set_locale(locale) begin Boty.locale = locale || :en rescue I18n::InvalidLocale Boty.locale = :en end end session = Boty::Session.new session.start do |bot| set_locale ARGV.pop bot.desc I18n.t "template.presence", bot_name: bot.name bot.match(/#{bot.name}/i) do next if message.from? self say I18n.t "template.hello", user_name: user.name end end