Sha256: 3d3f8fec2f4ee29010bdd5c169f9167d92d6d5d2ad964d8cf65068556da77697
Contents?: true
Size: 1.67 KB
Versions: 8
Compression:
Stored size: 1.67 KB
Contents
bobot_config_path = Rails.root.join("config", "bobot.yml") bobot_config = YAML.safe_load(ERB.new(File.read(bobot_config_path)).result, [], [], true)[Rails.env] 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.debug_log = bobot_config["debug_log"], config.async = bobot_config["async"], bobot_config["pages"].each do |page| config.pages << Bobot::Configuration::Page.new( name: page["name"], language: page["language"], page_access_token: page["page_access_token"], page_id: page["page_id"], ) end end else warn "#{bobot_config_path} not configured yet in #{Rails.env} environment." end unless Rails.env.production? bot_files = Dir[Rails.root.join("app", "bobot", "**", "*.rb")] bot_reloader = ActiveSupport::FileUpdateChecker.new(bot_files) do bot_files.each { |file| require_dependency file } end ActiveSupport::Reloader.to_prepare do bot_reloader.execute_if_updated end bot_files.each { |file| require_dependency file } end if defined?(Rails::Server) Rails.application.config.after_initialize do Rails.application.config.paths.add File.join("app", "bobot"), glob: File.join("**", "*.rb") Rails.application.config.autoload_paths += Dir[Rails.root.join("app", "bobot", "*")] end end
Version data entries
8 entries across 6 versions & 1 rubygems