class Cipherpipe::ENV

Public Class Methods

call(variables) click to toggle source
# File lib/cipherpipe/env.rb, line 2
def self.call(variables)
  variables.each { |key, value| ENV[key.to_s] ||= value }
end