mirror of
https://github.com/publiclab/mapknitter.git
synced 2025-12-05 16:00:00 +01:00
* Bump rubocop-shopify from 2.0.1 to 2.8.0 Bumps [rubocop-shopify](https://github.com/Shopify/ruby-style-guide) from 2.0.1 to 2.8.0. - [Release notes](https://github.com/Shopify/ruby-style-guide/releases) - [Commits](https://github.com/Shopify/ruby-style-guide/compare/v2.0.1...v2.8.0) --- updated-dependencies: - dependency-name: rubocop-shopify dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Create .simplecov Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeffrey Warren <jeff@unterbahn.com>
15 lines
345 B
Ruby
15 lines
345 B
Ruby
SimpleCov.start('rails') do
|
|
add_group 'Units', 'app/models'
|
|
add_group 'Functionals', 'app/controllers'
|
|
add_group 'Services', 'app/services'
|
|
add_group 'Libraries', 'lib/'
|
|
|
|
add_filter '/test/'
|
|
add_filter '/config/'
|
|
add_filter '/db/'
|
|
add_filter '/vendor/'
|
|
add_filter '/log/'
|
|
add_filter '/tmp/'
|
|
add_filter '/node_modules/'
|
|
end
|