Upgrade bundled dependencies
This commit is contained in:
parent
148d632c20
commit
ef43f4cef4
5 changed files with 18 additions and 21 deletions
25
Gemfile.lock
25
Gemfile.lock
|
@ -45,22 +45,22 @@ GEM
|
|||
equalizer (~> 0.0.9)
|
||||
descendants_tracker (0.0.4)
|
||||
thread_safe (~> 0.3, >= 0.3.1)
|
||||
devtools (0.1.21)
|
||||
devtools (0.1.22)
|
||||
abstract_type (~> 0.0.7)
|
||||
adamantium (~> 0.2.0)
|
||||
anima (~> 0.3.0)
|
||||
concord (~> 0.1.5)
|
||||
flay (~> 2.10.0)
|
||||
flog (~> 4.6.1)
|
||||
mutant (~> 0.8.16)
|
||||
mutant-rspec (~> 0.8.16)
|
||||
flay (~> 2.12.0)
|
||||
flog (~> 4.6.2)
|
||||
mutant (~> 0.8.19)
|
||||
mutant-rspec (~> 0.8.19)
|
||||
procto (~> 0.0.3)
|
||||
rake (~> 12.3.0)
|
||||
reek (~> 5.0.2)
|
||||
reek (~> 5.2.0)
|
||||
rspec (~> 3.8.0)
|
||||
rspec-core (~> 3.8.0)
|
||||
rspec-its (~> 1.2.0)
|
||||
rubocop (~> 0.59.0)
|
||||
rubocop (~> 0.60.0)
|
||||
simplecov (~> 0.16.1)
|
||||
yard (~> 0.9.16)
|
||||
yardstick (~> 0.9.9)
|
||||
|
@ -68,7 +68,7 @@ GEM
|
|||
docile (1.3.1)
|
||||
equalizer (0.0.11)
|
||||
erubis (2.7.0)
|
||||
flay (2.10.0)
|
||||
flay (2.12.0)
|
||||
erubis (~> 2.7.0)
|
||||
path_expander (~> 1.0)
|
||||
ruby_parser (~> 3.0)
|
||||
|
@ -100,7 +100,7 @@ GEM
|
|||
procto (0.0.3)
|
||||
rainbow (3.0.0)
|
||||
rake (12.3.1)
|
||||
reek (5.0.2)
|
||||
reek (5.2.0)
|
||||
codeclimate-engine-rb (~> 0.4.0)
|
||||
kwalify (~> 0.7.0)
|
||||
parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
|
||||
|
@ -122,14 +122,14 @@ GEM
|
|||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.8.0)
|
||||
rspec-support (3.8.0)
|
||||
rubocop (0.59.2)
|
||||
rubocop (0.60.0)
|
||||
jaro_winkler (~> 1.5.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 2.5, != 2.5.1.1)
|
||||
powerpack (~> 0.1)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (~> 1.0, >= 1.0.1)
|
||||
unicode-display_width (~> 1.4.0)
|
||||
ruby-progressbar (1.10.0)
|
||||
ruby_parser (3.11.0)
|
||||
sexp_processor (~> 4.9)
|
||||
|
@ -162,8 +162,7 @@ PLATFORMS
|
|||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
bundler (~> 1.10)
|
||||
devtools (~> 0.1.21)
|
||||
devtools (~> 0.1.22)
|
||||
mutant!
|
||||
parallel (~> 1.3)
|
||||
|
||||
|
|
|
@ -173,14 +173,13 @@ IndentArray:
|
|||
MultilineMethodCallIndentation:
|
||||
EnforcedStyle: indented
|
||||
|
||||
# Align keys and values in a multiline hash
|
||||
AlignHash:
|
||||
EnforcedColonStyle: table
|
||||
|
||||
# Prefer `public_send` and `__send__` over `send`
|
||||
Send:
|
||||
Enabled: true
|
||||
|
||||
Layout/AlignHash:
|
||||
EnforcedColonStyle: table
|
||||
EnforcedHashRocketStyle: table
|
||||
Layout/EmptyLineAfterGuardClause:
|
||||
Enabled: false
|
||||
Layout/SpaceInsideArrayLiteralBrackets:
|
||||
|
|
|
@ -5,7 +5,7 @@ module Mutant
|
|||
class WarningFilter
|
||||
include Equalizer.new(:target)
|
||||
|
||||
WARNING_PATTERN = /\A(?:.+):(?:\d+): warning: (?:.+)\n\z/
|
||||
WARNING_PATTERN = /\A(?:.+):(?:\d+): warning: (?:.+)\n\z/.freeze
|
||||
|
||||
# Initialize object
|
||||
#
|
||||
|
|
|
@ -38,7 +38,6 @@ Gem::Specification.new do |gem|
|
|||
gem.add_runtime_dependency('regexp_parser', '~> 1.2')
|
||||
gem.add_runtime_dependency('unparser', '~> 0.3.0')
|
||||
|
||||
gem.add_development_dependency('bundler', '~> 1.10')
|
||||
gem.add_development_dependency('devtools', '~> 0.1.21')
|
||||
gem.add_development_dependency('devtools', '~> 0.1.22')
|
||||
gem.add_development_dependency('parallel', '~> 1.3')
|
||||
end
|
||||
|
|
|
@ -80,7 +80,7 @@ RSpec.describe Mutant::Zombifier do
|
|||
let(:file_entries) do
|
||||
{
|
||||
'a/project.rb' => { file: true, contents: 'module Project; end' },
|
||||
'b/bar.rb' => { file: true, contents: 'module Bar; end' }
|
||||
'b/bar.rb' => { file: true, contents: 'module Bar; end' }
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue