coverband 5.0.0.rc.5 → 5.0.1.rc.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b829c0b4e513f6f04dbc4e4459a2bfbbbfdf5ecb563f7d8e584c6c628082d875
4
- data.tar.gz: d3931c93df0c2add11d5cebf98fe26d6df14b4ae987b58edb80d2891f38782f3
3
+ metadata.gz: 3b37c0fc6c990699ceb5af49f39121abb439a125f9740a40ece5b661085c116e
4
+ data.tar.gz: ac164ef1389b907353155c9beacd67e99a61397105f5c7f91fee8ef988ec6237
5
5
  SHA512:
6
- metadata.gz: bbae35d24375200cc62e3f191ca3dd001f3be9ef24383ec5508c14dec0e5830dd23107031a8fe093f52615c06b292a91a38ef9fb68d5d54a7834d1b9097dd0ae
7
- data.tar.gz: 2e085a9d3a5cd3e23c87508d0e36b4119a6027fe10a164714b4de8b934142a981691214f493e169c6167288cd666e7d7c024a605423597fec1fb6d8e72bc1e89
6
+ metadata.gz: 3e27a72cdc036a41f3d8466e8513fa4073a2615f54bb7e414a7690dae80e45cb5b5bf5617d17e55ef6660eaa9a8181962e33f0cdef046832b0cd1d277f93676b
7
+ data.tar.gz: 7563f4760ed9359746e2d35ddeaa22145a433c33cb5285c33794ecc46ea987e2ccb5e165e60fafb372f9ef3a2d03edd2fa2b2bf916bae198a9579498792c7a9e
data/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  <p align="center">
11
11
  <a href="#key-features">Key Features</a> •
12
12
  <a href="#installation">Installation</a> •
13
- <a href="#coverage-report">Coverage Report</a> •
13
+ <a href="#coverband-web-ui">Coverband Web UI</a> •
14
14
  <a href="#advanced-config">Advanced Config</a> •
15
15
  <a href="#license">License</a> •
16
16
  <a href="/changes.md">Change Log / Roadmap</a> •
@@ -28,7 +28,7 @@ The primary goal of Coverband is giving deep insight into your production runtim
28
28
  - Low performance overhead
29
29
  - Simple setup and configuration
30
30
  - Out of the box support for all standard code execution paths (web, cron, background jobs, rake tasks, etc)
31
- - Splits load time (Rails eager load) and Run time metrics
31
+ - Splits load time (Rails eager load) and runtime metrics
32
32
  - Easy to understand actionable insights from the report
33
33
  - Development mode, offers deep insight of code usage details (number of LOC execution during single request, etc) during development.
34
34
  - Mountable web interface to easily share reports
@@ -41,7 +41,7 @@ Coverband stores coverage data in Redis. The Redis endpoint is looked for in thi
41
41
 
42
42
  1. `ENV['COVERBAND_REDIS_URL']`
43
43
  2. `ENV['REDIS_URL']`
44
- 3. `localhost`
44
+ 3. `localhost:6379`
45
45
 
