Sha256: 10284d2b9f2df8423dc1f00948a6f5ea49b2de5fa56f9a4351fb8df039e49a00
Contents?: true
Size: 879 Bytes
Versions: 39
Compression:
Stored size: 879 Bytes
Contents
# frozen_string_literal: true CableReady.configure do |config| # Enable/disable exiting / warning when the sanity checks fail options: # `:exit` or `:warn` or `:ignore` # # config.on_failed_sanity_checks = :exit # Enable/disable assets compilation # `true` or `false` # # config.precompile_assets = true # Define your own custom operations # https://cableready.stimulusreflex.com/customization#custom-operations # # config.add_operation_name :jazz_hands # Change the default Active Job queue used for broadcast_later and broadcast_later_to # # config.broadcast_job_queue = :default # Specify a default debounce time for CableReady::Updatable callbacks # Doing so is a best practice to avoid heavy ActionCable traffic # # config.updatable_debounce_time = 0.1.seconds config.verifier_key = ENV.fetch('ANYCABLE_CABLE_READY_KEY', nil) end
Version data entries
39 entries across 39 versions & 1 rubygems