panolint 0.1.2 → 0.1.5

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: d91cca0d11b65106166fdc20c47fd0427f3f62fa9240ad8bee27cb61e7211f1f
4
- data.tar.gz: 7edf9f2cf80c4fac4e236f4e7dc72692ef46f4ce9608b6f72d0c482d90e78d40
3
+ metadata.gz: 250fa148ba417c59664698d67197380ae9c9098aa7e1c21b5aa6d47c80777975
4
+ data.tar.gz: fef1950305d7887559402d1c8425a75115e30ceaf73d7773f6ce618053bd0848
5
5
  SHA512:
6
- metadata.gz: 548905cd943d90008fc922a138d482f5314f7389f0224e5903ae705571c149dc148d52ecc92011e236d745b258fa06c3a3d86919dffedc1699ffbafc0ade2a87
7
- data.tar.gz: 246f67a54a7fd838b6c3e48ddc760664a5286cc2471154cc6c3faff323a40b6971b2547f133f0c9c8a193678b17a6fd158a9724c1da3261507fd676cc2944a5e
6
+ metadata.gz: 49ccc626d68dbdacf71f222a68bd82e0f0131d70de8b20428e14069d6d074c75066930ce4362de9dc2e2235e171898625aa69be5a9b8dec01a18429a31131805
7
+ data.tar.gz: 7cc1405390d5e39574fd6a696724f9165c1c6045c542b53a555c26a33807313335c629c112c45869daa16a8f22882bd15a25f521f07d4fcfb59dd7bf709bf865
@@ -6,6 +6,41 @@
6
6
  # Reference: https://dependabot.com/docs/config-file/
7
7
  version: 1
8
8
  update_configs:
9
+ # This configures dependency updates for one package manager. In some
10
+ # projects, such as warehouse, where we have Ruby and Python, there can be
11
+ # separate package_manager entries.
9
12
  - package_manager: "ruby:bundler"
10
13
  directory: "/"
11
14
  update_schedule: "weekly"
