File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
3
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
5
6
gem 'pry' , group : :test
6
7
7
8
# Specify your gem's dependencies in regexp-examples.gemspec
Original file line number Diff line number Diff line change 1
1
# regexp-examples
2
2
[ ![ Gem Version] ( https://badge.fury.io/rb/regexp-examples.svg )] ( http://badge.fury.io/rb/regexp-examples )
3
+ ![ Code Coverage] ( coverage/coverage-badge.png )
3
4
4
5
Extends the Regexp class with the method: Regexp#examples
5
6
Original file line number Diff line number Diff line change 1
1
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
3
10
4
11
require './lib/regexp-examples.rb'
5
12
require 'pry'
You can’t perform that action at this time.
0 commit comments