json-jwt 1.10.0 → 1.13.0

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.
@@ -1,28 +0,0 @@
1
- require 'simplecov'
2
-
3
- SimpleCov.start do
4
- add_filter 'spec'
5
- end
6
-
7
- require 'rspec'
8
- require 'rspec/its'
9
- require 'json/jwt'
10
-
11
- RSpec.configure do |config|
12
- config.expect_with :rspec do |c|
13
- c.syntax = [:should, :expect]
14
- end
15
- end
16
-
17
- def gcm_supported?
18
- ['aes-128-gcm', 'aes-128-gcm'].all? do |alg|
19
- OpenSSL::Cipher.ciphers.include? alg
20
- end
21
- end
22
-
23
- def pss_supported?
24
- OpenSSL::VERSION >= '2.1.0'
25
- end
26
-
27
- require 'helpers/sign_key_fixture_helper'
28
- require 'helpers/nimbus_spec_helper'