mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
19 lines
537 B
Ruby
19 lines
537 B
Ruby
# 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 exiting / warning when there's a new CableReady release
|
|
# `:exit` or `:warn` or `:ignore`
|
|
|
|
# config.on_new_version_available = :ignore
|
|
|
|
# Define your own custom operations
|
|
# https://cableready.stimulusreflex.com/customization#custom-operations
|
|
|
|
# config.add_operation_name :jazz_hands
|
|
end
|