diff options
author | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-18 15:27:06 +0000 |
---|---|---|
committer | gsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-18 15:27:06 +0000 |
commit | 1399c1bca04aa992ef2a2b6bda70298f37892823 (patch) | |
tree | 6a614a8b8316c341e4818d3752fc8be2ea64168a /lib/importenv.rb | |
parent | 847fd91e323d054121600c7a8568f0c734102fff (diff) | |
download | ruby-1399c1bca04aa992ef2a2b6bda70298f37892823.tar.gz |
* lib/cgi-lib.rb: deprecated after 1.8.1
* lib/getopts.rb: ditto
* lib/importenv.rb: ditto
* lib/parsearg.rb: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/importenv.rb')
-rw-r--r-- | lib/importenv.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/importenv.rb b/lib/importenv.rb index 435d6f972a..c47fc1f6c5 100644 --- a/lib/importenv.rb +++ b/lib/importenv.rb @@ -7,6 +7,8 @@ # $USER = "matz" # p ENV["USER"] +warn "Warning: importenv is deprecated after Ruby 1.8.1 (no replacement)" + for k,v in ENV next unless /^[a-zA-Z][_a-zA-Z0-9]*/ =~ k eval <<EOS |