Sha256: 4741eb7c96140da4ce2a8cd3eb55c3b83bc5fc3ee994526ebc9b19fe9ee04aca
Contents?: true
Size: 355 Bytes
Versions: 9
Compression:
Stored size: 355 Bytes
Contents
module Futurism class << self def configure yield configuration end def configuration @configuration ||= Configuration.new end alias_method :config, :configuration end class Configuration attr_accessor :parent_channel def initialize @parent_channel = "::ApplicationCable::Channel" end end end
Version data entries
9 entries across 9 versions & 1 rubygems