File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 4
4
Exclude :
5
5
- doc/**/*.rb
6
6
- rake.gemspec
7
+ - bin/*
7
8
8
9
Metrics/LineLength :
9
10
Enabled : true
Original file line number Diff line number Diff line change 2
2
$:. unshift File . expand_path ( "../../lib" , __FILE__ )
3
3
4
4
begin
5
- if ENV [ ' COVERALLS' ]
5
+ if ENV [ " COVERALLS" ]
6
6
gem "coveralls"
7
7
require "coveralls"
8
8
Coveralls . wear!
Original file line number Diff line number Diff line change @@ -172,7 +172,8 @@ def test_find
172
172
task :tfind
173
173
assert_equal "tfind" , Task [ :tfind ] . name
174
174
ex = assert_raises ( RuntimeError ) { Task [ :leaves ] }
175
- assert_equal "Don't know how to build task 'leaves' (See the list of available tasks with `rake --tasks`)" , ex . message
175
+ assert_equal "Don't know how to build task 'leaves'" \
176
+ " (See the list of available tasks with `rake --tasks`)" , ex . message
176
177
end
177
178
178
179
def test_defined
You can’t perform that action at this time.
0 commit comments