authorized_persona 0.12.0 → 0.14.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13df22b61240fd450d930c9b1da40b0454c9d4dcdf93acc22fd20499e9733e20
4
- data.tar.gz: 724c056638bd42335f6f4f26c28c9e9ca2ab544fa8d23fe926bb4caf2b292460
3
+ metadata.gz: c9e322d7091a71a5510f4327de30935964632bf1973bd17044490224180ab923
4
+ data.tar.gz: f2095f1ae4244a66fb5e28c5b3ba2be1d3fbefa74584ba63525d8d3d942fa78e
5
5
  SHA512:
6
- metadata.gz: 5a5eb5f691154244989ebd1bc76b080af30b7d06d39709bc10199bd97f6ce99f0ca760fc025e0325e5cd87293c9651856a6626ba49a8ae44923d753b30a6cf3b
7
- data.tar.gz: 0a09e9949cbddcbbce9e2694f3b5261da09d0a96295321b8df60cfb0f2af469dd8262c7ef2e10c22dd63fbfdee0c4e1fa6aa68dc72a9d4a3a90754465bec7f3a
6
+ metadata.gz: d403986a33e7df87bdd12b1c46d50d352cf966726425de84e814987bbeb6a5a76fde2557bcfcf4ef31bb548d6c7c525e69b48036de41ebbdb8f6a38cbac3f94b
7
+ data.tar.gz: 9b4c302020e940d4a44b06589a843f380a3761a7b43370aa079bc8a704d2908acdb1e4540ea276f02747484c804db1723361bab97821ae526f416593e1dbaf15
@@ -8,23 +8,12 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: ['3.0', '3.2', '3.3']
11
+ ruby: ['3.3', '3.4']
12
12
  gemfile:
13
- - gemfiles/rails_6_1.gemfile
14
- - gemfiles/rails_7_0.gemfile
15
- - gemfiles/rails_7_1.gemfile
16
- - gemfiles/rails_7_2.gemfile
17
13
  - gemfiles/rails_8_0.gemfile
18
- exclude:
19
- - ruby: '3.1'
20
- gemfile: gemfiles/rails_8_0.gemfile
21
- - ruby: '3.0'
22
- gemfile: gemfiles/rails_8_0.gemfile
23
- - ruby: '3.0'
24
- gemfile: gemfiles/rails_7_2.gemfile
25
14
  steps:
26
- - uses: actions/checkout@v2
27
- - uses: ruby/setup-ruby@v1
15
+ - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
16
+ - uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
28
17
  env:
29
18
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
30
19
  with:
data/.rubocop.yml CHANGED
@@ -9,6 +9,7 @@ inherit_mode:
9
9
  - Exclude
10
10
 
11
11
  AllCops:
12
- TargetRubyVersion: 3.0
12
+ TargetRubyVersion: 3.3
13
+ TargetRailsVersion: 8.0
13
14
  Exclude:
14
15
  - gemfiles/*.gemfile
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.2
1
+ 3.4.8
data/Appraisals CHANGED
@@ -1,23 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- appraise 'rails-6-1' do
4
- gem 'railties', '~> 6.1.0'
5
- gem 'concurrent-ruby', '1.3.4'
6
- end
7
-
8
- appraise 'rails-7-0' do
9
- gem 'railties', '~> 7.0.0'
10
- gem 'concurrent-ruby', '1.3.4'
11
- end
12
-
13
- appraise 'rails-7-1' do
14
- gem 'railties', '~> 7.1.0'
15
- end
16
-
17
- appraise 'rails-7-2' do
18
- gem 'railties', '~> 7.2.0'
19
- end
20
-
21
3
  appraise 'rails-8-0' do
22
4
  gem 'railties', '~> 8.0.0'
23
5
  end
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
4
+ authorized_persona (0.14.0)
5
+ railties (>= 8.0, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -74,12 +74,10 @@ GEM
74
74
  loofah (2.24.0)
75
75
  crass (~> 1.0.2)
76
76
  nokogiri (>= 1.12.0)
77
+ mini_portile2 (2.8.9)
77
78
  minitest (5.25.4)
78
- nokogiri (1.17.2-arm64-darwin)
79
- racc (~> 1.4)
80
- nokogiri (1.17.2-x86_64-darwin)
81
- racc (~> 1.4)
82
- nokogiri (1.17.2-x86_64-linux)
79
+ nokogiri (1.17.2)
80
+ mini_portile2 (~> 2.8.2)
83
81
  racc (~> 1.4)
84
82
  parallel (1.26.3)
85
83
  parser (3.3.7.0)
@@ -186,11 +184,12 @@ GEM
186
184
  PLATFORMS
187
185
  arm64-darwin-22
188
186
  arm64-darwin-23
187
+ arm64-darwin-25
189
188
  x86_64-darwin-22
190
189
  x86_64-linux
191
190
 
192
191
  DEPENDENCIES
193
- activemodel (>= 6.1, < 8.1)
192
+ activemodel (>= 8.0, < 8.1)
194
193
  appraisal
195
194
  authorized_persona!
196
195
  betterlint
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.description = "AuthorizedPersona is a rails implementation of Betterment's Persona Centric Authorization pattern"
15
15
  spec.homepage = "https://github.com/Betterment/authorized_persona"
16
16
  spec.license = "MIT"
17
- spec.required_ruby_version = ">= 3.0"
17
+ spec.required_ruby_version = ">= 3.3"
18
18
 
19
19
  # Specify which files should be added to the gem when it is released.
20
20
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
26
  spec.require_paths = ["lib"]
27
27
 
28
- rails_version_range = [">= 6.1", "< 8.1"]
28
+ rails_version_range = [">= 8.0", "< 8.1"]
29
29
 
30
30
  spec.add_dependency "railties", *rails_version_range
31
31
 
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
4
+ authorized_persona (0.14.0)
5
+ railties (>= 8.0, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -74,10 +74,10 @@ GEM
74
74
  loofah (2.24.0)
75
75
  crass (~> 1.0.2)
76
76
  nokogiri (>= 1.12.0)
77
+ mini_portile2 (2.8.9)
77
78
  minitest (5.25.4)
78
- nokogiri (1.17.2-arm64-darwin)
79
- racc (~> 1.4)
80
- nokogiri (1.17.2-x86_64-linux)
79
+ nokogiri (1.17.2)
80
+ mini_portile2 (~> 2.8.2)
81
81
  racc (~> 1.4)
82
82
  parallel (1.26.3)
83
83
  parser (3.3.7.0)
@@ -183,10 +183,11 @@ GEM
183
183
 
184
184
  PLATFORMS
185
185
  arm64-darwin-23
186
+ arm64-darwin-25
186
187
  x86_64-linux
187
188
 
188
189
  DEPENDENCIES
189
- activemodel (>= 6.1, < 8.1)
190
+ activemodel (>= 8.0, < 8.1)
190
191
  appraisal
191
192
  authorized_persona!
192
193
  betterlint
@@ -59,7 +59,7 @@ module AuthorizedPersona
59
59
  def authorized?(current_user:, action:)
60
60
  raise AuthorizedPersona::Error, "#{current_user} is not a #{authorization_persona}" unless current_user.is_a?(authorization_persona)
61
61
 
62
- current_user.authorization_tier_at_or_above?(authorized_tier(action: action))
62
+ current_user.authorization_tier_at_or_above?(authorized_tier(action:))
63
63
  end
64
64
 
65
65
  def authorized_tier(action:)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AuthorizedPersona
4
- VERSION = "0.12.0"
4
+ VERSION = "0.14.0"
5
5
  end
@@ -7,7 +7,7 @@ module AuthorizedPersona
7
7
  raise AuthorizedPersona::Error, "Unable to determine route for #{resource}" if route.nil?
8
8
 
9
9
  controller_class = (route.defaults[:controller].camelize + 'Controller').constantize
10
- controller_class.authorized?(current_user: authorization_current_user, action: action)
10
+ controller_class.authorized?(current_user: authorization_current_user, action:)
11
11
  end
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authorized_persona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Mileham
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-01-22 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: railties
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: '6.1'
18
+ version: '8.0'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: '8.1'
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: '6.1'
28
+ version: '8.0'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: '8.1'
@@ -36,7 +35,7 @@ dependencies:
36
35
  requirements:
37
36
  - - ">="
38
37
  - !ruby/object:Gem::Version
39
- version: '6.1'
38
+ version: '8.0'
40
39
  - - "<"
41
40
  - !ruby/object:Gem::Version
42
41
  version: '8.1'
@@ -46,7 +45,7 @@ dependencies:
46
45
  requirements:
47
46
  - - ">="
48
47
  - !ruby/object:Gem::Version
49
- version: '6.1'
48
+ version: '8.0'
50
49
  - - "<"
51
50
  - !ruby/object:Gem::Version
52
51
  version: '8.1'
@@ -144,14 +143,6 @@ files:
144
143
  - authorized_persona.gemspec
145
144
  - bin/console
146
145
  - bin/setup
147
- - gemfiles/rails_6_1.gemfile
148
- - gemfiles/rails_6_1.gemfile.lock
149
- - gemfiles/rails_7_0.gemfile
150
- - gemfiles/rails_7_0.gemfile.lock
151
- - gemfiles/rails_7_1.gemfile
152
- - gemfiles/rails_7_1.gemfile.lock
153
- - gemfiles/rails_7_2.gemfile
154
- - gemfiles/rails_7_2.gemfile.lock
155
146
  - gemfiles/rails_8_0.gemfile
156
147
  - gemfiles/rails_8_0.gemfile.lock
157
148
  - lib/authorized_persona.rb
@@ -165,7 +156,6 @@ licenses:
165
156
  - MIT
166
157
  metadata:
167
158
  rubygems_mfa_required: 'true'
168
- post_install_message:
169
159
  rdoc_options: []
170
160
  require_paths:
171
161
  - lib
@@ -173,15 +163,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
163
  requirements:
174
164
  - - ">="
175
165
  - !ruby/object:Gem::Version
176
- version: '3.0'
166
+ version: '3.3'
177
167
  required_rubygems_version: !ruby/object:Gem::Requirement
178
168
  requirements:
179
169
  - - ">="
180
170
  - !ruby/object:Gem::Version
181
171
  version: '0'
182
172
  requirements: []
183
- rubygems_version: 3.5.23
184
- signing_key:
173
+ rubygems_version: 4.0.13
185
174
  specification_version: 4
186
175
  summary: the simplest authorization library you will ever love
187
176
  test_files: []
@@ -1,11 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "zeitwerk", "~> 2.6.18"
6
- gem "nokogiri", "~> 1.17.2"
7
- gem "securerandom", "~> 0.3.2"
8
- gem "railties", "~> 6.1.0"
9
- gem "concurrent-ruby", "1.3.4"
10
-
11
- gemspec path: "../"
@@ -1,166 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (6.1.7.10)
11
- actionview (= 6.1.7.10)
12
- activesupport (= 6.1.7.10)
13
- rack (~> 2.0, >= 2.0.9)
14
- rack-test (>= 0.6.3)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (6.1.7.10)
18
- activesupport (= 6.1.7.10)
19
- builder (~> 3.1)
20
- erubi (~> 1.4)
21
- rails-dom-testing (~> 2.0)
22
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activemodel (6.1.7.10)
24
- activesupport (= 6.1.7.10)
25
- activesupport (6.1.7.10)
26
- concurrent-ruby (~> 1.0, >= 1.0.2)
27
- i18n (>= 1.6, < 2)
28
- minitest (>= 5.1)
29
- tzinfo (~> 2.0)
30
- zeitwerk (~> 2.3)
31
- appraisal (2.5.0)
32
- bundler
33
- rake
34
- thor (>= 0.14.0)
35
- ast (2.4.2)
36
- betterlint (1.16.0)
37
- rubocop (~> 1.62.0)
38
- rubocop-graphql (~> 1.5.0)
39
- rubocop-performance (~> 1.21.0)
40
- rubocop-rails (~> 2.24.0)
41
- rubocop-rake (~> 0.6.0)
42
- rubocop-rspec (~> 2.28.0)
43
- builder (3.3.0)
44
- concurrent-ruby (1.3.4)
45
- crass (1.0.6)
46
- diff-lcs (1.5.1)
47
- erubi (1.13.1)
48
- i18n (1.14.7)
49
- concurrent-ruby (~> 1.0)
50
- json (2.9.1)
51
- language_server-protocol (3.17.0.3)
52
- loofah (2.24.0)
53
- crass (~> 1.0.2)
54
- nokogiri (>= 1.12.0)
55
- method_source (1.1.0)
56
- minitest (5.25.4)
57
- nokogiri (1.17.2-arm64-darwin)
58
- racc (~> 1.4)
59
- nokogiri (1.17.2-x86_64-darwin)
60
- racc (~> 1.4)
61
- nokogiri (1.17.2-x86_64-linux)
62
- racc (~> 1.4)
63
- parallel (1.26.3)
64
- parser (3.3.7.0)
65
- ast (~> 2.4.1)
66
- racc
67
- racc (1.8.1)
68
- rack (2.2.10)
69
- rack-test (2.2.0)
70
- rack (>= 1.3)
71
- rails-dom-testing (2.2.0)
72
- activesupport (>= 5.0.0)
73
- minitest
74
- nokogiri (>= 1.6)
75
- rails-html-sanitizer (1.6.2)
76
- loofah (~> 2.21)
77
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
78
- railties (6.1.7.10)
79
- actionpack (= 6.1.7.10)
80
- activesupport (= 6.1.7.10)
81
- method_source
82
- rake (>= 12.2)
83
- thor (~> 1.0)
84
- rainbow (3.1.1)
85
- rake (13.2.1)
86
- regexp_parser (2.10.0)
87
- rexml (3.4.0)
88
- rspec (3.13.0)
89
- rspec-core (~> 3.13.0)
90
- rspec-expectations (~> 3.13.0)
91
- rspec-mocks (~> 3.13.0)
92
- rspec-core (3.13.2)
93
- rspec-support (~> 3.13.0)
94
- rspec-expectations (3.13.3)
95
- diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (~> 3.13.0)
97
- rspec-mocks (3.13.2)
98
- diff-lcs (>= 1.2.0, < 2.0)
99
- rspec-support (~> 3.13.0)
100
- rspec-support (3.13.2)
101
- rubocop (1.62.1)
102
- json (~> 2.3)
103
- language_server-protocol (>= 3.17.0)
104
- parallel (~> 1.10)
105
- parser (>= 3.3.0.2)
106
- rainbow (>= 2.2.2, < 4.0)
107
- regexp_parser (>= 1.8, < 3.0)
108
- rexml (>= 3.2.5, < 4.0)
109
- rubocop-ast (>= 1.31.1, < 2.0)
110
- ruby-progressbar (~> 1.7)
111
- unicode-display_width (>= 2.4.0, < 3.0)
112
- rubocop-ast (1.37.0)
113
- parser (>= 3.3.1.0)
114
- rubocop-capybara (2.21.0)
115
- rubocop (~> 1.41)
116
- rubocop-factory_bot (2.26.1)
117
- rubocop (~> 1.61)
118
- rubocop-graphql (1.5.4)
119
- rubocop (>= 1.50, < 2)
120
- rubocop-performance (1.21.1)
121
- rubocop (>= 1.48.1, < 2.0)
122
- rubocop-ast (>= 1.31.1, < 2.0)
123
- rubocop-rails (2.24.1)
124
- activesupport (>= 4.2.0)
125
- rack (>= 1.1)
126
- rubocop (>= 1.33.0, < 2.0)
127
- rubocop-ast (>= 1.31.1, < 2.0)
128
- rubocop-rake (0.6.0)
129
- rubocop (~> 1.0)
130
- rubocop-rspec (2.28.0)
131
- rubocop (~> 1.40)
132
- rubocop-capybara (~> 2.17)
133
- rubocop-factory_bot (~> 2.22)
134
- rubocop-rspec_rails (~> 2.28)
135
- rubocop-rspec_rails (2.29.1)
136
- rubocop (~> 1.61)
137
- ruby-progressbar (1.13.0)
138
- securerandom (0.3.2)
139
- thor (1.3.2)
140
- tzinfo (2.0.6)
141
- concurrent-ruby (~> 1.0)
142
- unicode-display_width (2.6.0)
143
- zeitwerk (2.6.18)
144
-
145
- PLATFORMS
146
- arm64-darwin-22
147
- arm64-darwin-23
148
- x86_64-darwin-22
149
- x86_64-linux
150
-
151
- DEPENDENCIES
152
- activemodel (>= 6.1, < 8.1)
153
- appraisal
154
- authorized_persona!
155
- betterlint
156
- bundler
157
- concurrent-ruby (= 1.3.4)
158
- nokogiri (~> 1.17.2)
159
- railties (~> 6.1.0)
160
- rake
161
- rspec (~> 3.0)
162
- securerandom (~> 0.3.2)
163
- zeitwerk (~> 2.6.18)
164
-
165
- BUNDLED WITH
166
- 2.4.21
@@ -1,11 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "zeitwerk", "~> 2.6.18"
6
- gem "nokogiri", "~> 1.17.2"
7
- gem "securerandom", "~> 0.3.2"
8
- gem "railties", "~> 7.0.0"
9
- gem "concurrent-ruby", "1.3.4"
10
-
11
- gemspec path: "../"
@@ -1,166 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (7.0.8.7)
11
- actionview (= 7.0.8.7)
12
- activesupport (= 7.0.8.7)
13
- rack (~> 2.0, >= 2.2.4)
14
- rack-test (>= 0.6.3)
15
- rails-dom-testing (~> 2.0)
16
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
17
- actionview (7.0.8.7)
18
- activesupport (= 7.0.8.7)
19
- builder (~> 3.1)
20
- erubi (~> 1.4)
21
- rails-dom-testing (~> 2.0)
22
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
23
- activemodel (7.0.8.7)
24
- activesupport (= 7.0.8.7)
25
- activesupport (7.0.8.7)
26
- concurrent-ruby (~> 1.0, >= 1.0.2)
27
- i18n (>= 1.6, < 2)
28
- minitest (>= 5.1)
29
- tzinfo (~> 2.0)
30
- appraisal (2.5.0)
31
- bundler
32
- rake
33
- thor (>= 0.14.0)
34
- ast (2.4.2)
35
- betterlint (1.16.0)
36
- rubocop (~> 1.62.0)
37
- rubocop-graphql (~> 1.5.0)
38
- rubocop-performance (~> 1.21.0)
39
- rubocop-rails (~> 2.24.0)
40
- rubocop-rake (~> 0.6.0)
41
- rubocop-rspec (~> 2.28.0)
42
- builder (3.3.0)
43
- concurrent-ruby (1.3.4)
44
- crass (1.0.6)
45
- diff-lcs (1.5.1)
46
- erubi (1.13.1)
47
- i18n (1.14.7)
48
- concurrent-ruby (~> 1.0)
49
- json (2.9.1)
50
- language_server-protocol (3.17.0.3)
51
- loofah (2.24.0)
52
- crass (~> 1.0.2)
53
- nokogiri (>= 1.12.0)
54
- method_source (1.1.0)
55
- minitest (5.25.4)
56
- nokogiri (1.17.2-arm64-darwin)
57
- racc (~> 1.4)
58
- nokogiri (1.17.2-x86_64-darwin)
59
- racc (~> 1.4)
60
- nokogiri (1.17.2-x86_64-linux)
61
- racc (~> 1.4)
62
- parallel (1.26.3)
63
- parser (3.3.7.0)
64
- ast (~> 2.4.1)
65
- racc
66
- racc (1.8.1)
67
- rack (2.2.10)
68
- rack-test (2.2.0)
69
- rack (>= 1.3)
70
- rails-dom-testing (2.2.0)
71
- activesupport (>= 5.0.0)
72
- minitest
73
- nokogiri (>= 1.6)
74
- rails-html-sanitizer (1.6.2)
75
- loofah (~> 2.21)
76
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
77
- railties (7.0.8.7)
78
- actionpack (= 7.0.8.7)
79
- activesupport (= 7.0.8.7)
80
- method_source
81
- rake (>= 12.2)
82
- thor (~> 1.0)
83
- zeitwerk (~> 2.5)
84
- rainbow (3.1.1)
85
- rake (13.2.1)
86
- regexp_parser (2.10.0)
87
- rexml (3.4.0)
88
- rspec (3.13.0)
89
- rspec-core (~> 3.13.0)
90
- rspec-expectations (~> 3.13.0)
91
- rspec-mocks (~> 3.13.0)
92
- rspec-core (3.13.2)
93
- rspec-support (~> 3.13.0)
94
- rspec-expectations (3.13.3)
95
- diff-lcs (>= 1.2.0, < 2.0)
96
- rspec-support (~> 3.13.0)
97
- rspec-mocks (3.13.2)
98
- diff-lcs (>= 1.2.0, < 2.0)
99
- rspec-support (~> 3.13.0)
100
- rspec-support (3.13.2)
101
- rubocop (1.62.1)
102
- json (~> 2.3)
103
- language_server-protocol (>= 3.17.0)
104
- parallel (~> 1.10)
105
- parser (>= 3.3.0.2)
106
- rainbow (>= 2.2.2, < 4.0)
107
- regexp_parser (>= 1.8, < 3.0)
108
- rexml (>= 3.2.5, < 4.0)
109
- rubocop-ast (>= 1.31.1, < 2.0)
110
- ruby-progressbar (~> 1.7)
111
- unicode-display_width (>= 2.4.0, < 3.0)
112
- rubocop-ast (1.37.0)
113
- parser (>= 3.3.1.0)
114
- rubocop-capybara (2.21.0)
115
- rubocop (~> 1.41)
116
- rubocop-factory_bot (2.26.1)
117
- rubocop (~> 1.61)
118
- rubocop-graphql (1.5.4)
119
- rubocop (>= 1.50, < 2)
120
- rubocop-performance (1.21.1)
121
- rubocop (>= 1.48.1, < 2.0)
122
- rubocop-ast (>= 1.31.1, < 2.0)
123
- rubocop-rails (2.24.1)
124
- activesupport (>= 4.2.0)
125
- rack (>= 1.1)
126
- rubocop (>= 1.33.0, < 2.0)
127
- rubocop-ast (>= 1.31.1, < 2.0)
128
- rubocop-rake (0.6.0)
129
- rubocop (~> 1.0)
130
- rubocop-rspec (2.28.0)
131
- rubocop (~> 1.40)
132
- rubocop-capybara (~> 2.17)
133
- rubocop-factory_bot (~> 2.22)
134
- rubocop-rspec_rails (~> 2.28)
135
- rubocop-rspec_rails (2.29.1)
136
- rubocop (~> 1.61)
137
- ruby-progressbar (1.13.0)
138
- securerandom (0.3.2)
139
- thor (1.3.2)
140
- tzinfo (2.0.6)
141
- concurrent-ruby (~> 1.0)
142
- unicode-display_width (2.6.0)
143
- zeitwerk (2.6.18)
144
-
145
- PLATFORMS
146
- arm64-darwin-22
147
- arm64-darwin-23
148
- x86_64-darwin-22
149
- x86_64-linux
150
-
151
- DEPENDENCIES
152
- activemodel (>= 6.1, < 8.1)
153
- appraisal
154
- authorized_persona!
155
- betterlint
156
- bundler
157
- concurrent-ruby (= 1.3.4)
158
- nokogiri (~> 1.17.2)
159
- railties (~> 7.0.0)
160
- rake
161
- rspec (~> 3.0)
162
- securerandom (~> 0.3.2)
163
- zeitwerk (~> 2.6.18)
164
-
165
- BUNDLED WITH
166
- 2.4.21
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "zeitwerk", "~> 2.6.18"
6
- gem "nokogiri", "~> 1.17.2"
7
- gem "securerandom", "~> 0.3.2"
8
- gem "railties", "~> 7.1.0"
9
-
10
- gemspec path: "../"
@@ -1,202 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (7.1.5.1)
11
- actionview (= 7.1.5.1)
12
- activesupport (= 7.1.5.1)
13
- nokogiri (>= 1.8.5)
14
- racc
15
- rack (>= 2.2.4)
16
- rack-session (>= 1.0.1)
17
- rack-test (>= 0.6.3)
18
- rails-dom-testing (~> 2.2)
19
- rails-html-sanitizer (~> 1.6)
20
- actionview (7.1.5.1)
21
- activesupport (= 7.1.5.1)
22
- builder (~> 3.1)
23
- erubi (~> 1.11)
24
- rails-dom-testing (~> 2.2)
25
- rails-html-sanitizer (~> 1.6)
26
- activemodel (7.1.5.1)
27
- activesupport (= 7.1.5.1)
28
- activesupport (7.1.5.1)
29
- base64
30
- benchmark (>= 0.3)
31
- bigdecimal
32
- concurrent-ruby (~> 1.0, >= 1.0.2)
33
- connection_pool (>= 2.2.5)
34
- drb
35
- i18n (>= 1.6, < 2)
36
- logger (>= 1.4.2)
37
- minitest (>= 5.1)
38
- mutex_m
39
- securerandom (>= 0.3)
40
- tzinfo (~> 2.0)
41
- appraisal (2.5.0)
42
- bundler
43
- rake
44
- thor (>= 0.14.0)
45
- ast (2.4.2)
46
- base64 (0.2.0)
47
- benchmark (0.4.0)
48
- betterlint (1.16.0)
49
- rubocop (~> 1.62.0)
50
- rubocop-graphql (~> 1.5.0)
51
- rubocop-performance (~> 1.21.0)
52
- rubocop-rails (~> 2.24.0)
53
- rubocop-rake (~> 0.6.0)
54
- rubocop-rspec (~> 2.28.0)
55
- bigdecimal (3.1.9)
56
- builder (3.3.0)
57
- concurrent-ruby (1.3.5)
58
- connection_pool (2.5.0)
59
- crass (1.0.6)
60
- date (3.4.1)
61
- diff-lcs (1.5.1)
62
- drb (2.2.1)
63
- erubi (1.13.1)
64
- i18n (1.14.7)
65
- concurrent-ruby (~> 1.0)
66
- io-console (0.8.0)
67
- irb (1.15.0)
68
- pp (>= 0.6.0)
69
- rdoc (>= 4.0.0)
70
- reline (>= 0.4.2)
71
- json (2.9.1)
72
- language_server-protocol (3.17.0.3)
73
- logger (1.6.5)
74
- loofah (2.24.0)
75
- crass (~> 1.0.2)
76
- nokogiri (>= 1.12.0)
77
- minitest (5.25.4)
78
- mutex_m (0.3.0)
79
- nokogiri (1.17.2-arm64-darwin)
80
- racc (~> 1.4)
81
- nokogiri (1.17.2-x86_64-linux)
82
- racc (~> 1.4)
83
- parallel (1.26.3)
84
- parser (3.3.7.0)
85
- ast (~> 2.4.1)
86
- racc
87
- pp (0.6.2)
88
- prettyprint
89
- prettyprint (0.2.0)
90
- psych (5.2.3)
91
- date
92
- stringio
93
- racc (1.8.1)
94
- rack (3.1.8)
95
- rack-session (2.1.0)
96
- base64 (>= 0.1.0)
97
- rack (>= 3.0.0)
98
- rack-test (2.2.0)
99
- rack (>= 1.3)
100
- rackup (2.2.1)
101
- rack (>= 3)
102
- rails-dom-testing (2.2.0)
103
- activesupport (>= 5.0.0)
104
- minitest
105
- nokogiri (>= 1.6)
106
- rails-html-sanitizer (1.6.2)
107
- loofah (~> 2.21)
108
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
109
- railties (7.1.5.1)
110
- actionpack (= 7.1.5.1)
111
- activesupport (= 7.1.5.1)
112
- irb
113
- rackup (>= 1.0.0)
114
- rake (>= 12.2)
115
- thor (~> 1.0, >= 1.2.2)
116
- zeitwerk (~> 2.6)
117
- rainbow (3.1.1)
118
- rake (13.2.1)
119
- rdoc (6.11.0)
120
- psych (>= 4.0.0)
121
- regexp_parser (2.10.0)
122
- reline (0.6.0)
123
- io-console (~> 0.5)
124
- rexml (3.4.0)
125
- rspec (3.13.0)
126
- rspec-core (~> 3.13.0)
127
- rspec-expectations (~> 3.13.0)
128
- rspec-mocks (~> 3.13.0)
129
- rspec-core (3.13.2)
130
- rspec-support (~> 3.13.0)
131
- rspec-expectations (3.13.3)
132
- diff-lcs (>= 1.2.0, < 2.0)
133
- rspec-support (~> 3.13.0)
134
- rspec-mocks (3.13.2)
135
- diff-lcs (>= 1.2.0, < 2.0)
136
- rspec-support (~> 3.13.0)
137
- rspec-support (3.13.2)
138
- rubocop (1.62.1)
139
- json (~> 2.3)
140
- language_server-protocol (>= 3.17.0)
141
- parallel (~> 1.10)
142
- parser (>= 3.3.0.2)
143
- rainbow (>= 2.2.2, < 4.0)
144
- regexp_parser (>= 1.8, < 3.0)
145
- rexml (>= 3.2.5, < 4.0)
146
- rubocop-ast (>= 1.31.1, < 2.0)
147
- ruby-progressbar (~> 1.7)
148
- unicode-display_width (>= 2.4.0, < 3.0)
149
- rubocop-ast (1.37.0)
150
- parser (>= 3.3.1.0)
151
- rubocop-capybara (2.21.0)
152
- rubocop (~> 1.41)
153
- rubocop-factory_bot (2.26.1)
154
- rubocop (~> 1.61)
155
- rubocop-graphql (1.5.4)
156
- rubocop (>= 1.50, < 2)
157
- rubocop-performance (1.21.1)
158
- rubocop (>= 1.48.1, < 2.0)
159
- rubocop-ast (>= 1.31.1, < 2.0)
160
- rubocop-rails (2.24.1)
161
- activesupport (>= 4.2.0)
162
- rack (>= 1.1)
163
- rubocop (>= 1.33.0, < 2.0)
164
- rubocop-ast (>= 1.31.1, < 2.0)
165
- rubocop-rake (0.6.0)
166
- rubocop (~> 1.0)
167
- rubocop-rspec (2.28.0)
168
- rubocop (~> 1.40)
169
- rubocop-capybara (~> 2.17)
170
- rubocop-factory_bot (~> 2.22)
171
- rubocop-rspec_rails (~> 2.28)
172
- rubocop-rspec_rails (2.29.1)
173
- rubocop (~> 1.61)
174
- ruby-progressbar (1.13.0)
175
- securerandom (0.3.2)
176
- stringio (3.1.2)
177
- thor (1.3.2)
178
- tzinfo (2.0.6)
179
- concurrent-ruby (~> 1.0)
180
- unicode-display_width (2.6.0)
181
- zeitwerk (2.6.18)
182
-
183
- PLATFORMS
184
- arm64-darwin-22
185
- arm64-darwin-23
186
- x86_64-linux
187
-
188
- DEPENDENCIES
189
- activemodel (>= 6.1, < 8.1)
190
- appraisal
191
- authorized_persona!
192
- betterlint
193
- bundler
194
- nokogiri (~> 1.17.2)
195
- railties (~> 7.1.0)
196
- rake
197
- rspec (~> 3.0)
198
- securerandom (~> 0.3.2)
199
- zeitwerk (~> 2.6.18)
200
-
201
- BUNDLED WITH
202
- 2.4.21
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "zeitwerk", "~> 2.6.18"
6
- gem "nokogiri", "~> 1.17.2"
7
- gem "securerandom", "~> 0.3.2"
8
- gem "railties", "~> 7.2.0"
9
-
10
- gemspec path: "../"
@@ -1,201 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- authorized_persona (0.12.0)
5
- railties (>= 6.1, < 8.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionpack (7.2.2.1)
11
- actionview (= 7.2.2.1)
12
- activesupport (= 7.2.2.1)
13
- nokogiri (>= 1.8.5)
14
- racc
15
- rack (>= 2.2.4, < 3.2)
16
- rack-session (>= 1.0.1)
17
- rack-test (>= 0.6.3)
18
- rails-dom-testing (~> 2.2)
19
- rails-html-sanitizer (~> 1.6)
20
- useragent (~> 0.16)
21
- actionview (7.2.2.1)
22
- activesupport (= 7.2.2.1)
23
- builder (~> 3.1)
24
- erubi (~> 1.11)
25
- rails-dom-testing (~> 2.2)
26
- rails-html-sanitizer (~> 1.6)
27
- activemodel (7.2.2.1)
28
- activesupport (= 7.2.2.1)
29
- activesupport (7.2.2.1)
30
- base64
31
- benchmark (>= 0.3)
32
- bigdecimal
33
- concurrent-ruby (~> 1.0, >= 1.3.1)
34
- connection_pool (>= 2.2.5)
35
- drb
36
- i18n (>= 1.6, < 2)
37
- logger (>= 1.4.2)
38
- minitest (>= 5.1)
39
- securerandom (>= 0.3)
40
- tzinfo (~> 2.0, >= 2.0.5)
41
- appraisal (2.5.0)
42
- bundler
43
- rake
44
- thor (>= 0.14.0)
45
- ast (2.4.2)
46
- base64 (0.2.0)
47
- benchmark (0.4.0)
48
- betterlint (1.16.0)
49
- rubocop (~> 1.62.0)
50
- rubocop-graphql (~> 1.5.0)
51
- rubocop-performance (~> 1.21.0)
52
- rubocop-rails (~> 2.24.0)
53
- rubocop-rake (~> 0.6.0)
54
- rubocop-rspec (~> 2.28.0)
55
- bigdecimal (3.1.9)
56
- builder (3.3.0)
57
- concurrent-ruby (1.3.5)
58
- connection_pool (2.5.0)
59
- crass (1.0.6)
60
- date (3.4.1)
61
- diff-lcs (1.5.1)
62
- drb (2.2.1)
63
- erubi (1.13.1)
64
- i18n (1.14.7)
65
- concurrent-ruby (~> 1.0)
66
- io-console (0.8.0)
67
- irb (1.15.0)
68
- pp (>= 0.6.0)
69
- rdoc (>= 4.0.0)
70
- reline (>= 0.4.2)
71
- json (2.9.1)
72
- language_server-protocol (3.17.0.3)
73
- logger (1.6.5)
74
- loofah (2.24.0)
75
- crass (~> 1.0.2)
76
- nokogiri (>= 1.12.0)
77
- minitest (5.25.4)
78
- nokogiri (1.17.2-arm64-darwin)
79
- racc (~> 1.4)
80
- nokogiri (1.17.2-x86_64-linux)
81
- racc (~> 1.4)
82
- parallel (1.26.3)
83
- parser (3.3.7.0)
84
- ast (~> 2.4.1)
85
- racc
86
- pp (0.6.2)
87
- prettyprint
88
- prettyprint (0.2.0)
89
- psych (5.2.3)
90
- date
91
- stringio
92
- racc (1.8.1)
93
- rack (3.1.8)
94
- rack-session (2.1.0)
95
- base64 (>= 0.1.0)
96
- rack (>= 3.0.0)
97
- rack-test (2.2.0)
98
- rack (>= 1.3)
99
- rackup (2.2.1)
100
- rack (>= 3)
101
- rails-dom-testing (2.2.0)
102
- activesupport (>= 5.0.0)
103
- minitest
104
- nokogiri (>= 1.6)
105
- rails-html-sanitizer (1.6.2)
106
- loofah (~> 2.21)
107
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
108
- railties (7.2.2.1)
109
- actionpack (= 7.2.2.1)
110
- activesupport (= 7.2.2.1)
111
- irb (~> 1.13)
112
- rackup (>= 1.0.0)
113
- rake (>= 12.2)
114
- thor (~> 1.0, >= 1.2.2)
115
- zeitwerk (~> 2.6)
116
- rainbow (3.1.1)
117
- rake (13.2.1)
118
- rdoc (6.11.0)
119
- psych (>= 4.0.0)
120
- regexp_parser (2.10.0)
121
- reline (0.6.0)
122
- io-console (~> 0.5)
123
- rexml (3.4.0)
124
- rspec (3.13.0)
125
- rspec-core (~> 3.13.0)
126
- rspec-expectations (~> 3.13.0)
127
- rspec-mocks (~> 3.13.0)
128
- rspec-core (3.13.2)
129
- rspec-support (~> 3.13.0)
130
- rspec-expectations (3.13.3)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.13.0)
133
- rspec-mocks (3.13.2)
134
- diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.13.0)
136
- rspec-support (3.13.2)
137
- rubocop (1.62.1)
138
- json (~> 2.3)
139
- language_server-protocol (>= 3.17.0)
140
- parallel (~> 1.10)
141
- parser (>= 3.3.0.2)
142
- rainbow (>= 2.2.2, < 4.0)
143
- regexp_parser (>= 1.8, < 3.0)
144
- rexml (>= 3.2.5, < 4.0)
145
- rubocop-ast (>= 1.31.1, < 2.0)
146
- ruby-progressbar (~> 1.7)
147
- unicode-display_width (>= 2.4.0, < 3.0)
148
- rubocop-ast (1.37.0)
149
- parser (>= 3.3.1.0)
150
- rubocop-capybara (2.21.0)
151
- rubocop (~> 1.41)
152
- rubocop-factory_bot (2.26.1)
153
- rubocop (~> 1.61)
154
- rubocop-graphql (1.5.4)
155
- rubocop (>= 1.50, < 2)
156
- rubocop-performance (1.21.1)
157
- rubocop (>= 1.48.1, < 2.0)
158
- rubocop-ast (>= 1.31.1, < 2.0)
159
- rubocop-rails (2.24.1)
160
- activesupport (>= 4.2.0)
161
- rack (>= 1.1)
162
- rubocop (>= 1.33.0, < 2.0)
163
- rubocop-ast (>= 1.31.1, < 2.0)
164
- rubocop-rake (0.6.0)
165
- rubocop (~> 1.0)
166
- rubocop-rspec (2.28.0)
167
- rubocop (~> 1.40)
168
- rubocop-capybara (~> 2.17)
169
- rubocop-factory_bot (~> 2.22)
170
- rubocop-rspec_rails (~> 2.28)
171
- rubocop-rspec_rails (2.29.1)
172
- rubocop (~> 1.61)
173
- ruby-progressbar (1.13.0)
174
- securerandom (0.3.2)
175
- stringio (3.1.2)
176
- thor (1.3.2)
177
- tzinfo (2.0.6)
178
- concurrent-ruby (~> 1.0)
179
- unicode-display_width (2.6.0)
180
- useragent (0.16.11)
181
- zeitwerk (2.6.18)
182
-
183
- PLATFORMS
184
- arm64-darwin-23
185
- x86_64-linux
186
-
187
- DEPENDENCIES
188
- activemodel (>= 6.1, < 8.1)
189
- appraisal
190
- authorized_persona!
191
- betterlint
192
- bundler
193
- nokogiri (~> 1.17.2)
194
- railties (~> 7.2.0)
195
- rake
196
- rspec (~> 3.0)
197
- securerandom (~> 0.3.2)
198
- zeitwerk (~> 2.6.18)
199
-
200
- BUNDLED WITH
201
- 2.4.21