fastly 8.9.0 → 8.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/Backend.md +2 -2
- data/docs/BackendApi.md +8 -8
- data/docs/BackendResponse.md +2 -2
- data/lib/fastly/api/backend_api.rb +8 -8
- data/lib/fastly/models/backend.rb +2 -2
- data/lib/fastly/models/backend_response.rb +2 -2
- data/lib/fastly/version.rb +1 -1
- data/sig.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f8c264a53d84a6d5ca5cff95dbd2091e8870435187faed2f0dbbf525d9458c8
|
|
4
|
+
data.tar.gz: 6842a6b39d19ab8f7157b14225339b2ce543155c83c1d5a748f4276920a23253
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd297bec64d0d4de57c474357f8a7e8b2a586c354fe591f4dfded89f7de382416ee17a1eb2051447eb3a0c9fb0c5cb75e43b0d5c3c23bed82cb8acbfa526f08a
|
|
7
|
+
data.tar.gz: 877a5ffaa561acf7992c90b31632204c771f996353fcb505c28b9cfd4b00bda327a6d8efd9705fd4094f4b164d761357e43a3c59add78ddb60c6c99c7f4486fd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v8.10.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.10.0) (2024-10-23)
|
|
4
|
+
|
|
5
|
+
**Documentation:**
|
|
6
|
+
|
|
7
|
+
- doc(backend): Correct spelling in `connect_timeout` and `first_byte_timeout` field descriptions.
|
|
8
|
+
|
|
3
9
|
## [v8.9.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.9.0) (2024-09-13)
|
|
4
10
|
|
|
5
11
|
**Bug fixes:**
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
|
|
|
8
8
|
To install via RubyGems, add the following to your project's `Gemfile`:
|
|
9
9
|
|
|
10
10
|
```ruby
|
|
11
|
-
gem 'fastly', '~> 8.
|
|
11
|
+
gem 'fastly', '~> 8.10.0'
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Then run `bundle install`.
|
data/docs/Backend.md
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
| **between_bytes_timeout** | **Integer** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional] |
|
|
10
10
|
| **client_cert** | **String** | Unused. | [optional] |
|
|
11
11
|
| **comment** | **String** | A freeform descriptive note. | [optional] |
|
|
12
|
-
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
13
|
-
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
12
|
+
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional] |
|
|
13
|
+
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional] |
|
|
14
14
|
| **healthcheck** | **String** | The name of the healthcheck to use with this backend. | [optional] |
|
|
15
15
|
| **hostname** | **String** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
16
16
|
| **ipv4** | **String** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
data/docs/BackendApi.md
CHANGED
|
@@ -40,8 +40,8 @@ opts = {
|
|
|
40
40
|
between_bytes_timeout: 56, # Integer | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
41
41
|
client_cert: 'client_cert_example', # String | Unused.
|
|
42
42
|
comment: 'comment_example', # String | A freeform descriptive note.
|
|
43
|
-
connect_timeout: 56, # Integer | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
44
|
-
first_byte_timeout: 56, # Integer | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
43
|
+
connect_timeout: 56, # Integer | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
44
|
+
first_byte_timeout: 56, # Integer | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
45
45
|
healthcheck: 'healthcheck_example', # String | The name of the healthcheck to use with this backend.
|
|
46
46
|
hostname: 'hostname_example', # String | The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
47
47
|
ipv4: 'ipv4_example', # String | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -92,8 +92,8 @@ end
|
|
|
92
92
|
| **between_bytes_timeout** | **Integer** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional] |
|
|
93
93
|
| **client_cert** | **String** | Unused. | [optional] |
|
|
94
94
|
| **comment** | **String** | A freeform descriptive note. | [optional] |
|
|
95
|
-
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
96
|
-
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
95
|
+
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional] |
|
|
96
|
+
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional] |
|
|
97
97
|
| **healthcheck** | **String** | The name of the healthcheck to use with this backend. | [optional] |
|
|
98
98
|
| **hostname** | **String** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
99
99
|
| **ipv4** | **String** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
@@ -271,8 +271,8 @@ opts = {
|
|
|
271
271
|
between_bytes_timeout: 56, # Integer | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
272
272
|
client_cert: 'client_cert_example', # String | Unused.
|
|
273
273
|
comment: 'comment_example', # String | A freeform descriptive note.
|
|
274
|
-
connect_timeout: 56, # Integer | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
275
|
-
first_byte_timeout: 56, # Integer | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
274
|
+
connect_timeout: 56, # Integer | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
275
|
+
first_byte_timeout: 56, # Integer | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
276
276
|
healthcheck: 'healthcheck_example', # String | The name of the healthcheck to use with this backend.
|
|
277
277
|
hostname: 'hostname_example', # String | The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
278
278
|
ipv4: 'ipv4_example', # String | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -324,8 +324,8 @@ end
|
|
|
324
324
|
| **between_bytes_timeout** | **Integer** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional] |
|
|
325
325
|
| **client_cert** | **String** | Unused. | [optional] |
|
|
326
326
|
| **comment** | **String** | A freeform descriptive note. | [optional] |
|
|
327
|
-
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
328
|
-
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
327
|
+
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional] |
|
|
328
|
+
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional] |
|
|
329
329
|
| **healthcheck** | **String** | The name of the healthcheck to use with this backend. | [optional] |
|
|
330
330
|
| **hostname** | **String** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
331
331
|
| **ipv4** | **String** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
data/docs/BackendResponse.md
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
| **between_bytes_timeout** | **Integer** | Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`. | [optional] |
|
|
10
10
|
| **client_cert** | **String** | Unused. | [optional] |
|
|
11
11
|
| **comment** | **String** | A freeform descriptive note. | [optional] |
|
|
12
|
-
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
13
|
-
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
12
|
+
| **connect_timeout** | **Integer** | Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`. | [optional] |
|
|
13
|
+
| **first_byte_timeout** | **Integer** | Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [optional] |
|
|
14
14
|
| **healthcheck** | **String** | The name of the healthcheck to use with this backend. | [optional] |
|
|
15
15
|
| **hostname** | **String** | The hostname of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
16
16
|
| **ipv4** | **String** | IPv4 address of the backend. May be used as an alternative to `address` to set the backend location. | [optional] |
|
|
@@ -26,8 +26,8 @@ module Fastly
|
|
|
26
26
|
# @option opts [Integer] :between_bytes_timeout Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
27
27
|
# @option opts [String] :client_cert Unused.
|
|
28
28
|
# @option opts [String] :comment A freeform descriptive note.
|
|
29
|
-
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
30
|
-
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
29
|
+
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
30
|
+
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
31
31
|
# @option opts [String] :healthcheck The name of the healthcheck to use with this backend.
|
|
32
32
|
# @option opts [String] :hostname The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
33
33
|
# @option opts [String] :ipv4 IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -71,8 +71,8 @@ module Fastly
|
|
|
71
71
|
# @option opts [Integer] :between_bytes_timeout Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
72
72
|
# @option opts [String] :client_cert Unused.
|
|
73
73
|
# @option opts [String] :comment A freeform descriptive note.
|
|
74
|
-
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
75
|
-
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
74
|
+
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
75
|
+
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
76
76
|
# @option opts [String] :healthcheck The name of the healthcheck to use with this backend.
|
|
77
77
|
# @option opts [String] :hostname The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
78
78
|
# @option opts [String] :ipv4 IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -436,8 +436,8 @@ module Fastly
|
|
|
436
436
|
# @option opts [Integer] :between_bytes_timeout Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
437
437
|
# @option opts [String] :client_cert Unused.
|
|
438
438
|
# @option opts [String] :comment A freeform descriptive note.
|
|
439
|
-
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
440
|
-
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
439
|
+
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
440
|
+
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
441
441
|
# @option opts [String] :healthcheck The name of the healthcheck to use with this backend.
|
|
442
442
|
# @option opts [String] :hostname The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
443
443
|
# @option opts [String] :ipv4 IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -482,8 +482,8 @@ module Fastly
|
|
|
482
482
|
# @option opts [Integer] :between_bytes_timeout Maximum duration in milliseconds that Fastly will wait while receiving no data on a download from a backend. If exceeded, the response received so far will be considered complete and the fetch will end. May be set at runtime using `bereq.between_bytes_timeout`.
|
|
483
483
|
# @option opts [String] :client_cert Unused.
|
|
484
484
|
# @option opts [String] :comment A freeform descriptive note.
|
|
485
|
-
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
486
|
-
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
485
|
+
# @option opts [Integer] :connect_timeout Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
486
|
+
# @option opts [Integer] :first_byte_timeout Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
487
487
|
# @option opts [String] :healthcheck The name of the healthcheck to use with this backend.
|
|
488
488
|
# @option opts [String] :hostname The hostname of the backend. May be used as an alternative to `address` to set the backend location.
|
|
489
489
|
# @option opts [String] :ipv4 IPv4 address of the backend. May be used as an alternative to `address` to set the backend location.
|
|
@@ -28,10 +28,10 @@ module Fastly
|
|
|
28
28
|
# A freeform descriptive note.
|
|
29
29
|
attr_accessor :comment
|
|
30
30
|
|
|
31
|
-
# Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
31
|
+
# Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
32
32
|
attr_accessor :connect_timeout
|
|
33
33
|
|
|
34
|
-
# Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
34
|
+
# Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
35
35
|
attr_accessor :first_byte_timeout
|
|
36
36
|
|
|
37
37
|
# The name of the healthcheck to use with this backend.
|
|
@@ -28,10 +28,10 @@ module Fastly
|
|
|
28
28
|
# A freeform descriptive note.
|
|
29
29
|
attr_accessor :comment
|
|
30
30
|
|
|
31
|
-
# Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a
|
|
31
|
+
# Maximum duration in milliseconds to wait for a connection to this backend to be established. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
|
|
32
32
|
attr_accessor :connect_timeout
|
|
33
33
|
|
|
34
|
-
# Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a
|
|
34
|
+
# Maximum duration in milliseconds to wait for the server response to begin after a TCP connection is established and the request has been sent. If exceeded, the connection is aborted and a synthetic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
|
|
35
35
|
attr_accessor :first_byte_timeout
|
|
36
36
|
|
|
37
37
|
# The name of the healthcheck to use with this backend.
|
data/lib/fastly/version.rb
CHANGED
data/sig.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"G": "
|
|
1
|
+
{"G": "dbe8e713", "D": "4061d4ec"}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.
|
|
4
|
+
version: 8.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fastly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|