Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update README.md to have track_views default as true #496

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,6 @@ Coverband.configure do |config|
# default false. button at the top of the web interface which clears all data
config.web_enable_clear = true

# default false. Experimental support for tracking view layer tracking.
# Does not track line-level usage, only indicates if an entire file
# is used or not.
config.track_views = true

# default false. Experimental support for routes usage tracking.
config.track_routes = true
end
Expand Down Expand Up @@ -221,9 +216,9 @@ config.ignore += ['config/application.rb',

Coverband allows an optional feature to track all view files that are used by an application.

To opt-in to this feature... enable the feature in your Coverband config.
This feature is enabled by default. To stop this feature, disable the feature in your Coverband config.

`config.track_views = true`
`config.track_views = false`

![image](https://raw.github.com/danmayer/coverband/master/docs/coverband_view_tracker.png)

Expand Down