Sha256: 6fd2d629e01c78b7dbe7c19a99d9ae394a71c47130e14c790253bfc1708180a4

Contents?: true

Size: 643 Bytes

Versions: 5

Compression:

Stored size: 643 Bytes

Contents

# ErrorStalker backends are objects representing a place that
# ErrorStalker::Client sends exceptions to. A backend simply needs to
# inherit from ErrorStalker::Backend::Base and override the +report+
# method, after which they can be set using the
# ErrorStalker::Client.backend attribute. 
#
# The default backend is an ErrorStalker::Backend::LogFile instance,
# which logs exception data to a file.
module ErrorStalker::Backend
  autoload :Base, 'error_stalker/backend/base'
  autoload :InMemory, 'error_stalker/backend/in_memory'
  autoload :LogFile, 'error_stalker/backend/log_file'
  autoload :Server, 'error_stalker/backend/server'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
error_stalker-0.0.16 lib/error_stalker/backend.rb
error_stalker-0.0.15 lib/error_stalker/backend.rb
error_stalker-0.0.14 lib/error_stalker/backend.rb
error_stalker-0.0.13 lib/error_stalker/backend.rb
error_stalker-0.0.12 lib/error_stalker/backend.rb