Class: Briar::Environment

Inherits:
Object
  • Object
show all
Defined in:
lib/briar/environment.rb

Class Method Summary collapse

Class Method Details

.set_variable(variable_name, value) ⇒ Object



8
9
10
# File 'lib/briar/environment.rb', line 8

def self.set_variable(variable_name, value)
  ENV[variable_name] = value
end

.variable(variable_name) ⇒ Object



4
5
6
# File 'lib/briar/environment.rb', line 4

def self.variable(variable_name)
  ENV[variable_name]
end