Module: SOAP::Env

Defined in:
lib/soap/soap.rb

Constant Summary collapse

HTTP_PROXY =
is_cgi ? getenv('cgi_http_proxy') : getenv('http_proxy')
NO_PROXY =
getenv('no_proxy')

Class Method Summary collapse

Class Method Details

.getenv(name) ⇒ Object



119
120
121
# File 'lib/soap/soap.rb', line 119

def self.getenv(name)
  ENV[name.downcase] || ENV[name.upcase]
end