fastly 2.5.0 → 2.5.1
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 +1 -1
- data/lib/fastly/gem_version.rb +1 -1
- data/test/fastly/client_test.rb +1 -1
- data/test/fastly/token_test.rb +5 -5
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 62353a67eda44f30059b1cbc9a7001d1693140051ee9024f18d8b09cecb9eebe
|
|
4
|
+
data.tar.gz: 57ed549bbcc4ada2f93ae17b1d82285a49e592618686afea2fa32cd65e334794
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f67f5f3419d2fe002d7ef354deaf84e79caca0cb7cb6473feb35199fbd78bca383fbbe3356f3f7e00f0236f8ef853ba7d19fa0b0e4c8826b8d3f2ffef63051c
|
|
7
|
+
data.tar.gz: '09387848c4cee5c2066596dd7a908db84e7a08e0c16c6394ffca91fa68597a1336f19c82be326350061c4541135e21a0a221ed37a1d2dc2378c7db9352561253'
|
data/CHANGELOG.md
CHANGED
|
@@ -478,4 +478,4 @@ Add Healthchecks and Syslog endpoint streaming
|
|
|
478
478
|
Initial releasee
|
|
479
479
|
|
|
480
480
|
|
|
481
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
|
481
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/lib/fastly/gem_version.rb
CHANGED
data/test/fastly/client_test.rb
CHANGED
|
@@ -107,7 +107,7 @@ describe Fastly::Client do
|
|
|
107
107
|
'Content-Accept'=>'application/json',
|
|
108
108
|
'Content-Type'=>'application/x-www-form-urlencoded',
|
|
109
109
|
#'Fastly-Key'=>'notasecreteither',
|
|
110
|
-
'User-Agent'=>
|
|
110
|
+
'User-Agent'=> /fastly-ruby/
|
|
111
111
|
}).
|
|
112
112
|
to_return(body: JSON.generate(i: "dont care"), status: 200)
|
|
113
113
|
|
data/test/fastly/token_test.rb
CHANGED
|
@@ -21,7 +21,7 @@ describe Fastly::Token do
|
|
|
21
21
|
'Content-Accept'=>'application/json',
|
|
22
22
|
'Content-Type'=>'application/x-www-form-urlencoded',
|
|
23
23
|
'Cookie'=>'tasty!',
|
|
24
|
-
'User-Agent'=>
|
|
24
|
+
'User-Agent'=> /fastly-ruby/
|
|
25
25
|
}).
|
|
26
26
|
to_return(status: 403, body: '{"msg":"You must POST /sudo to access this endpoint"}', headers: {})
|
|
27
27
|
|
|
@@ -59,7 +59,7 @@ describe Fastly::Token do
|
|
|
59
59
|
'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
|
|
60
60
|
'Content-Accept'=>'application/json',
|
|
61
61
|
'Content-Type'=>'application/x-www-form-urlencoded',
|
|
62
|
-
'User-Agent'=>
|
|
62
|
+
'User-Agent'=> /fastly-ruby/
|
|
63
63
|
}).
|
|
64
64
|
to_return(status: 200, body: response_body, headers: {})
|
|
65
65
|
|
|
@@ -89,7 +89,7 @@ describe Fastly::Token do
|
|
|
89
89
|
'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
|
|
90
90
|
'Content-Accept'=>'application/json',
|
|
91
91
|
'Fastly-Key'=>'my_api_key',
|
|
92
|
-
'User-Agent'=>
|
|
92
|
+
'User-Agent'=> /fastly-ruby/
|
|
93
93
|
}).
|
|
94
94
|
to_return(status: 204, body: "", headers: {})
|
|
95
95
|
|
|
@@ -105,7 +105,7 @@ describe Fastly::Token do
|
|
|
105
105
|
'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
|
|
106
106
|
'Content-Accept'=>'application/json',
|
|
107
107
|
'Fastly-Key'=>'my_api_key',
|
|
108
|
-
'User-Agent'=>
|
|
108
|
+
'User-Agent'=> /fastly-ruby/
|
|
109
109
|
}).
|
|
110
110
|
to_return(status: 200, body: "[]", headers: {})
|
|
111
111
|
|
|
@@ -120,7 +120,7 @@ describe Fastly::Token do
|
|
|
120
120
|
'Accept-Encoding'=>'gzip;q=1.0,deflate;q=0.6,identity;q=0.3',
|
|
121
121
|
'Content-Accept'=>'application/json',
|
|
122
122
|
'Fastly-Key'=>'my_api_key',
|
|
123
|
-
'User-Agent'=>
|
|
123
|
+
'User-Agent'=> /fastly-ruby/
|
|
124
124
|
}).
|
|
125
125
|
to_return(status: 200, body: "[]", headers: {})
|
|
126
126
|
|
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: 2.5.
|
|
4
|
+
version: 2.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fastly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Client library for the Fastly acceleration system
|
|
14
14
|
email:
|
|
@@ -109,7 +109,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
111
|
requirements: []
|
|
112
|
-
|
|
112
|
+
rubyforge_project:
|
|
113
|
+
rubygems_version: 2.7.6.2
|
|
113
114
|
signing_key:
|
|
114
115
|
specification_version: 4
|
|
115
116
|
summary: Client library for the Fastly acceleration system
|