Skip to content

Commit fc9c7a1

Browse files
committed
bundle update
1 parent 75e9caf commit fc9c7a1

File tree

4 files changed

+29
-21
lines changed

4 files changed

+29
-21
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
AllCops:
22
TargetRubyVersion: 2.6
33
DisplayCopNames: true
4+
NewCops: enable
45

56
Bundler/DuplicatedGem:
67
Enabled: false

Gemfile.lock

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
GIT
22
remote: https://github.com/simplecov-ruby/simplecov.git
3-
revision: 80700ec9f9b5ae426c22d06f62620f7e7b71ff42
3+
revision: 441d8ca6249c07275202880f3ff604272a4a3b76
44
specs:
5-
simplecov (0.18.5)
5+
simplecov (0.21.2)
66
docile (~> 1.1)
77
simplecov-html (~> 0.11)
8+
simplecov_json_formatter (~> 0.1)
89

910
PATH
1011
remote: .
@@ -14,32 +15,38 @@ PATH
1415
GEM
1516
remote: https://rubygems.org/
1617
specs:
17-
ast (2.4.0)
18-
concurrent-ruby (1.1.5)
19-
docile (1.3.2)
18+
ast (2.4.2)
19+
concurrent-ruby (1.1.8)
20+
docile (1.3.5)
2021
execjs (2.7.0)
21-
jaro_winkler (1.5.4)
22-
minitest (5.14.0)
23-
parallel (1.19.1)
24-
parser (2.7.0.2)
25-
ast (~> 2.4.0)
22+
minitest (5.14.4)
23+
parallel (1.20.1)
24+
parser (3.0.1.0)
25+
ast (~> 2.4.1)
2626
rack (2.2.3)
2727
rainbow (3.0.0)
28-
rake (13.0.1)
29-
rubocop (0.79.0)
30-
jaro_winkler (~> 1.5.1)
28+
rake (13.0.3)
29+
regexp_parser (2.1.1)
30+
rexml (3.2.5)
31+
rubocop (1.13.0)
3132
parallel (~> 1.10)
32-
parser (>= 2.7.0.1)
33+
parser (>= 3.0.0.0)
3334
rainbow (>= 2.2.2, < 4.0)
35+
regexp_parser (>= 1.8, < 3.0)
36+
rexml
37+
rubocop-ast (>= 1.2.0, < 2.0)
3438
ruby-progressbar (~> 1.7)
35-
unicode-display_width (>= 1.4.0, < 1.7)
36-
ruby-progressbar (1.10.1)
39+
unicode-display_width (>= 1.4.0, < 3.0)
40+
rubocop-ast (1.4.1)
41+
parser (>= 2.7.1.5)
42+
ruby-progressbar (1.11.0)
43+
simplecov_json_formatter (0.1.2)
3744
sprockets (3.7.2)
3845
concurrent-ruby (~> 1.0)
3946
rack (> 1, < 3)
4047
uglifier (4.2.0)
4148
execjs (>= 0.3.0, < 3)
42-
unicode-display_width (1.6.1)
49+
unicode-display_width (2.0.0)
4350
yui-compressor (0.12.0)
4451

4552
PLATFORMS
@@ -56,4 +63,4 @@ DEPENDENCIES
5663
yui-compressor
5764

5865
BUNDLED WITH
59-
2.1.4
66+
2.2.16

Guardfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ guard "bundler" do
1010
end
1111

1212
guard "rake", :task => "assets:compile" do
13-
watch(%r{^assets\/})
13+
watch(%r{^assets/})
1414
end

lib/simplecov-html.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ def formatted_source_file(source_file)
9696

9797
# Returns a table containing the given source files
9898
def formatted_file_list(title, source_files)
99-
title_id = title.gsub(/^[^a-zA-Z]+/, "").gsub(/[^a-zA-Z0-9\-\_]/, "")
99+
title_id = title.gsub(/^[^a-zA-Z]+/, "").gsub(/[^a-zA-Z0-9\-_]/, "")
100100
# Silence a warning by using the following variable to assign to itself:
101101
# "warning: possibly useless use of a variable in void context"
102102
# The variable is used by ERB via binding.
103-
title_id = title_id
103+
title_id = title_id # rubocop:disable Lint/SelfAssignment
104104
template("file_list").result(binding)
105105
end
106106

0 commit comments

Comments
 (0)