Upgrade bundled dependencies

This commit is contained in:
Markus Schirp 2018-12-01 23:35:26 +00:00
parent 148d632c20
commit ef43f4cef4
5 changed files with 18 additions and 21 deletions

View file

@ -45,22 +45,22 @@ GEM
equalizer (~> 0.0.9) equalizer (~> 0.0.9)
descendants_tracker (0.0.4) descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1) thread_safe (~> 0.3, >= 0.3.1)
devtools (0.1.21) devtools (0.1.22)
abstract_type (~> 0.0.7) abstract_type (~> 0.0.7)
adamantium (~> 0.2.0) adamantium (~> 0.2.0)
anima (~> 0.3.0) anima (~> 0.3.0)
concord (~> 0.1.5) concord (~> 0.1.5)
flay (~> 2.10.0) flay (~> 2.12.0)
flog (~> 4.6.1) flog (~> 4.6.2)
mutant (~> 0.8.16) mutant (~> 0.8.19)
mutant-rspec (~> 0.8.16) mutant-rspec (~> 0.8.19)
procto (~> 0.0.3) procto (~> 0.0.3)
rake (~> 12.3.0) rake (~> 12.3.0)
reek (~> 5.0.2) reek (~> 5.2.0)
rspec (~> 3.8.0) rspec (~> 3.8.0)
rspec-core (~> 3.8.0) rspec-core (~> 3.8.0)
rspec-its (~> 1.2.0) rspec-its (~> 1.2.0)
rubocop (~> 0.59.0) rubocop (~> 0.60.0)
simplecov (~> 0.16.1) simplecov (~> 0.16.1)
yard (~> 0.9.16) yard (~> 0.9.16)
yardstick (~> 0.9.9) yardstick (~> 0.9.9)
@ -68,7 +68,7 @@ GEM
docile (1.3.1) docile (1.3.1)
equalizer (0.0.11) equalizer (0.0.11)
erubis (2.7.0) erubis (2.7.0)
flay (2.10.0) flay (2.12.0)
erubis (~> 2.7.0) erubis (~> 2.7.0)
path_expander (~> 1.0) path_expander (~> 1.0)
ruby_parser (~> 3.0) ruby_parser (~> 3.0)
@ -100,7 +100,7 @@ GEM
procto (0.0.3) procto (0.0.3)
rainbow (3.0.0) rainbow (3.0.0)
rake (12.3.1) rake (12.3.1)
reek (5.0.2) reek (5.2.0)
codeclimate-engine-rb (~> 0.4.0) codeclimate-engine-rb (~> 0.4.0)
kwalify (~> 0.7.0) kwalify (~> 0.7.0)
parser (>= 2.5.0.0, < 2.6, != 2.5.1.1) parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
@ -122,14 +122,14 @@ GEM
diff-lcs (>= 1.2.0, < 2.0) diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.8.0) rspec-support (~> 3.8.0)
rspec-support (3.8.0) rspec-support (3.8.0)
rubocop (0.59.2) rubocop (0.60.0)
jaro_winkler (~> 1.5.1) jaro_winkler (~> 1.5.1)
parallel (~> 1.10) parallel (~> 1.10)
parser (>= 2.5, != 2.5.1.1) parser (>= 2.5, != 2.5.1.1)
powerpack (~> 0.1) powerpack (~> 0.1)
rainbow (>= 2.2.2, < 4.0) rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7) ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1) unicode-display_width (~> 1.4.0)
ruby-progressbar (1.10.0) ruby-progressbar (1.10.0)
ruby_parser (3.11.0) ruby_parser (3.11.0)
sexp_processor (~> 4.9) sexp_processor (~> 4.9)
@ -162,8 +162,7 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
bundler (~> 1.10) devtools (~> 0.1.22)
devtools (~> 0.1.21)
mutant! mutant!
parallel (~> 1.3) parallel (~> 1.3)

View file

@ -173,14 +173,13 @@ IndentArray:
MultilineMethodCallIndentation: MultilineMethodCallIndentation:
EnforcedStyle: indented EnforcedStyle: indented
# Align keys and values in a multiline hash
AlignHash:
EnforcedColonStyle: table
# Prefer `public_send` and `__send__` over `send` # Prefer `public_send` and `__send__` over `send`
Send: Send:
Enabled: true Enabled: true
Layout/AlignHash:
EnforcedColonStyle: table
EnforcedHashRocketStyle: table
Layout/EmptyLineAfterGuardClause: Layout/EmptyLineAfterGuardClause:
Enabled: false Enabled: false
Layout/SpaceInsideArrayLiteralBrackets: Layout/SpaceInsideArrayLiteralBrackets:

View file

@ -5,7 +5,7 @@ module Mutant
class WarningFilter class WarningFilter
include Equalizer.new(:target) include Equalizer.new(:target)
WARNING_PATTERN = /\A(?:.+):(?:\d+): warning: (?:.+)\n\z/ WARNING_PATTERN = /\A(?:.+):(?:\d+): warning: (?:.+)\n\z/.freeze
# Initialize object # Initialize object
# #

View file

@ -38,7 +38,6 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('regexp_parser', '~> 1.2') gem.add_runtime_dependency('regexp_parser', '~> 1.2')
gem.add_runtime_dependency('unparser', '~> 0.3.0') gem.add_runtime_dependency('unparser', '~> 0.3.0')
gem.add_development_dependency('bundler', '~> 1.10') gem.add_development_dependency('devtools', '~> 0.1.22')
gem.add_development_dependency('devtools', '~> 0.1.21')
gem.add_development_dependency('parallel', '~> 1.3') gem.add_development_dependency('parallel', '~> 1.3')
end end