15
+
16
+ default_labels:
17
+ - "dependencies"
18
+ - "Needs QA"
19
+
20
+ # Dependabot will use a repository's default branch. This will override
21
+ # that.
22
+ # target_branch: "master"
23
+
24
+ allowed_updates:
25
+ - match:
26
+ dependency_type: "direct"
27
+
28
+ automerged_updates:
29
+ # This allows all dependencies that are used for development, e.g., rspec,
30
+ # rspec-mock, vcr, etc, to be automatically updated. This is generally
31
+ # okay because the dependencies are not used in production.
32
+ - match:
33
+ dependency_type: "all"
34
+ update_type: "all"
35
+
36
+ # # This is an example entry to enable automerging of a specific dependency
37
+ # # when the update is only for minor or patch semantic versions.
38
+ # #
39
+ # # The dependency_name can also be a wildcard.
40
+ # #
41
+ # # This is left commented, but whitelisting a dependency for automatic
42
+ # # merging is as simple as creating a new entry that looks like the below.
43
+ # - match:
44
+ # dependency_type: "all"
45
+ # dependency_name: "aws-sdk-s3"
46
+ # update_type: "semver:minor"
@@ -0,0 +1,26 @@
1
+ # This workflow auto-approves pull-requests when the github actor is a
2
+ # dependabot user and it is opening a new pull request.
3
+ #
4
+ # The problem that this workflow solves is that we have branch protection on
5
+ # our repositories that prevent PRs from merging unless there is an
6
+ # approval present. The problem is that this will block PRs that dependabot
7
+ # may want to merge automatically. Auto-approving dependabot PRs will allow
8
+ # the automatic merge to complete. We control what gets automerged through
9
+ # the dependabot configuration.
10
+ #
11
+ # This is a known issue: https://github.com/dependabot/feedback/issues/852
12
+ name: Auto-approve dependabot pull requests
13
+ on:
14
+ pull_request:
15
+ types: [opened]
16
+
17
+ jobs:
18
+ dependabot-triage:
19
+ runs-on: ubuntu-latest
20
+ if: (github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]')
21
+
22
+ steps:
23
+ - name: Auto-approve for dependabot
24
+ uses: hmarr/auto-approve-action@v2.0.0
25
+ with:
26
+ github-token: "${{ secrets.GITHUB_TOKEN }}"
@@ -0,0 +1,35 @@
1
+ # This workflow removes a "Needs QA" label from a PR when the actor is the
2
+ # dependabot user merging a PR.
3
+ #
4
+ # We need this mechanism to allow for automerging whitelisted dependencies while
5
+ # also allowing for blocking a merge to master for deployment (in the way that
6
+ # our other PRs work). When the automerge script runs in henchman, it looks
7
+ # for `Needs QA` on github pull requests, and if the label is present,
8
+ # blocks the commit from merging.
9
+ name: Remove 'Needs QA' label for auto-merged PRs.
10
+ on:
11
+ pull_request:
12
+ types: [closed]
13
+
14
+ jobs:
15
+ remove-label:
16
+ runs-on: ubuntu-latest
17
+ if: >
18
+ (github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]')
19
+ && github.event.pull_request.merged
20
+
21
+ steps:
22
+ # Our triage workflow adds 'Needs QA' to the PR in order to block it from
23
+ # merging to production. This removes that label when dependabot is doing
24
+ # the merging.
25
+ - name: Remove QA Label
26
+ uses: actions/github-script@0.4.0
27
+ with:
28
+ github-token: ${{ secrets.GITHUB_TOKEN }}
29
+ script: |
30
+ github.issues.removeLabel({
31
+ issue_number: context.issue.number,
32
+ owner: context.repo.owner,
33
+ repo: context.repo.repo,
34
+ name: 'Needs QA'
35
+ })
@@ -19,5 +19,5 @@ jobs:
19
19
  ${{ runner.os }}-gems-
20
20
  - run: bundle config path vendor/bundle
21
21
  - run: bundle install --jobs 4 --retry 3
22
- - run: bundle exec rubocop --config rubocop.yml
22
+ - run: bundle exec rubocop --config panolint-rubocop.yml
23
23
  - run: bundle exec rspec
data/CHANGELOG.md CHANGED
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.3] - 2021-04-22
10
+
9
11
  ## [0.1.2] - 2020-04-10
10
12
 
11
13
  ### Changed
@@ -26,7 +28,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
26
28
 
27
29
  - Initial release. 🎉
28
30
 
29
- [unreleased]: https://github.com/panorama-ed/panolint/compare/v0.1.2...HEAD
31
+ [unreleased]: https://github.com/panorama-ed/panolint/compare/v0.1.3...HEAD
32
+ [0.1.3]: https://github.com/panorama-ed/panolint/compare/v0.1.2...v0.1.3
30
33
  [0.1.2]: https://github.com/panorama-ed/panolint/compare/v0.1.1...v0.1.2
31
34
  [0.1.1]: https://github.com/panorama-ed/panolint/compare/v0.1.0...v0.1.1
32
35
  [0.1.0]: https://github.com/panorama-ed/panolint/compare/45c38b...v0.1.0
data/Gemfile.lock CHANGED
@@ -1,72 +1,78 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- panolint (0.1.2)
5
- brakeman (~> 4.8)
6
- rubocop (~> 0.81)
4
+ panolint (0.1.5)
5
+ brakeman (>= 4.8, < 6.0)
6
+ rubocop (>= 0.83, < 2.0)
7
7
  rubocop-performance (~> 1.5)
8
8
  rubocop-rails (~> 2.5)
9
- rubocop-rspec (~> 1.38)
9
+ rubocop-rake (~> 0.5)
10
+ rubocop-rspec (~> 2.0)
10
11
 
11
12
  GEM
