keyless 1.3.5 → 1.4.0

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: dd74dbdedbcf88096abd3a59df2486dba0379e7bc670396dcbeeb6e183336eaa
4
- data.tar.gz: ef859c12a88e304519ee62a9f753182a245a81dff81e2b23c1f85d8a65f1e07d
3
+ metadata.gz: f607f7f3118c5e025273da1d5b6c4070b3c19ba639fd8d82a59550c07d3a8daa
4
+ data.tar.gz: 1001e9213845c2dfc1554b9d0fdcda2a3aa3cb11f95152029ca7e34cccd40f20
5
5
  SHA512:
6
- metadata.gz: f654f2918c66b8c61a94c5f3da1b80945ca7d3320e576f4c8622a67518808bd73a163dc816cb47cf43a914efc50d31ffdfd5d6cefa3bddf52ccc8001447d703f
7
- data.tar.gz: 751e1d333544fa609f9d405b04d65ff0791093c49628b231eda4bef68b11df5aafbc6416bdf5cc80ecf118f7404cbb99b47a6aaa4c18d13a0820a43b933dfff0
6
+ metadata.gz: fdc2a9e941fd3af9dd9796f4bc51908bacbaaaf81dc93f071e8405b9a609c0572385725913b5d0443533aca7227cb563a858260f0755383d05d3af46e152ed99
7
+ data.tar.gz: 4206fc77b17e57df64153ab30071787c020f159bdcd12fd9489c8d810e40ff712e6fa3be5023174d1580af5055d341c531e7543dc9d764c06c2a5a114d49515f
data/.yardopts CHANGED
@@ -4,3 +4,4 @@
4
4
  -
5
5
  README.md
6
6
  doc/examples/**/*.rb
7
+ doc/*.md
data/CHANGELOG.md CHANGED
@@ -2,36 +2,40 @@
2
2
 
3
3
  * TODO: Replace this bullet point with an actual description of a change.
4
4
 
5
- ### 1.3.5
5
+ ### 1.4.0 (4 October 2024)
6
+
7
+ * Upgraded the `recursive-open-struct` gem to `~> 2.0` (#5)
8
+
9
+ ### 1.3.5 (15 August 2024)
6
10
 
7
11
  * Just a retag of 1.3.1
8
12
 
9
- ### 1.3.4
13
+ ### 1.3.4 (15 August 2024)
10
14
 
11
15
  * Just a retag of 1.3.1
12
16
 
13
- ### 1.3.3
17
+ ### 1.3.3 (15 August 2024)
14
18
 
15
19
  * Just a retag of 1.3.1
16
20
 
17
- ### 1.3.2
21
+ ### 1.3.2 (9 August 2024)
18
22
 
19
23
  * Just a retag of 1.3.1
20
24
 
21
- ### 1.3.1
25
+ ### 1.3.1 (9 August 2024)
22
26
 
23
27
  * Added API docs building to continuous integration (#4)
24
28
 
25
- ### 1.3.0
29
+ ### 1.3.0 (8 July 2024)
26
30
 
27
31
  * Moved the development dependencies from the gemspec to the Gemfile (#2)
28
32
  * Dropped support for Ruby <2.7 (#3)
29
33
 
30
- ### 1.2.0
34
+ ### 1.2.0 (24 February 2023)
31
35
 
32
36
  * Added support for Gem release automation
33
37
 
34
- ### 1.1.0
38
+ ### 1.1.0 (18 January 2023)
35
39
 
36
40
  * Bundler >= 2.3 is from now on required as minimal version (#1)
37
41
  * Dropped support for Ruby < 2.5 (#1)
@@ -39,17 +43,17 @@
39
43
  * Updated all development/runtime gems to their latest
40
44
  Ruby 2.5 compatible version (#1)
41
45
 
42
- ### 1.0.2
46
+ ### 1.0.2 (15 October 2021)
43
47
 
44
48
  * Migrated to Github Actions
45
49
  * Migrated to our own coverage reporting
46
50
  * Added the code statistics to the test process
47
51
 
48
- ### 1.0.1
52
+ ### 1.0.1 (1 September 2020)
49
53
 
50
54
  * Renamed the Gem to `keyless`.
51
55
 
52
- ### 1.0.0
56
+ ### 1.0.0 (28 August 2020)
53
57
 
54
58
  * Initial release, extracted from former
55
59
  [grape-jwt-authentication](https://github.com/hausgold/grape-jwt-authentication)
data/keyless.gemspec CHANGED
@@ -35,8 +35,8 @@ Gem::Specification.new do |spec|
35
35
 
36
36
  spec.required_ruby_version = '>= 2.7'
37
37
 
38
- spec.add_runtime_dependency 'activesupport', '>= 5.2'
39
- spec.add_runtime_dependency 'httparty', '>= 0.21'
40
- spec.add_runtime_dependency 'jwt', '~> 2.6'
41
- spec.add_runtime_dependency 'recursive-open-struct', '~> 1.1'
38
+ spec.add_dependency 'activesupport', '>= 5.2'
39
+ spec.add_dependency 'httparty', '>= 0.21'
40
+ spec.add_dependency 'jwt', '~> 2.6'
41
+ spec.add_dependency 'recursive-open-struct', '~> 2.0'
42
42
  end
@@ -3,7 +3,7 @@
3
3
  # The gem version details.
4
4
  module Keyless
5
5
  # The version of the +keyless+ gem
6
- VERSION = '1.3.5'
6
+ VERSION = '1.4.0'
7
7
 
8
8
  class << self
9
9
  # Returns the version of gem as a string.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: keyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2024-08-15 00:00:00.000000000 Z
13
+ date: 2024-10-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport
@@ -60,14 +60,14 @@ dependencies:
60
60
  requirements:
61
61
  - - "~>"
62
62
  - !ruby/object:Gem::Version
63
- version: '1.1'
63
+ version: '2.0'
64
64
  type: :runtime
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - "~>"
69
69
  - !ruby/object:Gem::Version
70
- version: '1.1'
70
+ version: '2.0'
71
71
  description: A reusable JWT authentication helper
72
72
  email:
73
73
  - hermann.mayer92@gmail.com