Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

open-uriでno_proxy環境変数も使用できるので追加 #2857

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions refm/api/src/open-uri.rd
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ http/ftp の URL を、普通のファイルのように開けます。
}
#@end

http_proxyftp_proxy などの環境変数は、デフォルトで有効になっています。
http_proxy, ftp_proxy, no_proxy などの環境変数は、デフォルトで有効になっています。
プロキシを無効にするには :proxy => nil とします。

#@since 2.7.0
Expand Down Expand Up @@ -212,7 +212,7 @@ options には [[c:Hash]] を与えます。理解するハッシュの
文字列: "http://proxy.example.com:8000/" のようなプロクシの URI。
URI オブジェクト: URI.parse("http://proxy.example.com:8000/") のようなプロクシの URI オブジェクト。
true: Proxy を環境変数などから見つけようとする。使う環境変数は schema に応じて
http_proxy, https_proxy, ftp_proxy が使われる。
http_proxy, https_proxy, ftp_proxy, no_proxy が使われる。
false: Proxy を用いない。
nil: Proxy を用いない。
//}
Expand Down