class Sentry::Configuration

def is_numeric_or_nil?(value)

def is_numeric_or_nil?(value)
  value.is_a?(Numeric) || value.nil?
end