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