Zooip/smooth_change

View on GitHub
sig/lib/smooth_change/configuration.rbs

Summary

Maintainability
Test Coverage
module SmoothChange
  # Store SmoothChange gem's global configuration
  class Configuration
    def initialize: () -> void

    attr_accessor http_header_name: ::String

    attr_accessor adapter: Adapters::_Adapter

    private

    def set_defaults!: () -> void
  end
end