-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update rubocop-rspec and rubocop-rspec_rails (#45)
## Description This PR combines the updates to [rubocop-rspec](https://rubygems.org/gems/rubocop-rspec) and [rubocop-rspec_rails](https://rubygems.org/gems/rubocop-rspec_rails) as they wouldn't pass in the individual Dependabot PRs linked below. Also, the RuboCop constraint is updated to `~> 1.61` to align with these gems and [rubocop-factory_bot](https://rubygems.org/gems/rubocop-factory_bot). - closes #42 - closes #43 As a result of these changes, the gem version is bumped to v2.0.0. ## Commits - Bump minimum RuboCop version to 1.61 - Bump rubocop-rspec and rubocop-rspec_rails
- Loading branch information
Showing
2 changed files
with
22 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Gem::Specification.new do |spec| | |
spec.required_ruby_version = ">= 3.0" | ||
|
||
spec.name = "rubocop-cargosense" | ||
spec.version = "1.1.0" | ||
spec.version = "2.0.0" | ||
spec.authors = ["CargoSense"] | ||
spec.email = ["[email protected]"] | ||
|
||
|
@@ -25,12 +25,12 @@ Gem::Specification.new do |spec| | |
"source_code_uri" => "#{spec.homepage}/tree/v#{spec.version}" | ||
} | ||
|
||
spec.add_runtime_dependency "rubocop", "~> 1.59" | ||
spec.add_runtime_dependency "rubocop", "~> 1.61" | ||
spec.add_runtime_dependency "rubocop-capybara", "~> 2.20" | ||
spec.add_runtime_dependency "rubocop-factory_bot", "~> 2.25" | ||
spec.add_runtime_dependency "rubocop-factory_bot", "~> 2.26.1" | ||
spec.add_runtime_dependency "rubocop-performance", "~> 1.20" | ||
spec.add_runtime_dependency "rubocop-rails", "~> 2.23" | ||
spec.add_runtime_dependency "rubocop-rake", "~> 0.6" | ||
spec.add_runtime_dependency "rubocop-rspec", "~> 2.28" | ||
spec.add_runtime_dependency "rubocop-rspec_rails", "~> 2.28.1" | ||
spec.add_runtime_dependency "rubocop-rspec", "~> 3.0.1" | ||
spec.add_runtime_dependency "rubocop-rspec_rails", "~> 2.30" | ||
end |