Skip to content

Commit

Permalink
Merge pull request #371 from testdouble/update-deps-2022-01-03
Browse files Browse the repository at this point in the history
[ 2022-01-03 ] - Update dependencies
  • Loading branch information
camilopayan authored Jan 5, 2022
2 parents 9a716f7 + 05ce973 commit 497dd4e
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
ruby-version: [2.5, 2.6, 2.7, 3.0]
ruby-version: [2.5, 2.6, 2.7, 3.0, 3.1]

runs-on: ${{ matrix.os }}

Expand Down
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.12.0 to [1.13.1](https://github.com/rubocop/rubocop-performance/tag/v1.13.1)
* Update rubocop from 1.23.0 to [1.24.1](https://github.com/rubocop/rubocop/tag/v1.24.1)

## 1.5.0

* Update rubocop-performance from 1.11.5 to [1.12.0](https://github.com/rubocop/rubocop-performance/tag/v1.12.0)
Expand Down
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
standard (1.5.0)
rubocop (= 1.23.0)
rubocop-performance (= 1.12.0)
rubocop (= 1.24.1)
rubocop-performance (= 1.13.1)

GEM
remote: https://rubygems.org/
Expand All @@ -13,29 +13,29 @@ GEM
docile (1.4.0)
gimme (0.5.0)
method_source (1.0.0)
minitest (5.14.4)
minitest (5.15.0)
parallel (1.21.0)
parser (3.0.3.1)
parser (3.1.0.0)
ast (~> 2.4.1)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
rainbow (3.0.0)
rake (13.0.6)
regexp_parser (2.1.1)
regexp_parser (2.2.0)
rexml (3.2.5)
rubocop (1.23.0)
rubocop (1.24.1)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.12.0, < 2.0)
rubocop-ast (>= 1.15.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.13.0)
rubocop-ast (1.15.1)
parser (>= 3.0.1.1)
rubocop-performance (1.12.0)
rubocop-performance (1.13.1)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
Expand All @@ -61,4 +61,4 @@ DEPENDENCIES
standard!

BUNDLED WITH
2.2.22
2.3.4
16 changes: 15 additions & 1 deletion config/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ Lint/Void:
CheckForMethodsWithNoSideEffects: false

Lint/IncompatibleIoSelectWithFiberScheduler:
Enabled: false
Enabled: true

Lint/RequireRelativeSelfPath:
Enabled: true
Expand Down Expand Up @@ -896,6 +896,9 @@ Naming/VariableName:
Naming/VariableNumber:
Enabled: false

Naming/BlockForwarding:
Enabled: false

Performance/AncestorsInclude:
Enabled: false

Expand Down Expand Up @@ -1045,6 +1048,9 @@ Performance/UriDefaultParser:
Performance/ConcurrentMonotonicTime:
Enabled: true

Performance/StringIdentifierArgument:
Enabled: true

Security/Eval:
Enabled: true

Expand Down Expand Up @@ -1824,3 +1830,11 @@ Style/SelectByRegexp:
Style/OpenStructUse:
Enabled: false

Style/MapToHash:
Enabled: false

Style/FileWrite:
Enabled: true

Style/FileRead:
Enabled: true
6 changes: 6 additions & 0 deletions config/ruby-1.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ Style/HashSyntax:

Style/Lambda:
Enabled: false

Style/FileWrite:
Enabled: false

Style/FileRead:
Enabled: false
13 changes: 13 additions & 0 deletions config/ruby-3.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
inherit_from: ./base.yml

AllCops:
TargetRubyVersion: 3.0

Style/HashExcept:
Enabled: true

Naming/BlockForwarding:
Enabled: false

Naming/BlockForwarding:
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.23.0"
spec.add_dependency "rubocop-performance", "1.12.0"
spec.add_dependency "rubocop", "1.24.1"
spec.add_dependency "rubocop-performance", "1.13.1"
end
1 change: 0 additions & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
begin
require "simplecov"
SimpleCov.start
SimpleCov.start do
add_filter "vendor"
end
Expand Down

0 comments on commit 497dd4e

Please sign in to comment.