File tree Expand file tree Collapse file tree 2 files changed +18
-7
lines changed Expand file tree Collapse file tree 2 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 95
95
declarative-option (< 0.2.0 )
96
96
representable (>= 2.4.0 , <= 3.1.0 )
97
97
uber (< 0.2.0 )
98
- docile (1.3.1 )
98
+ docile (1.3.2 )
99
99
erubi (1.8.0 )
100
100
ffi (1.9.25 )
101
101
generator_spec (0.9.4 )
109
109
hashdiff (0.3.8 )
110
110
i18n (1.6.0 )
111
111
concurrent-ruby (~> 1.0 )
112
- json (2.1.0 )
113
112
loofah (2.3.1 )
114
113
crass (~> 1.0.2 )
115
114
nokogiri (>= 1.5.9 )
@@ -192,11 +191,10 @@ GEM
192
191
selenium-webdriver (3.14.1 )
193
192
childprocess (~> 0.5 )
194
193
rubyzip (~> 1.2 , >= 1.2.2 )
195
- simplecov (0.16.1 )
194
+ simplecov (0.18.0 )
196
195
docile (~> 1.1 )
197
- json (>= 1.8 , < 3 )
198
- simplecov-html (~> 0.10.0 )
199
- simplecov-html (0.10.2 )
196
+ simplecov-html (~> 0.11.0 )
197
+ simplecov-html (0.11.0 )
200
198
sprockets (4.0.0 )
201
199
concurrent-ruby (~> 1.0 )
202
200
rack (> 1 , < 3 )
Original file line number Diff line number Diff line change 14
14
#
15
15
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16
16
require 'simplecov'
17
- SimpleCov . start 'rails'
17
+ SimpleCov . start do
18
+ enable_coverage :branch
19
+
20
+ add_filter "/spec"
21
+ add_filter %r{^/config/}
22
+
23
+
24
+ add_group "Concepts" , "/app/concepts"
25
+ add_group "Helpers" , "/app/helpers"
26
+ add_group "App Lib" , "/app/lib"
27
+ add_group "Lib" , %r{^/lib/}
28
+
29
+ track_files "{app,lib}/**/*.rb"
30
+ end
18
31
19
32
require 'webmock/rspec'
20
33
WebMock . allow_net_connect!
You can’t perform that action at this time.
0 commit comments