Method: Construi::Config::EnvironmentVariables#env

Defined in:
lib/construi/config.rb

#envObject



89
90
91
92
93
# File 'lib/construi/config.rb', line 89

def env
  env_hash.each_with_object([]) do |(k, v), a|
    a << "#{k}=#{v}" unless v.nil? || v.empty?
  end
end