Skip to content

Commit e928012

Browse files
author
Tom Lord
committed
Added simplecov-badge
1 parent 731732e commit e928012

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source 'https://rubygems.org'
22

33
gem 'rspec', group: :test
4-
gem 'simplecov', :require => false, :group => :test
4+
gem 'simplecov', require: false, group: :test
5+
gem 'simplecov-badge', require: false, group: :test
56
gem 'pry', group: :test
67

78
# Specify your gem's dependencies in regexp-examples.gemspec

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# regexp-examples
22
[![Gem Version](https://badge.fury.io/rb/regexp-examples.svg)](http://badge.fury.io/rb/regexp-examples)
3+
![Code Coverage](coverage/coverage-badge.png)
34

45
Extends the Regexp class with the method: Regexp#examples
56

spec/spec_helper.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
require 'simplecov'
2-
SimpleCov.start
2+
SimpleCov.start do
3+
require 'simplecov-badge'
4+
SimpleCov::Formatter::BadgeFormatter.strength_foreground = true
5+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
6+
SimpleCov::Formatter::HTMLFormatter,
7+
SimpleCov::Formatter::BadgeFormatter,
8+
]
9+
end
310

411
require './lib/regexp-examples.rb'
512
require 'pry'

0 commit comments

Comments
 (0)