From 47f08978d26975fa58bedd9104e36740bff031fa Mon Sep 17 00:00:00 2001 From: Mattia Roccoberton Date: Tue, 21 Jan 2020 16:28:10 +0100 Subject: [PATCH] Add blogpost reference in README and update the minor version --- README.md | 2 ++ lib/reverse_coverage/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 81fa6ab..886d0c7 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ The goal of this component is to find what RSpec examples "cover" one or more li This is useful for example when you override methods of a parent product and you want to check what/how the specs treat the original lines. +Blog post introduction: [https://nebulab.it/blog/reverse-coverage/](https://nebulab.it/blog/reverse-coverage/) + ## Installation Add `gem 'reverse_coverage'` to your application's Gemfile and execute `bundle`. diff --git a/lib/reverse_coverage/version.rb b/lib/reverse_coverage/version.rb index e9d5f18..d30749c 100644 --- a/lib/reverse_coverage/version.rb +++ b/lib/reverse_coverage/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ReverseCoverage - VERSION = '0.1.0'.freeze + VERSION = '0.1.1'.freeze end