Method: SentryApi::Configuration#options

Defined in:
lib/sentry-api/configuration.rb

#optionsObject

Creates a hash of options and their values.



25
26
27
28
29
# File 'lib/sentry-api/configuration.rb', line 25

def options
  VALID_OPTIONS_KEYS.inject({}) do |option, key|
    option.merge!(key => send(key))
  end
end