skykick 0.2.0 → 0.2.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 +3 -0
- data/bin/cc-test-reporter.exe +0 -0
- data/lib/skykick/authentication.rb +1 -1
- data/lib/skykick/version.rb +1 -1
- 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: 4e219c7c7f5e5af499eb2dfa75b4f26ec1b44a0feec1f388debf960f7c623e91
|
|
4
|
+
data.tar.gz: 2cec92749ffd33a36a0ea36d583dd025f304c8672c5bf1469146986642bd72f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b152d1d931fd129b0c921c3d9634831c6037f0d5cca1eb10f9ea16daaae1d886c5234e8a736be2a1a13b76daa3eae0b196bc81eacdc45703d42f8595e35359b0
|
|
7
|
+
data.tar.gz: dda82313a9f6208348f1381ae01e08773591033cce4a90d2cc61d215bd8a189a9025d2bdf96aae5861b504c4de68432f230523c8309159b0c456fc643887e575
|
data/CHANGELOG.md
CHANGED
|
Binary file
|
|
@@ -10,7 +10,7 @@ module Skykick
|
|
|
10
10
|
raise ConfigurationError.new 'Client id and/or secret not configured' unless client_id && client_secret
|
|
11
11
|
|
|
12
12
|
c = connection
|
|
13
|
-
c.
|
|
13
|
+
c.request :authorization, :basic, client_id, client_secret
|
|
14
14
|
response = c.post('/auth/token') do |request|
|
|
15
15
|
request.headers['Content-Type'] = 'application/x-www-form-urlencoded'
|
|
16
16
|
request.body = URI.encode_www_form( api_access_token_params )
|
data/lib/skykick/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: skykick
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Janco Tanis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -106,6 +106,7 @@ files:
|
|
|
106
106
|
- Gemfile
|
|
107
107
|
- README.md
|
|
108
108
|
- Rakefile
|
|
109
|
+
- bin/cc-test-reporter.exe
|
|
109
110
|
- lib/skykick.rb
|
|
110
111
|
- lib/skykick/api.rb
|
|
111
112
|
- lib/skykick/authentication.rb
|
|
@@ -138,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
139
|
- !ruby/object:Gem::Version
|
|
139
140
|
version: '0'
|
|
140
141
|
requirements: []
|
|
141
|
-
rubygems_version: 3.2.
|
|
142
|
+
rubygems_version: 3.2.3
|
|
142
143
|
signing_key:
|
|
143
144
|
specification_version: 4
|
|
144
145
|
summary: A Ruby wrapper for the Skykick backup Portal REST APIs (readonly)
|