Skip to content

Commit

Permalink
Merge pull request #503 from testdouble/update-deps-2023-01-02
Browse files Browse the repository at this point in the history
[ 2023-01-02 ] - Update dependencies
  • Loading branch information
camilopayan authored Jan 3, 2023
2 parents c5dd63f + 1d67308 commit 7f32165
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Unreleased

* Update rubocop-performance from 1.15.1 to [1.15.2](https://github.com/rubocop/rubocop-performance/releases/tag/v1.15.2)
* Update rubocop from 1.40.0 to [1.42.0](https://github.com/rubocop/rubocop/releases/tag/v1.42.0)

## 1.20.0

* Update rubocop from 1.39.0 to [1.40.0](https://github.com/rubocop/rubocop/releases/tag/v1.40.0)
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ PATH
specs:
standard (1.20.0)
language_server-protocol (~> 3.17.0.2)
rubocop (= 1.40.0)
rubocop-performance (= 1.15.1)
rubocop (= 1.42.0)
rubocop-performance (= 1.15.2)

GEM
remote: https://rubygems.org/
Expand All @@ -16,7 +16,7 @@ GEM
json (2.6.3)
language_server-protocol (3.17.0.2)
method_source (1.0.0)
minitest (5.16.3)
minitest (5.17.0)
parallel (1.22.1)
parser (3.1.3.0)
ast (~> 2.4.1)
Expand All @@ -27,23 +27,23 @@ GEM
rake (13.0.6)
regexp_parser (2.6.1)
rexml (3.2.5)
rubocop (1.40.0)
rubocop (1.42.0)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.1.2.1)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.23.0, < 2.0)
rubocop-ast (>= 1.24.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.24.0)
rubocop-ast (1.24.1)
parser (>= 3.1.1.0)
rubocop-performance (1.15.1)
rubocop-performance (1.15.2)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
simplecov (0.21.2)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
Expand Down
15 changes: 15 additions & 0 deletions config/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1213,6 +1213,9 @@ Style/CommentAnnotation:
Style/CommentedKeyword:
Enabled: false

Style/ConcatArrayLiterals:
Enabled: false

Style/ConditionalAssignment:
Enabled: true
EnforcedStyle: assign_to_condition
Expand Down Expand Up @@ -1429,6 +1432,9 @@ Style/MapCompactWithConditionalBlock:
Style/MapToHash:
Enabled: false

Style/MapToSet:
Enabled: false

Style/MethodCallWithArgsParentheses:
Enabled: false

Expand All @@ -1445,6 +1451,9 @@ Style/MethodDefParentheses:
Style/MinMax:
Enabled: false

Style/MinMaxComparison:
Enabled: false

Style/MissingElse:
Enabled: false

Expand Down Expand Up @@ -1652,6 +1661,9 @@ Style/RedundantConditional:
Style/RedundantConstantBase:
Enabled: false

Style/RedundantDoubleSplatHashBraces:
Enabled: true

Style/RedundantEach:
Enabled: false

Expand Down Expand Up @@ -1911,5 +1923,8 @@ Style/YodaCondition:
Enabled: true
EnforcedStyle: forbid_for_all_comparison_operators

Style/YodaExpression:
Enabled: false

Style/ZeroLengthPredicate:
Enabled: false
4 changes: 2 additions & 2 deletions standard.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "rubocop", "1.40.0"
spec.add_dependency "rubocop-performance", "1.15.1"
spec.add_dependency "rubocop", "1.42.0"
spec.add_dependency "rubocop-performance", "1.15.2"

# not semver: first three are lsp protocol version, last is patch
spec.add_dependency "language_server-protocol", "~> 3.17.0.2"
Expand Down

0 comments on commit 7f32165

Please sign in to comment.