File tree 3 files changed +1
-17
lines changed
3 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 6
6
# Note that changes in the inspected code, or installation of new
7
7
# versions of RuboCop, may require this file to be generated again.
8
8
9
- # Offense count: 2
10
- # This cop supports safe autocorrection (--autocorrect).
11
- Layout/EmptyLines :
12
- Exclude :
13
- - ' Gemfile'
14
- - ' Rakefile'
15
-
16
- # Offense count: 1
17
- # This cop supports safe autocorrection (--autocorrect).
18
- # Configuration parameters: Width, AllowedPatterns.
19
- Layout/IndentationWidth :
20
- Exclude :
21
- - ' Rakefile'
22
-
23
9
# Offense count: 1
24
10
Lint/MixedRegexpCaptureTypes :
25
11
Exclude :
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ group :development do
27
27
gem 'simplecov'
28
28
gem 'simplecov-console'
29
29
30
-
31
30
# Required for testing on Windows
32
31
gem 'ffi' , :platforms => [ :x64_mingw ]
33
32
end
Original file line number Diff line number Diff line change 10
10
namespace :spec do
11
11
desc 'Run RSpec code examples with coverage collection'
12
12
task :coverage do
13
- ENV [ 'COVERAGE' ] = 'yes'
13
+ ENV [ 'COVERAGE' ] = 'yes'
14
14
Rake ::Task [ 'spec' ] . execute
15
15
end
16
16
end
17
17
18
-
19
18
RSpec ::Core ::RakeTask . new ( :acceptance ) do |t |
20
19
t . pattern = 'spec/acceptance/**/*_spec.rb'
21
20
end
You can’t perform that action at this time.
0 commit comments