mirror of
https://github.com/ruby/ruby.git
synced 2026-08-12 08:20:37 +08:00
10 lines
399 B
Ruby
10 lines
399 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cgi/escape"
|
|
warn <<-WARNING, uplevel: Gem::BUNDLED_GEMS.uplevel if $VERBOSE
|
|
CGI library is removed from Ruby 4.0. Please use cgi/escape instead for CGI.escape and CGI.unescape features.
|
|
|
|
If you need to use the full features of CGI library, please add 'gem "cgi"' to your script
|
|
or use Bundler to ensure you are using the cgi gem instead of this file.
|
|
WARNING
|