diff options
author | Peter Zhu <[email protected]> | 2022-04-14 14:02:00 -0400 |
---|---|---|
committer | git <[email protected]> | 2022-04-22 12:00:14 +0900 |
commit | eab354e17b4bc21d0142564ce71ebadf4ad8486a () | |
tree | 0edefc7ff33f2f2f52e8d9e9037b5bfd4f5ad51f /lib/uri/mailto.rb | |
parent | c94f964e3f94e9f934a3f4e73fb55f5fd2a21f08 (diff) |
[ruby/uri] Include RFC2396_REGEXP module directly
REGEXP is defined as RFC2396_REGEXP in lib/uri/common.rb. If we include REGEXP then a broken URL is generated in rdoc for URI and URI::MailTo. https://.com/ruby/uri/commit/ed6ded9c80
-rw-r--r-- | lib/uri/mailto.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ module URI # RFC6068, the mailto URL scheme. # class MailTo < Generic - include REGEXP # A Default port of nil for URI::MailTo. DEFAULT_PORT = nil |