Skip to content

Commit 3f44e24

Browse files
dependabot[bot]github-actions[bot]dduugg
authored
Bump the bundler group with 3 updates (#73)
* Bump the bundler group with 3 updates Bumps the bundler group with 3 updates: [rubocop](https://github.com/rubocop/rubocop), [rubocop-gusto](https://github.com/gusto/rubocop-gusto) and [sorbet](https://github.com/sorbet/sorbet). Updates `rubocop` from 1.86.2 to 1.87.0 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.86.2...v1.87.0) Updates `rubocop-gusto` from 10.9.3 to 10.10.0 - [Release notes](https://github.com/gusto/rubocop-gusto/releases) - [Changelog](https://github.com/Gusto/rubocop-gusto/blob/main/CHANGELOG.md) - [Commits](Gusto/rubocop-gusto@v10.9.3...v10.10.0) Updates `sorbet` from 0.6.13261 to 0.6.13270 - [Release notes](https://github.com/sorbet/sorbet/releases) - [Commits](https://github.com/sorbet/sorbet/commits) --- updated-dependencies: - dependency-name: rubocop dependency-version: 1.87.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: bundler - dependency-name: rubocop-gusto dependency-version: 10.10.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: bundler - dependency-name: sorbet dependency-version: 0.6.13270 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: bundler ... Signed-off-by: dependabot[bot] <support@github.com> * Regenerate gem RBIs [dependabot skip] * Apply rubocop hash shorthand autocorrections for rubocop-gusto 10.10.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Douglas Eichelberger <doug.eichelberger@gusto.com>
1 parent 03475c1 commit 3f44e24

10 files changed

Lines changed: 695 additions & 479 deletions

File tree

Gemfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ GEM
156156
io-console (~> 0.5)
157157
require-hooks (0.4.0)
158158
rexml (3.4.4)
159-
rubocop (1.86.2)
159+
rubocop (1.87.0)
160160
json (~> 2.3)
161161
language_server-protocol (~> 3.17.0.2)
162162
lint_roller (~> 1.1.0)
@@ -170,7 +170,7 @@ GEM
170170
rubocop-ast (1.49.1)
171171
parser (>= 3.3.7.2)
172172
prism (~> 1.7)
173-
rubocop-gusto (10.9.3)
173+
rubocop-gusto (10.10.0)
174174
lint_roller
175175
rubocop (>= 1.76)
176176
rubocop-performance
@@ -198,14 +198,14 @@ GEM
198198
rubydex (0.2.5-x86_64-linux)
199199
securerandom (0.4.1)
200200
smart_properties (1.17.0)
201-
sorbet (0.6.13261)
202-
sorbet-static (= 0.6.13261)
203-
sorbet-runtime (0.6.13261)
204-
sorbet-static (0.6.13261-universal-darwin)
205-
sorbet-static (0.6.13261-x86_64-linux)
206-
sorbet-static-and-runtime (0.6.13261)
207-
sorbet (= 0.6.13261)
208-
sorbet-runtime (= 0.6.13261)
201+
sorbet (0.6.13270)
202+
sorbet-static (= 0.6.13270)
203+
sorbet-runtime (0.6.13270)
204+
sorbet-static (0.6.13270-universal-darwin)
205+
sorbet-static (0.6.13270-x86_64-linux)
206+
sorbet-static-and-runtime (0.6.13270)
207+
sorbet (= 0.6.13270)
208+
sorbet-runtime (= 0.6.13270)
209209
spoom (1.7.16)
210210
erubi (>= 1.10.0)
211211
prism (>= 0.28.0)

lib/packwerk/layer/checker.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def violation_type
4141
def invalid_reference?(reference)
4242
constant_package = Package.from(reference.constant.package, layers)
4343
referencing_package = Package.from(reference.package, layers)
44-
!referencing_package.can_depend_on?(constant_package, layers: layers)
44+
!referencing_package.can_depend_on?(constant_package, layers:)
4545
end
4646

4747
# @override

lib/packwerk/layer/package.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ def from(package, layers)
5353
end
5454

5555
Package.new(
56-
layer: layer,
56+
layer:,
5757
enforcement_setting: config[Config.new.enforce_key],
58-
config: config
58+
config:
5959
)
6060
end
6161
end

lib/packwerk/privacy/validator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def assert_constants_can_be_loaded(constants, config_file_path)
147147
'prefixed with the top-level namespace operator `::`.'
148148
Result.new(
149149
ok: false,
150-
error_value: error_value
150+
error_value:
151151
)
152152
end
153153
end

0 commit comments

Comments
 (0)