gamora 0.14.0 → 0.14.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d73a2356c80a3ae90435c16aaed089ceb8bab96a4c424fd66a819d7dbd9843c5
4
- data.tar.gz: 950a900f569d1bd94c039bcbac19df6919ce83953122a71dcd3769dd26a9a848
3
+ metadata.gz: b86b5408e3b789413964ee3f2bda90e09a720f208e0fd0e8321e201bd4b7dbf3
4
+ data.tar.gz: f4ffab58834e0d101e429bedd2eda712eea88c4c249e32b5705292aac38da64a
5
5
  SHA512:
6
- metadata.gz: 95a2b078b3546d2a5ad193b45db7ab5c710847db8096ac7a813ddd1af644450fe5e30e443055af43c1860bf26526985eadab8d31500fbed943b9d8fc3fbaf7c9
7
- data.tar.gz: d224336f131f0d1c0ff4ef68af57f460f2194288a3d61788d653abd994d20e43a43d9c03151c84400d2a2afcdfed00d954e346dba5488e877a4d3bde24a09ff6
6
+ metadata.gz: 5645b009f2fd9547d3e1039c3997c21f7a2ea57bf9a11fdd71fbe38cb0ef7cb5e1bb2ce4e689bd908149252b7c4c12319787382c0587a09addd3f17b6c883aa3
7
+ data.tar.gz: 0b004457b47a11f2f45abbb87497fb1e91c5c46feb8b57a16765380903847177399dffb3d39f5b6fdc68fe5035d1ca602c90997a14d34a828fbd63f9ef244b6d
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gamora
4
- VERSION = "0.14.0"
4
+ VERSION = "0.14.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Gutiérrez
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-14 00:00:00.000000000 Z
10
+ date: 2025-04-03 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: oauth2
@@ -55,7 +54,6 @@ files:
55
54
  - app/controllers/gamora/authorization_controller.rb
56
55
  - app/controllers/gamora/callback_controller.rb
57
56
  - app/controllers/gamora/unauthentication_controller.rb
58
- - app/models/gamora/application_record.rb
59
57
  - config/routes.rb
60
58
  - lib/gamora.rb
61
59
  - lib/gamora/authentication/base.rb
@@ -77,7 +75,6 @@ metadata:
77
75
  source_code_uri: https://github.com/amco/gamora-rb
78
76
  changelog_uri: https://github.com/amco/gamora-rb/blob/main/CHANGELOG.md
79
77
  rubygems_mfa_required: 'true'
80
- post_install_message:
81
78
  rdoc_options: []
82
79
  require_paths:
83
80
  - lib
@@ -92,8 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
89
  - !ruby/object:Gem::Version
93
90
  version: '0'
94
91
  requirements: []
95
- rubygems_version: 3.5.11
96
- signing_key:
92
+ rubygems_version: 3.6.2
97
93
  specification_version: 4
98
94
  summary: OpenID Connect Relying Party for rails apps.
99
95
  test_files: []
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Gamora
4
- class ApplicationRecord < ActiveRecord::Base
5
- self.abstract_class = true
6
- end
7
- end