Skip to content

Commit

Permalink
Add Coveralls config
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfioravanti committed Mar 19, 2017
1 parent cc9893d commit 6067c23
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
service_name: travis-ci
7 changes: 6 additions & 1 deletion .simplecov
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ unless ENV["NO_COVERAGE"]
SimpleCov.minimum_coverage 100
end
if ENV["TRAVIS"]
require "coveralls"
require "codecov"
SimpleCov.formatter = SimpleCov::Formatter::Codecov
# SimpleCov.formatter = SimpleCov::Formatter::Codecov
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::Codecov,
Coveralls::SimpleCov::Formatter
]
end
end
26 changes: 26 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,18 @@ GEM
coderay (1.1.1)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
coveralls (0.7.1)
multi_json (~> 1.3)
rest-client
simplecov (>= 0.7)
term-ansicolor
thor
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.3)
docile (1.1.5)
domain_name (0.5.20170223)
unf (>= 0.0.5, < 1.0.0)
equalizer (0.0.11)
ffi (1.9.18)
formatador (0.2.5)
Expand All @@ -53,6 +61,8 @@ GEM
guard-rubocop (1.2.0)
guard (~> 2.0)
rubocop (~> 0.20)
http-cookie (1.0.3)
domain_name (~> 0.5)
i18n (0.8.1)
ice_nine (0.11.2)
json (2.0.3)
Expand All @@ -63,7 +73,12 @@ GEM
ruby_dep (~> 1.2)
lumberjack (1.0.11)
method_source (0.8.2)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
multi_json (1.12.1)
nenv (0.3.0)
netrc (0.11.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
Expand Down Expand Up @@ -92,6 +107,10 @@ GEM
codeclimate-engine-rb (~> 0.4.0)
parser (>= 2.3.1.2, < 2.5)
rainbow (~> 2.0)
rest-client (2.0.1)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
Expand Down Expand Up @@ -124,9 +143,15 @@ GEM
simplecov-html (~> 0.10.0)
simplecov-html (0.10.0)
slop (3.6.0)
term-ansicolor (1.4.0)
tins (~> 1.0)
thor (0.19.4)
thread_safe (0.3.6)
tins (1.13.2)
ttfunk (1.5.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.2)
unicode-display_width (1.1.3)
url (0.3.2)
virtus (1.0.5)
Expand All @@ -144,6 +169,7 @@ DEPENDENCIES
bundler-audit (~> 0.5)
codeclimate-test-reporter (~> 1.0)
codecov (~> 0.1)
coveralls (~> 0.7)
fuubar (~> 2.2.0)
guard-rspec (~> 4.6)
guard-rubocop (~> 1.2)
Expand Down
1 change: 1 addition & 0 deletions resume.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency "bundler-audit", "~> 0.5"
gem.add_development_dependency "codeclimate-test-reporter", "~> 1.0"
gem.add_development_dependency "codecov", "~> 0.1"
gem.add_development_dependency "coveralls", "~> 0.7"
gem.add_development_dependency "fuubar", "~> 2.2.0"
gem.add_development_dependency "guard-rspec", "~> 4.6"
gem.add_development_dependency "guard-rubocop", "~> 1.2"
Expand Down

0 comments on commit 6067c23

Please sign in to comment.