46
46
  The redis store can also be explicitly defined within the coverband.rb. See [advanced config](#advanced-config).
47
47
 
@@ -53,8 +53,6 @@ Add this line to your application's `Gemfile`, remember to `bundle install` afte
53
53
  gem 'coverband'
54
54
  ```
55
55
 
56
- ## Upgrading to Latest
57
-
58
56
  ### No custom code or middleware required
59
57
 
60
58
  With older versions of coverband, projects would report to redis using rack or sidekiq middleware. After coverband 4.0, this should no longer be required and could cause performance issues. Reporting to redis is now automatically done within a background thread with no custom code needed.
@@ -67,7 +65,7 @@ The Railtie integration means you shouldn't need to do anything else other than
67
65
 
68
66
  ## Sinatra
69
67
 
70
- For the best coverage you want this loaded as early as possible. I have been putting it directly in my `config.ru` but you could use an initializer, though you may end up missing some boot up coverage. To start collection require Coverband as early as possible.
68
+ For the best coverage you want this loaded as early as possible. We recommend requiring cover band directly in the `config.ru`. Requiring coverband within an initializer could also work, but you may end up missing some boot up coverage. To start collection require Coverband as early as possible.
71
69
 
72
70
  ```ruby
73
71
  require 'coverband'
@@ -77,7 +75,33 @@ use Coverband::BackgroundMiddleware
77
75
  run ActionController::Dispatcher.new
78
76
  ```
79
77
 
80
- # Coverage Report
78
+ ## Coverband Web UI
79
+
80
+ ![image](https://raw.github.com/danmayer/coverband/master/docs/coverband_web_ui.png)
81
+
82
+ > The web index as available on the [Coverband Demo site](https://coverband-demo.herokuapp.com/coverage?#_Coverage)
83
+
84
+ - View overall coverage information
85
+
86
+ - Drill into individual file coverage
87
+
88
+ - View individual file details
89
+
90
+ - Clear Coverage - disabled by default as it could be considered a dangerous operation in production. Enable with `config.web_enable_clear` or leave off and clear from [rake task](#clear-coverage).
91
+
92
+ - Clear coverage report
93
+
94
+ This will clear the coverage data. This wipes out all collected data.
95
+
96
+ - Clear individual file coverage
97
+
98
+ This will clear the details of the file you are looking at. This is helpful if you don't want to lose all Coverage data but made a change that you expect would impact a particular file.
99
+
100
+ - Force coverage collection
101
+
102
+ This triggers coverage collection on the current webserver process. Useful in development but confusing in production environments where many ruby processes are usually running.
103
+
104
+ ### Mounting as a Rack App
81
105
 
82
106
  Coverband comes with a mountable rack app for viewing reports. For Rails this can be done in `config/routes.rb` with:
83
107
 
@@ -97,49 +121,23 @@ Rails.application.routes.draw do
97
121
  end
98
122
  ```
99
123
 
100
- or you can enable basic auth by setting `ENV['COVERBAND_PASSWORD']` or via your configuration `config.password = 'my_pass'`
124
+ or you can enable basic auth by setting `ENV['COVERBAND_PASSWORD']` or via your configuration `config.password = <YOUR_COMPLEX_UNGUESSABLE_PASSWORD>`
101
125
 
102
- ### Coverband Web Endpoint
126
+ ### Standalone
103
127
 
104
- The web endpoint is a barebones endpoint that you can either expose direct (after authentication) or you can just link to the actions you wish to expose. The index is intended as a example to showcase all the features.
128
+ The coverage server can also be started standalone with a rake task:
105
129
 
106
- ![image](https://raw.github.com/danmayer/coverband/master/docs/coverband_web_ui.png)
107
-
108
- > The web index as available on the Coverband Demo site
109
-
110
- - **force coverage collection:** This triggers coverage collection on the current webserver process
111
- - **clear coverage report:** This will clear the coverage data. This wipes out all collected data (**dangerous**)
112
- - View individual file details
113
- - **clear individual file coverage:** This will clear the details of the file you are looking at. This is helpful if you don't want to lose all Coverage data but made a change that you expect would impact a particular file.
114
-
115
- ### JRuby Support
116
-
117
- Coverband is compatible with JRuby. If you want to run on JRuby note that I haven't benchmarked and I believe the perf impact on older versions of JRuby could be significant, improved Coverage support is in [JRuby master](https://github.com/jruby/jruby/pull/6180), and will be in the next release.
118
-
119
- - older versions of JRuby need tracing enabled to work (and this could cause bad performance)
120
- - run Jruby with the `--debug` option
121
- - add into your `.jrubyrc` the `debug.fullTrace=true` setting
122
- - For best performance the `oneshot_lines` is recommended, and in the latest releases should have very low overhead
123
- - See JRuby support in a Rails app configured to run via JRuby, in [Coverband Demo](https://github.com/coverband-service/coverband_demo)
124
- - JRuby is tested via CI against Rails 5 and 6
125
-
126
- ### Rake Tasks
127
-
128
- The rake task generates a report locally and opens a browser pointing to `coverage/index.html`.
129
-
130
- `rake coverband:coverage`
131
-
132
- This is mostly useful in your local development environment.
133
-
134
- ##### Example Output
130
+ ```
131
+ bundle exec rake coverband:coverage_server
132
+ ```
135
133
 
136
- Since Coverband is [Simplecov](https://github.com/colszowka/simplecov) output compatible it should work with any of the `SimpleCov::Formatter`'s available. The output below is produced using the default Simplecov HTML formatter.
134
+ The web UI should then be available here: http://localhost:1022/
137
135
 
138
- Index Page
139
- ![image](https://raw.github.com/danmayer/coverband/master/docs/coverband_index.png)
136
+ This is especially useful for projects that are api only and cannot support the mounted rack app. To get production coverage, point coverband at your production redis server and ensure to checkout the production version of your project code locally.
140
137
 
141
- Details on an example Sinatra app
142
- ![image](https://raw.github.com/danmayer/coverband/master/docs/coverband_details.png)
138
+ ```
139
+ COVERBAND_REDIS_URL=redis://username:password:redis_production_server:2322 bundle exec rake coverband:coverage_server
140
+ ```
143
141
 
144
142
  # Coverband Demo
145
143
 
@@ -245,7 +243,7 @@ end
245
243
 
246
244
  ### Avoiding Cache Stampede
247
245
 
248
- If you have many servers and they all hit Redis at the same time you can see spikes in your Redis CPU, and memory. This is do to a concept called [cache stampede](https://en.wikipedia.org/wiki/Cache_stampede). It is better to spread out the reporting across your servers. A simple way to do this is to add a random wiggle on your background reporting. This configuration option allows a wiggle. The right amount of wiggle depends on the numbers of servers you have and how willing you are to have delays in your coverage reporting. I would recommend at least 1 second per server.
246
+ If you have many servers and they all hit Redis at the same time you can see spikes in your Redis CPU, and memory. This is do to a concept called [cache stampede](https://en.wikipedia.org/wiki/Cache_stampede). It is better to spread out the reporting across your servers. A simple way to do this is to add a random wiggle on your background reporting. This configuration option allows a wiggle. The right amount of wiggle depends on the numbers of servers you have and how willing you are to have delays in your coverage reporting. I would recommend at least 1 second per server. Note, the default wiggle is set to 30 seconds.
249
247
 
250
248
  Add a wiggle (in seconds) to the background thread to avoid all your servers reporting at the same time:
251
249
 
@@ -253,11 +251,12 @@ Add a wiggle (in seconds) to the background thread to avoid all your servers rep
253
251
 
254
252
  ### Redis Hash Store
255
253
 
256
- Coverband on very high volume sites with many server processes reporting can have a race condition. To resolve the race condition and reduce Ruby memory overhead we have introduced a new Redis storage option. This moves the some of the work from the Ruby processes to Redis. It is worth noting because of this, it has a larger demands on the Redis server. So adjust your Redis instance accordingly. To help reduce the extra redis load you can also change the background reporting time period.
254
+ Coverband on very high volume sites with many server processes reporting can have a race condition which can cause hit counts to be inaccurate. To resolve the race condition and reduce Ruby memory overhead we have introduced a new Redis storage option. This moves the some of the work from the Ruby processes to Redis. It is worth noting because of this, it has a larger demands on the Redis server. So adjust your Redis instance accordingly. To help reduce the extra redis load you can also change the background reporting frequency.
257
255
 
258
- - set the new Redis store: `config.store = Coverband::Adapters::HashRedisStore.new(Redis.new(url: redis_url))`
259
- - adjust from default 30s reporting `config.background_reporting_sleep_seconds = 120`
260
- - reminder it is recommended to have a unique Redis per workload (background jobs, caching, Coverband), for this store, it may be more important to have a dedicated Redis.
256
+ - Use a dedicated coverband redis instance: `config.store = Coverband::Adapters::HashRedisStore.new(Redis.new(url: redis_url))`
257
+ - Adjust from default 30s reporting `config.background_reporting_sleep_seconds = 120`
258
+
259
+ See more discussion [here](https://github.com/danmayer/coverband/issues/384).
261
260
 
262
261
  ### Clear Coverage
263
262
 
@@ -265,6 +264,8 @@ Now that Coverband uses MD5 hashes there should be no reason to manually clear c
265
264
 
266
265
  `rake coverband:clear`
267
266
 
267
+ This can also be done through the web if `config.web_enable_clear` is enabled.
268
+
268
269
  ### Coverage Data Migration
269
270
 
270
271
  Between the release of 4.0 and 4.1 our data format changed. This resets all your coverage data. If you want to restore your previous coverage data, feel free to migrate.
@@ -306,7 +307,7 @@ Coverband.start
306
307
 
307
308
  ### Verbose Debug / Development Mode
308
309
 
309
- Note: To debug issues getting Coverband working. I recommend running in development mode, by turning verbose logging on `config.verbose = true` and passing in the Rails.logger `config.logger = Rails.logger` to the Coverband config. We respect the log level, and I would recommend log level info generally, but if you are investigating a prolbem Coverband logs additional data at the `debug` level. This makes it easy to follow in development mode. Be careful to not leave these on in production as they will affect performance.
310
+ Note: To debug issues getting Coverband working. I recommend running in development mode, by turning verbose logging on `config.verbose = true` and passing in the Rails.logger `config.logger = Rails.logger` to the Coverband config. We respect the log level, and I would recommend log level info generally, but if you are investigating a problem Coverband logs additional data at the `debug` level. This makes it easy to follow in development mode. Be careful to not leave these on in production as they will affect performance.
310
311
 
311
312
  ---
312
313
 
@@ -339,6 +340,17 @@ We will match Heroku & Ruby's support lifetime, supporting the last 3 major Ruby
339
340
 
340
341
  For Rails, we will follow the policy of the [Rails team maintenance policy](https://guides.rubyonrails.org/maintenance_policy.html). We officially support the last two major release versions, while providing minimal support (major bugs / security fixes) for an additional version. This means at the moment we primaryly target Rails 6.x, 5.x, and will try to keep current functionality working for Rails 4.x but may release new features that do not work on that target.
341
342
 
343
+ ### JRuby Support
344
+
345
+ Coverband is compatible with JRuby. If you want to run on JRuby note that I haven't benchmarked and I believe the perf impact on older versions of JRuby could be significant. Improved Coverage support is in [JRuby master](https://github.com/jruby/jruby/pull/6180), and will be in the next release.
346
+
347
+ - older versions of JRuby need tracing enabled to work (and this could cause bad performance)
348
+ - run Jruby with the `--debug` option
349
+ - add into your `.jrubyrc` the `debug.fullTrace=true` setting
350
+ - For best performance the `oneshot_lines` is recommended, and in the latest releases should have very low overhead
351
+ - See JRuby support in a Rails app configured to run via JRuby, in [Coverband Demo](https://github.com/coverband-service/coverband_demo)
352
+ - JRuby is tested via CI against Rails 5 and 6
353
+
342
354
  # Contributing To Coverband
343
355
 
344
356
  If you are working on adding features, PRs, or bugfixes to Coverband this section should help get you going.
data/changes.md CHANGED
@@ -53,6 +53,12 @@ Will be the fully modern release that drops maintenance legacy support in favor
53
53
 
54
54
  # Alpha / Beta / Release Candidates
55
55
 
56
+ ### Coverband 5.0.1
57
+
58
+ - ?
59
+
60
+ # Released
61
+
56
62
  ### Coverband 5.0.0
57
63
 
58
64
  - Full JRuby support
@@ -66,21 +72,23 @@ Will be the fully modern release that drops maintenance legacy support in favor
66
72
  - all config options can be set via coverband config, not requiring ENV var support
67
73
  - deprecation notices on soon to be removed config options
68
74
  - config exceptions on invalid configuration combinations
75
+ - additional testing around configurations
76
+ - improved defaults and reduced configuration options
69
77
  - improved resque patching pattern
70
78
  - improved default ignores
71
79
  - additional adapters
72
80
  - supports web-service adapter for http coverage collection
73
81
  - support log/file adapter
82
+ - extendable pattern to support any additional backends
74
83
  - reduce logs / errors / alerts on bad startup configurations
84
+ - fix: #301 runtime vs eagerload should always remain correct
75
85
 
76
- # Released
77
-
78
- ###Coverband 4.2.7
86
+ ### Coverband 4.2.7
79
87
 
80
88
  - Ignore patterns too aggressive #382, thanks @thijsnado
81
89
  - Stack level too deep error when running certain activejob jobs #367, thanks @kejordan and @hanslauwers
82
90
 
83
- ###Coverband 4.2.6
91
+ ### Coverband 4.2.6
84
92
 
85
93
  - Address Redis exists deprecation warning by baffers
86
94
 
@@ -263,7 +271,7 @@ Will be a stable and fast release that drops maintenance legacy support in favor
263
271
  - implemented for Redis and File store
264
272
  - improved mountable web interface
265
273
 
266
- # 2.0.3
274
+ ### 2.0.3
267
275
 
268
276
  - don''t include docs in the gemfile thanks @bquorning
269
277
  - pipeline_redis to reduce network overhead thanks @Kallin
@@ -25,6 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.add_development_dependency "memory_profiler"
26
26
  spec.add_development_dependency "minitest"
27
27
  spec.add_development_dependency "minitest-fork_executor"
28
+ spec.add_development_dependency "minitest-stub-const"
28
29
  spec.add_development_dependency "mocha", "~> 1.7.0"
29
30
  spec.add_development_dependency "rack"
30
31
  spec.add_development_dependency "rack-test"
@@ -130,7 +130,7 @@ module Coverband
130
130
 
131
131
  def store
132
132
  @store ||= if service?
133
- raise "invalid configuration: unclear default store coverband expects either api_key or redis_url" if redis_url
133
+ raise "invalid configuration: unclear default store coverband expects either api_key or redis_url" if ENV["COVERBAND_REDIS_URL"]
134
134
  require "coverband/adapters/web_service_store"
135
135
  Coverband::Adapters::WebServiceStore.new(service_url)
136
136
  else
@@ -140,8 +140,8 @@ module Coverband
140
140
 
141
141
  def store=(store)
142
142
  raise "Pass in an instance of Coverband::Adapters" unless store.is_a?(Coverband::Adapters::Base)
143
- raise "invalid configuration: only coverband service expects an API Key" if api_key && !store.is_a?(Coverband::Adapters::WebServiceStore)
144
- raise "invalid configuration: coverband service shouldn't have redis url set" if redis_url && store.is_a?(Coverband::Adapters::WebServiceStore)
143
+ raise "invalid configuration: only coverband service expects an API Key" if api_key && store.class.to_s != "Coverband::Adapters::WebServiceStore"
144
+ raise "invalid configuration: coverband service shouldn't have redis url set" if ENV["COVERBAND_REDIS_URL"] && store.class.to_s == "Coverband::Adapters::WebServiceStore"
145
145
 
146
146
  @store = store
147
147
  end
@@ -8,14 +8,8 @@ module Coverband
8
8
  class ConsoleReport < Base
9
9
  def self.report(store, options = {})
10
10
  scov_style_report = super(store, options)
11
-
12
- scov_style_report.each_pair do |file, usage|
13
- # TODO: In Coverband 5 deprecate none hash format
14
- if usage.is_a?(Hash)
15
- Coverband.configuration.logger.info "#{file}: #{usage["data"]}"
16
- else
17
- Coverband.configuration.logger.info "#{file}: #{usage}"
18
- end
11
+ scov_style_report[:merged].each_pair do |file, usage|
12
+ Coverband.configuration.logger.info "#{file}: #{usage["data"]}"
19
13
  end
20
14
  scov_style_report
21
15
  end
@@ -13,7 +13,21 @@ module Coverband
13
13
  initializer "coverband.configure" do |app|
14
14
  begin
15
15
  app.middleware.use Coverband::BackgroundMiddleware
16
+ rescue Redis::CannotConnectError => error
17
+ Coverband.configuration.logger.info "Redis is not available (#{error}), Coverband not configured"
18
+ Coverband.configuration.logger.info "If this is a setup task like assets:precompile feel free to ignore"
19
+ end
20
+ end
16
21
 
22
+ config.after_initialize do
23
+ unless Coverband.tasks_to_ignore?
24
+ Coverband.configure
25
+ Coverband.eager_loading_coverage!
26
+ Coverband.report_coverage
27
+ Coverband.runtime_coverage!
28
+ end
29
+
30
+ begin
17
31
  if Coverband.configuration.track_views
18
32
  COVERBAND_VIEW_TRACKER = if Coverband.coverband_service?
19
33
  Coverband::Collectors::ViewTrackerService.new
@@ -33,15 +47,6 @@ module Coverband
33
47
  end
34
48
  end
35
49
 
36
- config.after_initialize do
37
- unless Coverband.tasks_to_ignore?
38
- Coverband.configure
39
- Coverband.eager_loading_coverage!
40
- Coverband.report_coverage
41
- Coverband.runtime_coverage!
42
- end
43
- end
44
-
45
50
  config.before_configuration do
46
51
  unless ENV["COVERBAND_DISABLE_AUTO_START"]
47
52
  begin
@@ -5,5 +5,5 @@
5
5
  # use format '4.2.1.rc.1' ~> 4.2.1.rc to prerelease versions like v4.2.1.rc.2 and v4.2.1.rc.3
6
6
  ###
7
7
  module Coverband
8
- VERSION = "5.0.0.rc.5"
8
+ VERSION = "5.0.1.rc.1"
9
9
  end
@@ -89,17 +89,29 @@ class BaseTest < Minitest::Test
89
89
  end
90
90
  end
91
91
 
92
- test "store raises when api key and redis_url" do
92
+ test "store raises when api key and coverband redis env" do
93
93
  Coverband::Collectors::Coverage.instance.reset_instance
94
94
  Coverband.configuration.reset
95
- assert_raises RuntimeError do
96
- Coverband.configure do |config|
97
- config.api_key = "test-key"
98
- config.redis_url = "redis://localhost:3333"
95
+
96
+ env = ENV.to_hash.merge("COVERBAND_REDIS_URL" => "redis://localhost:3333")
97
+ Object.stub_const(:ENV, env) do
98
+ assert_raises RuntimeError do
99
+ Coverband.configure do |config|
100
+ config.api_key = "test-key"
101
+ end
99
102
  end
100
103
  end
101
104
  end
102
105
 
106
+ test "store doesnt raises when api key and redis_url" do
107
+ Coverband::Collectors::Coverage.instance.reset_instance
108
+ Coverband.configuration.reset
109
+ Coverband.configure do |config|
110
+ config.api_key = "test-key"
111
+ config.redis_url = "redis://localhost:3333"
112
+ end
113
+ end
114
+
103
115
  test "use_oneshot_lines_coverage" do
104
116
  refute Coverband.configuration.use_oneshot_lines_coverage
105
117
 
@@ -22,13 +22,13 @@ if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.2.0")
22
22
  test "renders index content" do
23
23
  get "/"
24
24
  assert last_response.ok?
25
- assert_match "Coverband Admin", last_response.body
25
+ assert_match "Coverband Home", last_response.body
26
26
  end
27
27
 
28
28
  test "renders index content for empty path" do
29
29
  get ""
30
30
  assert last_response.ok?
31
- assert_match "Coverband Admin", last_response.body
31
+ assert_match "Coverband Home", last_response.body
32
32
  end
33
33
 
34
34
  test "renders 404" do
@@ -6,6 +6,7 @@ require "rubygems"
6
6
  require "simplecov"
7
7
  require "coveralls"
8
8
  require "minitest/autorun"
9
+ require "minitest/stub_const"
9
10
  require "mocha/minitest"
10
11
  require "ostruct"
11
12
  require "json"
@@ -1,7 +1,7 @@
1
1
 
2
2
  <div id="header">
3
- <a href='<%= base_path %>'>Coverband Admin</a> &nbsp;
4
- <a href='<%= base_path %>settings'>Info</a> &nbsp;
3
+ <a href='<%= base_path %>'>Coverband Home</a> &nbsp;
4
+ <a href='<%= base_path %>settings'>Configuration</a> &nbsp;
5
5
  <% if Coverband.configuration.web_enable_clear %>
6
6
  <%= button("#{base_path}clear", 'clear coverage report', delete: true) %>
7
7
  <% end %>
@@ -11,8 +11,8 @@
11
11
  <body>
12
12
  <div id="wrapper" style="">
13
13
  <div id="header">
14
- <a href='<%= base_path %>'>Coverband Admin</a> &nbsp;
15
- <a href='<%= base_path %>settings'>Info</a> &nbsp;
14
+ <a href='<%= base_path %>'>Coverband Home</a> &nbsp;
15
+ <a href='<%= base_path %>settings'>Configuration</a> &nbsp;
16
16
  </div>
17
17
  <div id="content">
18
18
  <dl>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coverband
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.rc.5
4
+ version: 5.0.1.rc.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Mayer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-08-26 00:00:00.000000000 Z
12
+ date: 2020-09-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: benchmark-ips
@@ -95,6 +95,20 @@ dependencies:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
+ - !ruby/object:Gem::Dependency
99
+ name: minitest-stub-const
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
98
112
  - !ruby/object:Gem::Dependency
99
113
  name: mocha
100
114
  requirement: !ruby/object:Gem::Requirement