Skip to content

Commit

Permalink
Merge pull request #361 from testdouble/update-deps-2021-12-02
Browse files Browse the repository at this point in the history
[ 2021-12-02 ] - Update dependencies
  • Loading branch information
camilopayan authored Dec 2, 2021
2 parents af30c74 + 6644b3e commit 845f471
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

* Update rubocop-performance from 1.11.5 to [1.12.0](https://github.com/rubocop/rubocop-performance/tag/v1.12.0)
* Update rubocop from 1.22.3 to [1.23.0](https://github.com/rubocop/rubocop/tag/v1.23.0)

## Unreleased

* Remove
[`Style/NegatedIf`](https://github.com/TODO)

Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
standard (1.4.0)
rubocop (= 1.22.3)
rubocop-performance (= 1.11.5)
rubocop (= 1.23.0)
rubocop-performance (= 1.12.0)

GEM
remote: https://rubygems.org/
Expand All @@ -15,7 +15,7 @@ GEM
method_source (1.0.0)
minitest (5.14.4)
parallel (1.21.0)
parser (3.0.2.0)
parser (3.0.3.1)
ast (~> 2.4.1)
pry (0.14.1)
coderay (~> 1.1)
Expand All @@ -24,7 +24,7 @@ GEM
rake (13.0.6)
regexp_parser (2.1.1)
rexml (3.2.5)
rubocop (1.22.3)
rubocop (1.23.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
Expand All @@ -33,9 +33,9 @@ GEM
rubocop-ast (>= 1.12.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.12.0)
rubocop-ast (1.13.0)
parser (>= 3.0.1.1)
rubocop-performance (1.11.5)
rubocop-performance (1.12.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
Expand Down
13 changes: 13 additions & 0 deletions config/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ Gemspec/RequiredRubyVersion:
Gemspec/RubyVersionGlobalsUsage:
Enabled: false

Gemspec/RequireMFA:
Enabled: false

Layout/AccessModifierIndentation:
Enabled: true
EnforcedStyle: indent
Expand Down Expand Up @@ -803,6 +806,9 @@ Lint/IncompatibleIoSelectWithFiberScheduler:
Lint/RequireRelativeSelfPath:
Enabled: true

Lint/UselessRuby2Keywords:
Enabled: true

Metrics/AbcSize:
Enabled: false

Expand Down Expand Up @@ -1036,6 +1042,9 @@ Performance/UnfreezeString:
Performance/UriDefaultParser:
Enabled: true

Performance/ConcurrentMonotonicTime:
Enabled: true

Security/Eval:
Enabled: true

Expand Down Expand Up @@ -1811,3 +1820,7 @@ Style/NumberedParametersLimit:

Style/SelectByRegexp:
Enabled: false

Style/OpenStructUse:
Enabled: false

3 changes: 3 additions & 0 deletions config/ruby-2.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ inherit_from: ./ruby-2.3.yml
Layout:
HeredocIndentation:
Enabled: false

Performance/ConcurrentMonotonicTime:
Enabled: false
4 changes: 2 additions & 2 deletions standard.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ 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.22.3"
spec.add_dependency "rubocop-performance", "1.11.5"
spec.add_dependency "rubocop", "1.23.0"
spec.add_dependency "rubocop-performance", "1.12.0"
end

0 comments on commit 845f471

Please sign in to comment.