module ComponentHost::Defaults::EnvVarInfo
Public Class Methods
default()
click to toggle source
# File lib/component_host/component_host.rb, line 80 def self.default 'on' end
env_var()
click to toggle source
# File lib/component_host/component_host.rb, line 76 def self.env_var 'ENV_VAR_INFO' end
get()
click to toggle source
# File lib/component_host/component_host.rb, line 72 def self.get ENV.fetch(env_var, default) end