Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Unreleased ([changes](https://github.com/colszowka/simplecov/compare/v0.7.0...master))
-------------------

* Remove default addition of 'vendor/plugins' group when using 'rails' adapter.
* [FEATURE] Adds support for Rails 4 command guessing.

v0.7.1, 2012-10-12 ([changes](https://github.com/colszowka/simplecov/compare/v0.7.0...v0.7.1))
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ is being set in the SimpleCov::Filter initialize method and thus is set to 5 in
## Groups

You can separate your source files into groups. For example, in a rails app, you'll want to have separate listings for
Models, Controllers, Helpers, Libs and Plugins. Group definition works similar to Filters (and indeed also accepts custom
Models, Controllers, Helpers, and Libs. Group definition works similar to Filters (and indeed also accepts custom
filter classes), but source files end up in a group when the filter passes (returns true), as opposed to filtering results,
which exclude files from results when the filter results in a true value.

Expand Down Expand Up @@ -406,7 +406,6 @@ SimpleCov.adapters.define 'rails' do
add_group 'Models', 'app/models'
add_group 'Helpers', 'app/helpers'
add_group 'Libraries', 'lib'
add_group 'Plugins', 'vendor/plugins'
end
```

Expand Down
1 change: 0 additions & 1 deletion lib/simplecov/defaults.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
add_group 'Mailers', 'app/mailers'
add_group 'Helpers', 'app/helpers'
add_group 'Libraries', 'lib'
add_group 'Plugins', 'vendor/plugins'
end

# Default configuration
Expand Down