Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Merge pull request #6 from fwininger/add_coverage
Browse files Browse the repository at this point in the history
Add coverage metrics
  • Loading branch information
fwininger committed Dec 5, 2017
2 parents 31d2f98 + 5ba86a7 commit e7a03ea
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@ doc/
pkg/
.
.idea
coverage
2 changes: 2 additions & 0 deletions Gemfile
@@ -1,2 +1,4 @@
source 'https://rubygems.org'
gemspec

gem 'coveralls', require: false
18 changes: 18 additions & 0 deletions Gemfile.lock
Expand Up @@ -9,7 +9,15 @@ GEM
remote: https://rubygems.org/
specs:
ast (2.3.0)
coveralls (0.8.21)
json (>= 1.8, < 3)
simplecov (~> 0.14.1)
term-ansicolor (~> 1.3)
thor (~> 0.19.4)
tins (~> 1.6)
diff-lcs (1.3)
docile (1.1.5)
json (2.1.0)
mini_portile2 (2.3.0)
nokogiri (1.8.1)
mini_portile2 (~> 2.3.0)
Expand Down Expand Up @@ -42,13 +50,23 @@ GEM
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.9.0)
rubygems-tasks (0.2.4)
simplecov (0.14.1)
docile (~> 1.1.0)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.2)
term-ansicolor (1.6.0)
tins (~> 1.0)
thor (0.19.4)
tins (1.16.0)
unicode-display_width (1.3.0)
yard (0.9.12)

PLATFORMS
ruby

DEPENDENCIES
coveralls
rspec (~> 3.7)
rubocop (~> 0.51)
ruby-nessus!
Expand Down
1 change: 1 addition & 0 deletions README.md
@@ -1,6 +1,7 @@
# Ruby-Nessus

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

## Description

Expand Down
3 changes: 3 additions & 0 deletions spec/spec_helper.rb
@@ -1,2 +1,5 @@
require 'rubygems'
require 'ruby-nessus'

require 'coveralls'
Coveralls.wear!

0 comments on commit e7a03ea

Please sign in to comment.