bard 0.59.1 → 0.59.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bard/ci/github_actions.rb +1 -1
- data/lib/bard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be03f18048d42fca18c08b2e4acfc1ec0abc689cc3308e3672774d67098556c2
|
4
|
+
data.tar.gz: ebfe954ff476c1fd5f1a2120f3be08ce0cdab036bb49584921bd2b43d14bc6c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 156f27088ee94fef48ee33c054fdf7a14eadf0875eb3752b661a0cc12b60bb56f655d124799e21566b4d8324bc5deb362ba2fd5991c6070821431e54925987f4
|
7
|
+
data.tar.gz: dfaea284d495faa359018c0fbacf194d03bd77491c4d4ea21372fca3aadaec0fe6869b7f80fde8f1ada60ef2660b76b378137358892c875a27705f782d4a39d4
|
@@ -215,7 +215,7 @@ class Bard::CLI < Thor
|
|
215
215
|
|
216
216
|
case response
|
217
217
|
when Net::HTTPRedirection then
|
218
|
-
get(response["Location"])
|
218
|
+
Net::HTTP.get(URI(response["Location"]))
|
219
219
|
when Net::HTTPSuccess then
|
220
220
|
if response["Content-Type"].to_s.include?("/json")
|
221
221
|
JSON.load(response.body)
|
data/lib/bard/version.rb
CHANGED