Sha256: 535266a6fcb660d50eb2aecc8d49643b6464a8f2ff1434ac3c511c224c2058ae
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
Contents
module DiscoApp class Configuration # Required configuration. attr_accessor :app_name # Set the list of Shopify webhook topics to register. attr_accessor :webhook_topics # Set Flow configuration attr_accessor :flow_actions attr_accessor :flow_triggers # Set the below if using an application proxy. attr_accessor :app_proxy_prefix # Set the below if providing a carrier service endpoint. attr_accessor :carrier_service_callback_url # Set the below to create real Shopify charges. attr_accessor :real_charges alias_method :real_charges?, :real_charges # Optional configuration, usually useful for development environments. attr_accessor :skip_proxy_verification alias_method :skip_proxy_verification?, :skip_proxy_verification attr_accessor :skip_webhook_verification alias_method :skip_webhook_verification?, :skip_webhook_verification attr_accessor :skip_carrier_request_verification alias_method :skip_carrier_request_verification?, :skip_carrier_request_verification attr_accessor :skip_oauth alias_method :skip_oauth?, :skip_oauth end def self.configuration @configuration ||= Configuration.new end def self.configuration=(config) @configuration = config end def self.configure yield configuration end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release | lib/disco_app/configuration.rb |
disco_app-0.16.1 | lib/disco_app/configuration.rb |