module ComponentHost::Defaults::StartupInfo
Public Class Methods
default()
click to toggle source
# File lib/component_host/component_host.rb, line 66 def self.default 'on' end
env_var()
click to toggle source
# File lib/component_host/component_host.rb, line 62 def self.env_var 'STARTUP_INFO' end
get()
click to toggle source
# File lib/component_host/component_host.rb, line 58 def self.get ENV.fetch(env_var, default) end