Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit 5ba86a7

Browse files
committed
Add coverage metrics
Signed-off-by: Florian Wininger <[email protected]>
1 parent 31d2f98 commit 5ba86a7

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ doc/
22
pkg/
33
.
44
.idea
5+
coverage

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
source 'https://rubygems.org'
22
gemspec
3+
4+
gem 'coveralls', require: false

Gemfile.lock

+18
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@ GEM
99
remote: https://rubygems.org/
1010
specs:
1111
ast (2.3.0)
12+
coveralls (0.8.21)
13+
json (>= 1.8, < 3)
14+
simplecov (~> 0.14.1)
15+
term-ansicolor (~> 1.3)
16+
thor (~> 0.19.4)
17+
tins (~> 1.6)
1218
diff-lcs (1.3)
19+
docile (1.1.5)
20+
json (2.1.0)
1321
mini_portile2 (2.3.0)
1422
nokogiri (1.8.1)
1523
mini_portile2 (~> 2.3.0)
@@ -42,13 +50,23 @@ GEM
4250
unicode-display_width (~> 1.0, >= 1.0.1)
4351
ruby-progressbar (1.9.0)
4452
rubygems-tasks (0.2.4)
53+
simplecov (0.14.1)
54+
docile (~> 1.1.0)
55+
json (>= 1.8, < 3)
56+
simplecov-html (~> 0.10.0)
57+
simplecov-html (0.10.2)
58+
term-ansicolor (1.6.0)
59+
tins (~> 1.0)
60+
thor (0.19.4)
61+
tins (1.16.0)
4562
unicode-display_width (1.3.0)
4663
yard (0.9.12)
4764

4865
PLATFORMS
4966
ruby
5067

5168
DEPENDENCIES
69+
coveralls
5270
rspec (~> 3.7)
5371
rubocop (~> 0.51)
5472
ruby-nessus!

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Ruby-Nessus
22

33
[![Build Status](https://travis-ci.org/Cyberwatch/ruby-nessus.svg?branch=master)](https://travis-ci.org/Cyberwatch/ruby-nessus)
4+
[![Coverage Status](https://coveralls.io/repos/github/Cyberwatch/ruby-nessus/badge.svg?branch=master)](https://coveralls.io/github/Cyberwatch/ruby-nessus?branch=master)
45

56
## Description
67

spec/spec_helper.rb

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
require 'rubygems'
22
require 'ruby-nessus'
3+
4+
require 'coveralls'
5+
Coveralls.wear!

0 commit comments

Comments
 (0)