Skip to content

Commit

Permalink
Update all Bundler dependencies (2024-10-23) (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
depfu[bot] authored Oct 23, 2024
1 parent 89defe2 commit 991af4b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.13.2 - 2024-10-23
### Changed
- Updated dependencies

## 0.13.1 - 2024-07-15
### Changed
- Removed Slack references
Expand Down
32 changes: 15 additions & 17 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PATH
remote: .
specs:
rubocop-vendor (0.13.1)
rubocop-vendor (0.13.2)
rubocop

GEM
remote: https://rubygems.org/
specs:
activesupport (7.2.1)
activesupport (7.2.1.1)
base64
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
Expand Down Expand Up @@ -48,52 +48,50 @@ GEM
ast (~> 2.4.1)
racc
polyglot (0.3.5)
process_executer (1.1.0)
process_executer (1.2.0)
public_suffix (6.0.1)
racc (1.8.1)
rack (3.1.7)
rack (3.1.8)
rainbow (3.1.1)
rake (13.2.1)
rchardet (1.8.0)
regexp_parser (2.9.2)
rexml (3.3.7)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.1)
rspec-core (3.13.2)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.1)
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
rubocop (1.65.1)
rubocop (1.66.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.32.3)
parser (>= 3.3.1.0)
rubocop-factory_bot (2.26.1)
rubocop (~> 1.61)
rubocop-performance (1.21.1)
rubocop-performance (1.22.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rails (2.26.2)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.52.0, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-rspec (3.0.5)
rubocop-rspec (3.1.0)
rubocop (~> 1.61)
ruby-progressbar (1.13.0)
securerandom (0.3.1)
Expand All @@ -103,18 +101,18 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.13.1)
simplecov_json_formatter (0.1.4)
standard (1.40.0)
standard (1.41.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.65.0)
rubocop (~> 1.66.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.4)
standard-performance (~> 1.5)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.4.0)
standard-performance (1.5.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.21.0)
rubocop-performance (~> 1.22.0)
standard-rails (1.2.0)
lint_roller (~> 1.0)
rubocop-rails (~> 2.26.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/rubocop/vendor/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RuboCop
module Vendor
VERSION = '0.13.1'
VERSION = '0.13.2'
end
end
6 changes: 3 additions & 3 deletions tasks/cops_documentation.rake
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do
end

def h4(title)
content = +"#### #{title}\n"
content = "#### #{title}\n"
content << "\n"
content
end
Expand Down Expand Up @@ -164,7 +164,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do
end
return if selected_cops.empty?

content = +"# #{department}\n"
content = "# #{department}\n"
selected_cops.each do |cop|
content << print_cop_with_doc(cop, config)
end
Expand Down Expand Up @@ -201,7 +201,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do

type_title = department[0].upcase + department[1..]
filename = "cops_#{department.downcase}.md"
content = +"#### Department [#{type_title}](#{filename})\n\n"
content = "#### Department [#{type_title}](#{filename})\n\n"
selected_cops.each do |cop|
anchor = cop.cop_name.sub('/', '').downcase
content << "* [#{cop.cop_name}](#{filename}##{anchor})\n"
Expand Down

0 comments on commit 991af4b

Please sign in to comment.