Module: Oncall::Core

Defined in:
lib/oncall/core.rb,
lib/oncall/core/world.rb,
lib/oncall/core/config.rb,
lib/oncall/core/runner.rb,
lib/oncall/core/wrapper.rb,
lib/oncall/core/reporter.rb

Defined Under Namespace

Classes: Config, Reporter, Runner, World, Wrapper

Constant Summary collapse

STATUS_EMPTY =
:empty

Class Attribute Summary collapse

Class Attribute Details

.configObject



15
16
17
# File 'lib/oncall/core.rb', line 15

def self.config
  @config ||= Oncall::Core::Config.new
end

.reporterObject



23
24
25
# File 'lib/oncall/core.rb', line 23

def self.reporter
  @reporter ||= Oncall::Core::Reporter.new
end

.worldObject



19
20
21
# File 'lib/oncall/core.rb', line 19

def self.world
  @world ||= Oncall::Core::World.new
end