Skip to content
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
18 changes: 9 additions & 9 deletions lib/wreq_ruby/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def self.new(**options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -277,7 +277,7 @@ def request(method, url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -308,7 +308,7 @@ def get(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -339,7 +339,7 @@ def head(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -370,7 +370,7 @@ def post(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -401,7 +401,7 @@ def put(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -432,7 +432,7 @@ def delete(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -463,7 +463,7 @@ def options(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down Expand Up @@ -494,7 +494,7 @@ def trace(url, **options)
# @param auth [String, nil] Authorization header value
# @param bearer_auth [String, nil] Bearer token for Authorization header
# @param basic_auth [Array<String>, nil] Username and password for basic auth
# @param cookies [Array<String>, nil] Cookies to send
# @param cookies [Hash{String=>String}, nil] Cookies to send
# @param allow_redirects [Boolean, nil] Whether to follow redirects
# @param max_redirects [Integer, nil] Maximum number of redirects to follow
# @param gzip [Boolean, nil] Enable gzip compression
Expand Down