Document Context.

This commit is contained in:
Markus Reiter 2020-08-14 03:26:20 +02:00
parent a5c1f38186
commit 9cab71a62f

View File

@ -2,6 +2,9 @@
require "monitor"
# Module for querying the current execution context.
#
# @api private
module Context
extend MonitorMixin
@ -21,6 +24,7 @@ module Context
end
end
# Struct describing the current execution context.
class ContextStruct
def initialize(debug: nil, quiet: nil, verbose: nil)
@debug = debug