12
13
  remote: https://rubygems.org/
13
14
  specs:
14
- activesupport (6.0.2.2)
15
+ activesupport (7.0.3.1)
15
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
16
- i18n (>= 0.7, < 2)
17
- minitest (~> 5.1)
18
- tzinfo (~> 1.1)
19
- zeitwerk (~> 2.2)
20
- ast (2.4.0)
21
- brakeman (4.8.1)
22
- concurrent-ruby (1.1.6)
23
- diff-lcs (1.3)
24
- i18n (1.8.2)
17
+ i18n (>= 1.6, < 2)
18
+ minitest (>= 5.1)
19
+ tzinfo (~> 2.0)
20
+ ast (2.4.2)
21
+ brakeman (5.2.3)
22
+ concurrent-ruby (1.1.10)
23
+ diff-lcs (1.5.0)
24
+ i18n (1.12.0)
25
25
  concurrent-ruby (~> 1.0)
26
- jaro_winkler (1.5.4)
27
- minitest (5.14.0)
28
- parallel (1.19.1)
29
- parser (2.7.1.0)
30
- ast (~> 2.4.0)
31
- rack (2.2.2)
32
- rainbow (3.0.0)
33
- rake (13.0.1)
34
- rexml (3.2.4)
35
- rspec (3.9.0)
36
- rspec-core (~> 3.9.0)
37
- rspec-expectations (~> 3.9.0)
38
- rspec-mocks (~> 3.9.0)
39
- rspec-core (3.9.1)
40
- rspec-support (~> 3.9.1)
41
- rspec-expectations (3.9.1)
26
+ json (2.6.2)
27
+ minitest (5.16.2)
28
+ parallel (1.22.1)
29
+ parser (3.1.2.0)
30
+ ast (~> 2.4.1)
31
+ rack (2.2.4)
32
+ rainbow (3.1.1)
33
+ rake (13.0.6)
34
+ regexp_parser (2.5.0)
35
+ rexml (3.2.5)
36
+ rspec (3.11.0)
37
+ rspec-core (~> 3.11.0)
38
+ rspec-expectations (~> 3.11.0)
39
+ rspec-mocks (~> 3.11.0)
40
+ rspec-core (3.11.0)
41
+ rspec-support (~> 3.11.0)
42
+ rspec-expectations (3.11.0)
42
43
  diff-lcs (>= 1.2.0, < 2.0)
43
- rspec-support (~> 3.9.0)
44
- rspec-mocks (3.9.1)
44
+ rspec-support (~> 3.11.0)
45
+ rspec-mocks (3.11.1)
45
46
  diff-lcs (>= 1.2.0, < 2.0)
46
- rspec-support (~> 3.9.0)
47
- rspec-support (3.9.2)
48
- rubocop (0.81.0)
49
- jaro_winkler (~> 1.5.1)
47
+ rspec-support (~> 3.11.0)
48
+ rspec-support (3.11.0)
49
+ rubocop (1.31.2)
50
+ json (~> 2.3)
50
51
  parallel (~> 1.10)
51
- parser (>= 2.7.0.1)
52
+ parser (>= 3.1.0.0)
52
53
  rainbow (>= 2.2.2, < 4.0)
53
- rexml
54
+ regexp_parser (>= 1.8, < 3.0)
55
+ rexml (>= 3.2.5, < 4.0)
56
+ rubocop-ast (>= 1.18.0, < 2.0)
54
57
  ruby-progressbar (~> 1.7)
55
- unicode-display_width (>= 1.4.0, < 2.0)
56
- rubocop-performance (1.5.2)
57
- rubocop (>= 0.71.0)
58
- rubocop-rails (2.5.2)
59
- activesupport
58
+ unicode-display_width (>= 1.4.0, < 3.0)
59
+ rubocop-ast (1.19.1)
60
+ parser (>= 3.1.1.0)
61
+ rubocop-performance (1.14.2)
62
+ rubocop (>= 1.7.0, < 2.0)
63
+ rubocop-ast (>= 0.4.0)
64
+ rubocop-rails (2.15.2)
65
+ activesupport (>= 4.2.0)
60
66
  rack (>= 1.1)
