Sha256: 895a612a7cabd7571c79b597b2342f273683e09f87a52119154223447c5bdf82
Contents?: true
Size: 292 Bytes
Versions: 25
Compression:
Stored size: 292 Bytes
Contents
# frozen_string_literal: true module WorkOS # Configuration class sets config initializer class Configuration attr_accessor :api_hostname, :timeout, :key def initialize @timeout = 60 end def key! key or raise '`WorkOS.config.key` not set' end end end
Version data entries
25 entries across 25 versions & 1 rubygems