diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-25 11:44:58 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-02-25 11:44:58 +0000 |
commit | 5ec2b72e6cf36b52c9febff244a8d7fad656499e (patch) | |
tree | 5edffb1a77c59e76a4c21b2ab0b7d0ade219332e /lib | |
parent | ea2822891cf3dcf132120c60fa63bd07c5a5b848 (diff) | |
download | ruby-5ec2b72e6cf36b52c9febff244a8d7fad656499e.tar.gz ruby-5ec2b72e6cf36b52c9febff244a8d7fad656499e.tar.xz ruby-5ec2b72e6cf36b52c9febff244a8d7fad656499e.zip |
* lib/cgi-lib.rb, lib/getopts.rb, lib/importenv.rb, lib/parsearg.rb:
warn with caller position.
* test/rss/test_content.rb, test/rss/test_dublincore.rb,
test/rss/test_syndication.rb, test/rss/test_trackback.rb: use cgi
instead of cgi-lib.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5829 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cgi-lib.rb | 2 | ||||
-rw-r--r-- | lib/getopts.rb | 2 | ||||
-rw-r--r-- | lib/importenv.rb | 2 | ||||
-rw-r--r-- | lib/parsearg.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/cgi-lib.rb b/lib/cgi-lib.rb index 33c732660..d6b60d66c 100644 --- a/lib/cgi-lib.rb +++ b/lib/cgi-lib.rb @@ -1,4 +1,4 @@ -warn "Warning: cgi-lib is deprecated after Ruby 1.8.1; use cgi instead" +warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: cgi-lib is deprecated after Ruby 1.8.1; use cgi instead" =begin diff --git a/lib/getopts.rb b/lib/getopts.rb index 1cd6d2f48..924ba5b24 100644 --- a/lib/getopts.rb +++ b/lib/getopts.rb @@ -15,7 +15,7 @@ # rewritten by Akinori MUSHA <knu@ruby-lang.org> # -warn "Warning: getopts is deprecated after Ruby 1.8.1; use optparse instead" +warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: getopts is deprecated after Ruby 1.8.1; use optparse instead" $RCS_ID=%q$Header$ diff --git a/lib/importenv.rb b/lib/importenv.rb index c47fc1f6c..8e1ba33b1 100644 --- a/lib/importenv.rb +++ b/lib/importenv.rb @@ -7,7 +7,7 @@ # $USER = "matz" # p ENV["USER"] -warn "Warning: importenv is deprecated after Ruby 1.8.1 (no replacement)" +warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: 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 diff --git a/lib/parsearg.rb b/lib/parsearg.rb index 9d58be99f..9c67aca43 100644 --- a/lib/parsearg.rb +++ b/lib/parsearg.rb @@ -10,7 +10,7 @@ # # -warn "Warning: parsearg is deprecated after Ruby 1.8.1; use optparse instead" +warn "Warning:#{caller[0].sub(/:in `.*'\z/, '')}: parsearg is deprecated after Ruby 1.8.1; use optparse instead" $RCS_ID=%q$Header$ |