spec/dummy/tmp/generator/config/initializers/bobot.rb in bobot-3.0.3 vs spec/dummy/tmp/generator/config/initializers/bobot.rb in bobot-3.0.5

- old
+ new

@@ -4,14 +4,15 @@ if bobot_config.present? unless bobot_config.key?("pages") raise "Bobot: #{bobot_config_path} required an array key :pages (cf. https://github.com/navidemad/bobot)" end Bobot.configure do |config| - config.app_id = bobot_config["app_id"], - config.app_secret = bobot_config["app_secret"], - config.verify_token = bobot_config["verify_token"], - config.domains = bobot_config["domains"], - config.async = bobot_config["async"], + config.app_id = bobot_config["app_id"] + config.app_secret = bobot_config["app_secret"] + config.verify_token = bobot_config["verify_token"] + config.domains = bobot_config["domains"] + config.async = bobot_config["async"] + config.commander_queue_name = bobot_config["commander_queue_name"] bobot_config["pages"].each do |page| config.pages << Bobot::Page.new( slug: page["slug"], language: page["language"], page_id: page["page_id"],