class Covered::Config

def start

Stores the current environment, configures child process autostart, and starts the policy capture pipeline.
Start coverage tracking.
def start
	# Save and setup the environment:
	@environment = ENV.to_h
	autostart!
	
	# Start coverage tracking:
	policy.start
end