class Briar::Environment

Public Class Methods

set_variable(variable_name, value) click to toggle source
# File lib/briar/environment.rb, line 8
def self.set_variable(variable_name, value)
  ENV[variable_name] = value
end
variable(variable_name) click to toggle source
# File lib/briar/environment.rb, line 4
def self.variable(variable_name)
  ENV[variable_name]
end