61
- rubocop (>= 0.72.0)
62
- rubocop-rspec (1.38.1)
63
- rubocop (>= 0.68.1)
64
- ruby-progressbar (1.10.1)
65
- thread_safe (0.3.6)
66
- tzinfo (1.2.7)
67
- thread_safe (~> 0.1)
68
- unicode-display_width (1.7.0)
69
- zeitwerk (2.3.0)
67
+ rubocop (>= 1.7.0, < 2.0)
68
+ rubocop-rake (0.6.0)
69
+ rubocop (~> 1.0)
70
+ rubocop-rspec (2.12.1)
71
+ rubocop (~> 1.31)
72
+ ruby-progressbar (1.11.0)
73
+ tzinfo (2.0.4)
74
+ concurrent-ruby (~> 1.0)
75
+ unicode-display_width (2.2.0)
70
76
 
71
77
  PLATFORMS
72
78
  ruby
@@ -78,4 +84,4 @@ DEPENDENCIES
78
84
  rspec (~> 3.0)
79
85
 
80
86
  BUNDLED WITH
81
- 2.1.4
87
+ 2.3.12
data/README.md CHANGED
@@ -37,7 +37,7 @@ You can use `panolint`'s rubocop configuration in your project with the followin
37
37
 
38
38
  ```
39
39
  inherit_gem:
40
- panolint: rubocop.yml
40
+ panolint: panolint-rubocop.yml
41
41
  ```
42
42
 
43
43
  Note that it for this gem in particular in needs to not be a `.rubocop.yml` file because of rubocop's [path relativity](https://github.com/rubocop-hq/rubocop/blob/master/manual/configuration.md#path-relativity).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Panolint
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.5"
5
5
  end
@@ -3,7 +3,7 @@
3
3
  # You can use this in your project's .rubocop.yml with the following at the top:
4
4
  #
5
5
  # inherit_gem:
6
- # panolint: .rubocop.yml
6
+ # panolint: panolint-rubocop.yml
7
7
  #
8
8
  # This allows you to selectively override settings in projects, for example, if
9
9
  # you're working on a Sinatra project, disabling the Rails cops is probably
@@ -18,10 +18,18 @@ AllCops:
18
18
  - !ruby/regexp /vendor\/(?!panoramaed).*$/
19
19
  - "db/schema.rb"
20
20
  - "db/migrate/**/*"
21
+ - "node_modules/**/*"
22
+ NewCops: enable
23
+
24
+ Gemspec/RequiredRubyVersion:
25
+ Enabled: false
21
26
 
22
27
  Layout/DotPosition:
23
28
  EnforcedStyle: trailing
24
29
 
30
+ Layout/LineContinuationSpacing:
31
+ EnforcedStyle: no_space
32
+
25
33
  Layout/LineLength:
26
34
  Max: 80
27
35
  IgnoreCopDirectives: true
@@ -33,6 +41,12 @@ Lint/AmbiguousBlockAssociation:
33
41
  Lint/Debugger:
34
42
  Severity: error
35
43
 
44
+ Lint/DuplicateElsifCondition:
45
+ Enabled: true
46
+
47
+ Lint/MixedRegexpCaptureTypes:
48
+ Enabled: true
49
+
36
50
  Lint/SuppressedException:
37
51
  Enabled: false
38
52
 
@@ -81,6 +95,9 @@ RSpec/LetSetup:
81
95
  RSpec/MessageSpies:
82
96
  EnforcedStyle: receive
83
97
 
98
+ RSpec/MultipleMemoizedHelpers:
99
+ Enabled: false
100
+
84
101
  RSpec/NamedSubject:
