slosilo 3.0.2.pre.350 → 3.0.2.pre.378

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: 29ccea4e9b0a4faa79807513c8d1b0a0a9ac74951f6b68ceb3a70f7d6598401f
4
- data.tar.gz: c6c02f91a2852813c4211af5d89a002497c1d6cdd9cb59b853821230b71861a2
3
+ metadata.gz: cf892c194d47dfad01cfb8e99c14193401dec5d609076b867183a4240fced6b0
4
+ data.tar.gz: ebad94e4665f3587434e98b3e18b86578ff07752354fc3ad2b32f9e0efd2376c
5
5
  SHA512:
6
- metadata.gz: 97ab45fd0b3450eb7e59afdb7e386281ebfb25f50fff32cafb11e199e5dac17221cc0eddc5116a2b68bca4ed41e37858821cc7a085d0c94a758d3bb2b75e7d51
7
- data.tar.gz: 61e6b66bc035f13794f3d8e53a805612159010e3d81f5e6a8eb70e393f46b50ef80c30a915c59047ecfbf55a669a929a8fc0fa23f23b33b910b9ff831fffa632
6
+ metadata.gz: bc7fcc5ad4c1708435ad71a6fa1148c24f16b820b44f03e32d3ca1b0522f90db083e7a999417ae7ec28364c218bbac0c8bd281ed1d68c5696068e938d9434ccc
7
+ data.tar.gz: d4dc673e34f8276e5f4d86e9e5873e076df9f5d4d13f41419ed5a100b80363690fec28bc26274d99f7e74a388236b3b23206f3c6e03d13fe7269e2dd90da72dc
data/lib/slosilo/jwt.rb CHANGED
@@ -18,7 +18,7 @@ module Slosilo
18
18
  # Parse a token in JSON representation.
19
19
  # @note only single signature is currently supported.
20
20
  def self.parse_json raw
21
- raw = JSON.load raw unless raw.respond_to? :to_h
21
+ raw = JSON.parse raw unless raw.respond_to? :to_h
22
22
  parts = raw.to_h.values_at(*%w(protected payload signature))
23
23
  fail ArgumentError, "input not a complete JWT" unless parts.all?
24
24
  load *parts.map(&Base64.method(:urlsafe_decode64))
@@ -93,7 +93,7 @@ module Slosilo
93
93
  end
94
94
 
95
95
  def self.load raw
96
- self[JSON.load raw.to_s].tap do |h|
96
+ self[JSON.parse raw.to_s].tap do |h|
97
97
  h.send :repr=, raw
98
98
  end
99
99
  end
data/spec/jwt_spec.rb CHANGED
@@ -35,19 +35,19 @@ describe Slosilo::JWT do
35
35
  end
36
36
 
37
37
  it 'allows conversion to JSON representation with #to_json' do
38
- json = JSON.load token.to_json
39
- expect(JSON.load Base64.urlsafe_decode64 json['protected']).to eq \
38
+ json = JSON.parse token.to_json
39
+ expect(JSON.parse Base64.urlsafe_decode64 json['protected']).to eq \
40
40
  'alg' => 'test-sig'
41
- expect(JSON.load Base64.urlsafe_decode64 json['payload']).to eq \
41
+ expect(JSON.parse Base64.urlsafe_decode64 json['payload']).to eq \
42
42
  'iat' => 1401938552, 'test' => 'token'
43
43
  expect(Base64.urlsafe_decode64 json['signature']).to eq signature
44
44
  end
45
45
 
46
46
  it 'allows conversion to compact representation with #to_s' do
47
47
  h, c, s = token.to_s.split '.'
48
- expect(JSON.load Base64.urlsafe_decode64 h).to eq \
48
+ expect(JSON.parse Base64.urlsafe_decode64 h).to eq \
49
49
  'alg' => 'test-sig'
50
- expect(JSON.load Base64.urlsafe_decode64 c).to eq \
50
+ expect(JSON.parse Base64.urlsafe_decode64 c).to eq \
51
51
  'iat' => 1401938552, 'test' => 'token'
52
52
  expect(Base64.urlsafe_decode64 s).to eq signature
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slosilo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2.pre.350
4
+ version: 3.0.2.pre.378
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafał Rzepecki
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-05 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -160,8 +160,8 @@ extra_rdoc_files: []
160
160
  files:
161
161
  - ".github/CODEOWNERS"
162
162
  - ".gitignore"
163
- - ".gitleaks.toml"
164
163
  - ".kateproject"
164
+ - ".oldgitleaks.toml"
165
165
  - CHANGELOG.md
166
166
  - CONTRIBUTING.md
167
167
  - Gemfile
File without changes