Skip to content

Commit

Permalink
Update RuboCop dependency
Browse files Browse the repository at this point in the history
Also fixes a new issue
  • Loading branch information
tagliala committed Nov 24, 2020
1 parent 0458913 commit 5c1048c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ end
group :development do
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.10'
gem 'rubocop', '~> 1.3'
gem 'rubocop', '~> 1.4'
gem 'rubocop-performance', '~> 1.9'
gem 'rubocop-rspec', '~> 2.0'
gem 'truthy', '~> 1.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/coveralls/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def git
remotes = nil
begin
remotes = `git remote -v`.split(/\n/).map do |remote|
splits = remote.split(' ').compact
splits = remote.split.compact
{ name: splits[0], url: splits[1] }
end.uniq
rescue StandardError => e
Expand Down

0 comments on commit 5c1048c

Please sign in to comment.