Sha256: 58d9fdf88101bbbc7847ea9d18c45221194138bde1f2ea195911aeaf8c005c24
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
# frozen_string_literal: true module Slack module RealTime module Config class NoConcurrencyError < StandardError; end extend self ATTRIBUTES = %i[ token websocket_ping websocket_proxy concurrency start_method start_options store_class logger ].freeze attr_accessor(*Config::ATTRIBUTES - [:concurrency]) attr_writer :concurrency def reset self.websocket_ping = 30 self.websocket_proxy = nil self.token = nil self.concurrency = method(:detect_concurrency) self.start_method = nil self.start_options = { request: { timeout: 180 } } self.store_class = Slack::RealTime::Store self.logger = nil end def concurrency (val = @concurrency).respond_to?(:call) ? val.call : val end private def detect_concurrency %i[Async].each do |concurrency| begin return Slack::RealTime::Concurrency.const_get(concurrency) rescue LoadError, NameError false # could not be loaded, missing dependencies end end raise( NoConcurrencyError, 'Missing concurrency. Add async-websocket or faye-websocket ' \ 'to your Gemfile.' ) end end class << self def configure block_given? ? yield(Config) : Config end def config Config end end end end Slack::RealTime::Config.reset
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
slack-ruby-client-0.16.0 | lib/slack/real_time/config.rb |