85
102
  Enabled: false
86
103
 
@@ -91,6 +108,12 @@ Style/Alias:
91
108
  Enabled: true
92
109
  EnforcedStyle: prefer_alias_method
93
110
 
111
+ Style/ArrayCoercion:
112
+ Enabled: true
113
+
114
+ Style/CaseLikeIf:
115
+ Enabled: true
116
+
94
117
  Style/Documentation:
95
118
  Enabled: false
96
119
 
@@ -106,6 +129,9 @@ Style/FormatString:
106
129
  Style/GuardClause:
107
130
  Enabled: false
108
131
 
132
+ Style/HashAsLastArrayItem:
133
+ Enabled: true
134
+
109
135
  Style/MixinUsage:
110
136
  Exclude:
111
137
  - bin/**/*
@@ -113,6 +139,15 @@ Style/MixinUsage:
113
139
  Style/MultilineBlockChain:
114
140
  Enabled: false
115
141
 
142
+ Style/RedundantFileExtensionInRequire:
143
+ Enabled: true
144
+
145
+ Style/RedundantRegexpCharacterClass:
146
+ Enabled: true
147
+
148
+ Style/RedundantRegexpEscape:
149
+ Enabled: true
150
+
116
151
  Style/RedundantReturn:
117
152
  AllowMultipleReturnValues: true
118
153
 
@@ -152,12 +187,24 @@ RSpec/MultipleExpectations:
152
187
  # following rules all mirror the default rubocop configuration, but they're here
153
188
  # just to silence the warnings. They can be removed when 1.0 comes out.
154
189
 
190
+ Lint/DeprecatedOpenSSLConstant:
191
+ Enabled: true
192
+
193
+ Layout/EmptyLinesAroundAttributeAccessor:
194
+ Enabled: true
195
+
196
+ Layout/SpaceAroundMethodCallOperator:
197
+ Enabled: true
198
+
155
199
  Lint/RaiseException:
156
200
  Enabled: true
157
201
 
158
202
  Lint/StructNewOverride:
159
203
  Enabled: true
160
204
 
205
+ Style/ExponentialNotation:
206
+ Enabled: true
207
+
161
208
  Style/HashEachMethods:
162
209
  Enabled: true
163
210
 
@@ -166,3 +213,6 @@ Style/HashTransformKeys:
166
213
 
167
214
  Style/HashTransformValues:
168
215
  Enabled: true
216
+
217
+ Style/SlicingWithRange:
218
+ Enabled: true
data/panolint.gemspec CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = "Rules for linting code at Panorama Education"
14
14
  spec.homepage = "https://github.com/panorama-ed/panolint"
15
15
  spec.license = "MIT"
16
+ spec.metadata = { "rubygems_mfa_required" => "true" }
16
17
 
17
18
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
18
19
  `git ls-files -z`.split("\x0").reject do |f|
@@ -24,11 +25,12 @@ Gem::Specification.new do |spec|
24
25
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
26
  spec.require_paths = ["lib"]
26
27
 
27
- spec.add_dependency "brakeman", "~> 4.8"
28
- spec.add_dependency "rubocop", "~> 0.81"
28
+ spec.add_dependency "brakeman", ">= 4.8", "< 6.0"
29
+ spec.add_dependency "rubocop", ">= 0.83", "< 2.0"
29
30
  spec.add_dependency "rubocop-performance", "~> 1.5"
30
31
  spec.add_dependency "rubocop-rails", "~> 2.5"
31
- spec.add_dependency "rubocop-rspec", "~> 1.38"
32
+ spec.add_dependency "rubocop-rake", "~> 0.5"
33
+ spec.add_dependency "rubocop-rspec", "~> 2.0"
32
34
 
33
35
  spec.add_development_dependency "bundler", "~> 2.1"
34
36
  spec.add_development_dependency "rake", "~> 13.0"
