Skip to content

Commit

Permalink
adds the SimpleCov gem to the project (#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielRMuller authored and armahillo committed Jun 9, 2019
1 parent dda6743 commit fb907d9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -58,3 +58,6 @@ yarn-debug.log*

# Ignore master key for decrypting credentials and more.
/config/master.key

# Ignore SimpleCov assets
coverage
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -87,6 +87,7 @@ group :test do
gem "launchy"
gem 'webdrivers', '~> 3.0'
gem "rails-controller-testing"
gem 'simplecov'
gem "webmock", "~> 3.5"
end

Expand Down
8 changes: 8 additions & 0 deletions Gemfile.lock
Expand Up @@ -143,6 +143,7 @@ GEM
actionmailer (>= 4.1.0)
devise (>= 4.0.0)
diff-lcs (1.3)
docile (1.3.1)
dotenv (2.5.0)
dotenv-rails (2.5.0)
dotenv (= 2.5.0)
Expand Down Expand Up @@ -211,6 +212,7 @@ GEM
thor (>= 0.14, < 2.0)
jquery-ui-rails (6.0.1)
railties (>= 3.2.16)
json (2.2.0)
launchy (2.4.3)
addressable (~> 2.3)
libv8 (3.16.14.19)
Expand Down Expand Up @@ -398,6 +400,11 @@ GEM
simple_form (4.1.0)
actionpack (>= 5.0)
activemodel (>= 5.0)
simplecov (0.16.1)
docile (~> 1.1)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
skylight (3.1.2)
skylight-core (= 3.1.2)
skylight-core (3.1.2)
Expand Down Expand Up @@ -528,6 +535,7 @@ DEPENDENCIES
sass-rails
sidekiq
simple_form
simplecov
skylight
spring
spring-watcher-listen
Expand Down
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
Expand Up @@ -16,6 +16,9 @@
# users commonly want.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
require 'simplecov'
SimpleCov.start 'rails'

RSpec.configure do |config|
# rspec-expectations config goes here. You can use an alternate
# assertion/expectation library such as wrong or the stdlib/minitest
Expand Down

0 comments on commit fb907d9

Please sign in to comment.