This repository was archived by the owner on May 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11# Ruby bindings for MusicBrainz libdiscid
22[ ![ Gem Version] ( https://badge.fury.io/rb/discid.svg )] ( http://badge.fury.io/rb/discid )
3- [ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/50e356f4260a127af75b/maintainability )] ( https://codeclimate.com/github/phw/ruby-discid/maintainability )
4- [ ![ Test Coverage] ( https://api.codeclimate.com/v1/badges/50e356f4260a127af75b/test_coverage )] ( https://codeclimate.com/github/phw/ruby-discid/test_coverage )
3+ [ ![ Test Coverage] ( https://phw.srht.site/ruby-discid/coverage/coverage_badge_total.svg )] ( https://phw.srht.site/ruby-discid/coverage/ )
54
65## About
76ruby-discid provides Ruby bindings for the MusicBrainz DiscID library [ libdiscid] ( http://musicbrainz.org/doc/libdiscid ) .
Original file line number Diff line number Diff line change @@ -36,5 +36,6 @@ Gem::Specification.new do |spec|
3636 if ( RUBY_VERSION . split ( '.' ) . map { |s |s . to_i } <=> [ 2 , 4 , 0 ] ) >= 0
3737 spec . add_development_dependency "simplecov"
3838 spec . add_development_dependency "simplecov_json_formatter"
39+ spec . add_development_dependency "simplecov-small-badge"
3940 end
4041end
Original file line number Diff line number Diff line change 1616begin
1717 require 'simplecov'
1818 require "simplecov_json_formatter"
19+ require 'simplecov_small_badge'
1920
2021 SimpleCov . formatter = SimpleCov ::Formatter ::MultiFormatter . new ( [
2122 SimpleCov ::Formatter ::JSONFormatter ,
22- SimpleCov ::Formatter ::HTMLFormatter
23+ SimpleCov ::Formatter ::HTMLFormatter ,
24+ SimpleCovSmallBadge ::Formatter
2325 ] )
2426 SimpleCov . start do
2527 add_filter "/test/"
You can’t perform that action at this time.
0 commit comments