metadata CHANGED
@@ -1,43 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: panolint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Deisz
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-10 00:00:00.000000000 Z
11
+ date: 2022-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: brakeman
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '4.8'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '6.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '4.8'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '6.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: rubocop
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
- - - "~>"
37
+ - - ">="
32
38
  - !ruby/object:Gem::Version
33
- version: '0.81'
39
+ version: '0.83'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '2.0'
34
43
  type: :runtime
35
44
  prerelease: false
36
45
  version_requirements: !ruby/object:Gem::Requirement
37
46
  requirements:
38
- - - "~>"
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0.83'
50
+ - - "<"
39
51
  - !ruby/object:Gem::Version
40
- version: '0.81'
52
+ version: '2.0'
41
53
  - !ruby/object:Gem::Dependency
42
54
  name: rubocop-performance
43
55
  requirement: !ruby/object:Gem::Requirement
@@ -66,20 +78,34 @@ dependencies:
66
78
  - - "~>"
67
79
  - !ruby/object:Gem::Version
68
80
  version: '2.5'
81
+ - !ruby/object:Gem::Dependency
82
+ name: rubocop-rake
83
+ requirement: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '0.5'
88
+ type: :runtime
89
+ prerelease: false
90
+ version_requirements: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - "~>"
93
+ - !ruby/object:Gem::Version
94
+ version: '0.5'
69
95
  - !ruby/object:Gem::Dependency
70
96
  name: rubocop-rspec
71
97
  requirement: !ruby/object:Gem::Requirement
72
98
  requirements:
73
99
  - - "~>"
74
100
  - !ruby/object:Gem::Version
75
- version: '1.38'
101
+ version: '2.0'
76
102
  type: :runtime
77
103
  prerelease: false
78
104
  version_requirements: !ruby/object:Gem::Requirement
79
105
  requirements:
80
106
  - - "~>"
81
107
  - !ruby/object:Gem::Version
82
- version: '1.38'
108
+ version: '2.0'
83
109
  - !ruby/object:Gem::Dependency
84
110
  name: bundler
85
111
  requirement: !ruby/object:Gem::Requirement
@@ -122,7 +148,7 @@ dependencies:
122
148
  - - "~>"
123
149
  - !ruby/object:Gem::Version
124
150
  version: '3.0'
125
- description:
151
+ description:
126
152
  email:
127
153
  - kevin.deisz@gmail.com
128
154
  executables: []
@@ -130,7 +156,9 @@ extensions: []
130
156
  extra_rdoc_files: []
131
157
  files:
132
158
  - ".dependabot/config.yml"
133
- - ".github/workflows/main.yml"
159
+ - ".github/workflows/auto-approve-dependabot.yml"
160
+ - ".github/workflows/remove-needs-qa.yml"
161
+ - ".github/workflows/tests.yml"
134
162
  - ".gitignore"
135
163
  - ".rspec"
136
164
  - CHANGELOG.md
@@ -145,13 +173,14 @@ files:
145
173
  - brakeman.yml
146
174
  - lib/panolint.rb
147
175
  - lib/panolint/version.rb
176
+ - panolint-rubocop.yml
148
177
  - panolint.gemspec
149
- - rubocop.yml
150
178
  homepage: https://github.com/panorama-ed/panolint
151
179
  licenses:
152
180
  - MIT
153
- metadata: {}
154
- post_install_message:
181
+ metadata:
182
+ rubygems_mfa_required: 'true'
183
+ post_install_message:
155
184
  rdoc_options: []
156
185
  require_paths:
157
186
  - lib
@@ -166,8 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
195
  - !ruby/object:Gem::Version
167
196
  version: '0'
168
197
  requirements: []
169
- rubygems_version: 3.1.2
170
- signing_key:
198
+ rubygems_version: 3.1.6
199
+ signing_key:
171
200
  specification_version: 4
172
201
  summary: Rules for linting code at Panorama Education
173
202
  test_files: []