rubysky 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abfa017f4c050d17a07d93db832007f506123c6f0f2a46fdd87358b4909a6541
4
- data.tar.gz: cd63c213b9e59c40d4da5a6f04c963fa0083143f2c771e5171afde1e598daac1
3
+ metadata.gz: c44c04b8d9e7b9719cf9a8be4d5b9ac1686ceafb5470da8cafc35dab72bc048a
4
+ data.tar.gz: 962796e252ca7c90ee9eb9c206f052f4f5c5f48d74f861f58ebbabd885127de2
5
5
  SHA512:
6
- metadata.gz: 1dfa8d610b4e3ff419968bf421358642b8596ea86bdf802308df3f997bd4ba25031e8ad49b1f577f60f74df37ac30a44b00d10a26fe43d93eac701b32ee27a91
7
- data.tar.gz: 46569ac22fbbbdf3fd48e3cb0769678793874ebca337ac11a529c56e010cfa8257286adf802c9d70b56255bdfb890b2cd864eafde5f5b7605cc117f91148dcd6
6
+ metadata.gz: 3ce2eded0373f75effd5ef2d98734687c6e353e4b5a353239205bd34ca48d68479b5cb4ed48babedc0d39607b39c11450b191b7d01346b621db09e150b881a80
7
+ data.tar.gz: e4f77dac156e47b273bdf44a485dfab7764accecb3229920eee9802d46653df73d6e57d806540112e436d552007db430f4ebd2c04778019c29e426a65534e48d
@@ -110,7 +110,7 @@ module RubySky
110
110
  private
111
111
 
112
112
  def valid_access_jwt?
113
- jwt = JWT.decode(@access_jwt, nil, false, algorithm: "RS256")
113
+ jwt = JWT.decode(@session.access_jwt, nil, false, algorithm: "RS256")
114
114
  payload = jwt[0]
115
115
  payload["exp"] > Time.now.to_i + 10
116
116
  end
@@ -120,9 +120,8 @@ module RubySky
120
120
  end
121
121
 
122
122
  def refresh!(refresh_jwt: nil, pds: nil)
123
- @refresh_jwt = refresh_jwt if refresh_jwt
124
123
  @pds = pds if pds
125
- res = send_post(pds: @pds, path: REFRESH_SESSION_PATH, auth: @refresh_jwt)
124
+ res = send_post(pds: @pds, path: REFRESH_SESSION_PATH, auth: refresh_jwt || @session.refresh_jwt)
126
125
  ensure_success(res:, called_from: REFRESH_SESSION_PATH)
127
126
 
128
127
  json = JSON.parse(res.body)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubySky
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubysky
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kugayama Nana
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2024-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt