authorized_persona 0.12.0 → 0.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13df22b61240fd450d930c9b1da40b0454c9d4dcdf93acc22fd20499e9733e20
4
- data.tar.gz: 724c056638bd42335f6f4f26c28c9e9ca2ab544fa8d23fe926bb4caf2b292460
3
+ metadata.gz: b2b87fe53b1aeb04823fbbc2ade82a57696887979da81bc9fcff7f3ee6c31289
4
+ data.tar.gz: dacdb3b15a16704ec53c8fb48e1f1271899efc42207dab3bd76d25474af3bdd7
5
5
  SHA512:
6
- metadata.gz: 5a5eb5f691154244989ebd1bc76b080af30b7d06d39709bc10199bd97f6ce99f0ca760fc025e0325e5cd87293c9651856a6626ba49a8ae44923d753b30a6cf3b
7
- data.tar.gz: 0a09e9949cbddcbbce9e2694f3b5261da09d0a96295321b8df60cfb0f2af469dd8262c7ef2e10c22dd63fbfdee0c4e1fa6aa68dc72a9d4a3a90754465bec7f3a
6
+ metadata.gz: 3001a79ccb4fec1438d547bef4f3bf65d18b25b20dbd83163b726c460e79ece50d5984f7a716621f09394ca9a87dbd0094928fc5f4d6edddb9ba4cc6c6712d30
7
+ data.tar.gz: ae091d5c9999749559bd4e9e2961384300446b653851ea3a86cfe1671747b895942e2f7928be50a6e31007317914e6995fa56b2879669a90534c00b6a2b56cb7
@@ -8,23 +8,13 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: ['3.0', '3.2', '3.3']
11
+ ruby: ['3.2', '3.3']
12
12
  gemfile:
13
- - gemfiles/rails_6_1.gemfile
14
- - gemfiles/rails_7_0.gemfile
15
- - gemfiles/rails_7_1.gemfile
16
13
  - gemfiles/rails_7_2.gemfile
17
14
  - 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
15
  steps:
26
- - uses: actions/checkout@v2
27
- - uses: ruby/setup-ruby@v1
16
+ - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
17
+ - uses: ruby/setup-ruby@a4effe49ee8ee5b8b5091268c473a4628afb5651 # v1
28
18
  env:
29
19
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
30
20
  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.2
13
+ TargetRailsVersion: 7.2
13
14
  Exclude:
14
15
  - gemfiles/*.gemfile
data/Appraisals CHANGED
@@ -1,19 +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
3
  appraise 'rails-7-2' do
18
4
  gem 'railties', '~> 7.2.0'
19
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.13.0)
5
+ railties (>= 7.2, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -190,7 +190,7 @@ PLATFORMS
190
190
  x86_64-linux
191
191
 
192
192
  DEPENDENCIES
193
- activemodel (>= 6.1, < 8.1)
193
+ activemodel (>= 7.2, < 8.1)
194
194
  appraisal
195
195
  authorized_persona!
196
196
  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.2"
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 = [">= 7.2", "< 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.13.0)
5
+ railties (>= 7.2, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -185,7 +185,7 @@ PLATFORMS
185
185
  x86_64-linux
186
186
 
187
187
  DEPENDENCIES
188
- activemodel (>= 6.1, < 8.1)
188
+ activemodel (>= 7.2, < 8.1)
189
189
  appraisal
190
190
  authorized_persona!
191
191
  betterlint
@@ -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.13.0)
5
+ railties (>= 7.2, < 8.1)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -186,7 +186,7 @@ PLATFORMS
186
186
  x86_64-linux
187
187
 
188
188
  DEPENDENCIES
189
- activemodel (>= 6.1, < 8.1)
189
+ activemodel (>= 7.2, < 8.1)
190
190
  appraisal
191
191
  authorized_persona!
192
192
  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.13.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.13.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: '7.2'
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: '7.2'
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: '7.2'
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: '7.2'
50
49
  - - "<"
51
50
  - !ruby/object:Gem::Version
52
51
  version: '8.1'
@@ -144,12 +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
146
  - gemfiles/rails_7_2.gemfile
154
147
  - gemfiles/rails_7_2.gemfile.lock
155
148
  - gemfiles/rails_8_0.gemfile
@@ -165,7 +158,6 @@ licenses:
165
158
  - MIT
166
159
  metadata:
167
160
  rubygems_mfa_required: 'true'
168
- post_install_message:
169
161
  rdoc_options: []
170
162
  require_paths:
171
163
  - lib
@@ -173,15 +165,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
173
165
  requirements:
174
166
  - - ">="
175
167
  - !ruby/object:Gem::Version
176
- version: '3.0'
168
+ version: '3.2'
177
169
  required_rubygems_version: !ruby/object:Gem::Requirement
178
170
  requirements:
179
171
  - - ">="
180
172
  - !ruby/object:Gem::Version
181
173
  version: '0'
182
174
  requirements: []
183
- rubygems_version: 3.5.23
184
- signing_key:
175
+ rubygems_version: 3.6.8
185
176
  specification_version: 4
186
177
  summary: the simplest authorization library you will ever love
187
178
  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