Sha256: dc989d03876c64e566c25a12439b6e0157bdbba629e3ad8606594774238c0df0

Contents?: true

Size: 825 Bytes

Versions: 13

Compression:

Stored size: 825 Bytes

Contents

ERRORS = {
  CACHING_RESPONSE: 'Error Caching Response',
  CACHING_REQUEST: 'Error Caching Request',
  DUMPING_DATA_TO_DISK: 'Error Dumping Data to Disk',
  POSTING_EVENTS: 'Error Posting Events',
  POSTING_ERRORS: 'Error Posting Errors',
  FETCHING_CONFIG: 'Error Fetching Config',
  WRITING_TO_DISK: 'Error writing to disk',
  TEST_ERROR: 'Test Error for Testing Purposes',
  UNAUTHORIZED: 'Unauthorized: Invalid Client ID or Secret. Exiting.',
  NO_CLIENT_ID:
    'No Client ID Provided, set SUPERGOOD_CLIENT_ID or pass it as an argument',
  NO_CLIENT_SECRET:
    'No Client Secret Provided, set SUPERGOOD_CLIENT_SECRET or pass it as an argument'
};

DEFAULT_SUPERGOOD_BYTE_LIMIT = 500000

# GZIP_START_BYTES = b'\x1f\x8b'

class SupergoodException < StandardError
  def initialize(msg = message)
    super(msg)
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
supergood-0.1.1 lib/supergood/constants.rb
supergood-0.1.0 lib/supergood/constants.rb
supergood-0.0.12 lib/supergood/constants.rb
supergood-0.0.11 lib/supergood/constants.rb
supergood-0.0.10 lib/supergood/constants.rb
supergood-0.0.9 lib/supergood/constants.rb
supergood-0.0.8 lib/supergood/constants.rb
supergood-0.0.7 lib/supergood/constants.rb
supergood-0.0.6 lib/supergood/constants.rb
supergood-0.0.5 lib/supergood/constants.rb
supergood-0.0.4 lib/supergood/constants.rb
supergood-0.0.3 lib/supergood/constants.rb
supergood-0.0.2 lib/supergood/constants.rb