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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 36719615afb31147f80fdf8ae0458fc51cb4f7b3b706bb0c7074d380be338ae3
4
- data.tar.gz: 4427aeed5e8014aa837e7f5d35224815d75766c70e5577f1d514af92f0889752
3
+ metadata.gz: 2f8c264a53d84a6d5ca5cff95dbd2091e8870435187faed2f0dbbf525d9458c8
4
+ data.tar.gz: 6842a6b39d19ab8f7157b14225339b2ce543155c83c1d5a748f4276920a23253
5
5
  SHA512:
6
- metadata.gz: becf384e316a1d9645dba86b0520e11148816358bfe949f99ed0a6664ddd2b501aadcae2cd8b8ce3c7b2669393ef6854a6285e93e208009cdbaf8d1c98a7068a
7
- data.tar.gz: 2bb29c6991bd7f951be46c0caf9309f53ab364764b2b4c689355ae68005ee3ae36bacd1e506c4bd9bf609b6272bfe6f52d3035d5d4a00213f1b0053296ff49cf
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (8.9.0)
4
+ fastly (8.10.0)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
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.9.0'
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [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 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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [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 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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [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 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] |
@@ -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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`. | [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 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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.connect_timeout`.
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 synthethic `503` response will be presented instead. May be set at runtime using `bereq.first_byte_timeout`.
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.
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '8.9.0'
12
+ VERSION = '8.10.0'
13
13
  end
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "1827dbb1", "D": "1f27800e"}
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.9.0
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-09-13 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus