Skip to content

Commit

Permalink
Merge pull request nebulab#23 from nebulab/mr/minor-gem-improvements
Browse files Browse the repository at this point in the history
v0.1.1
  • Loading branch information
Mattia Roccoberton committed Jan 21, 2020
2 parents bc2acb5 + 47f0897 commit df4ca35
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 46 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion lib/reverse_coverage/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ReverseCoverage
VERSION = '0.1.0'.freeze
VERSION = '0.1.1'.freeze
end
5 changes: 2 additions & 3 deletions reverse_coverage.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ require 'reverse_coverage/version'
Gem::Specification.new do |spec|
spec.name = 'reverse_coverage'
spec.version = ReverseCoverage::VERSION
spec.summary = 'Reverse coverage'
spec.description = 'Statistics on specs coverage'
spec.summary = 'A tool to find what specs examples cover a specific line of code'
spec.description = spec.summary
spec.license = 'MIT'
spec.authors = ['Daniele Palombo', 'Mattia Roccoberton']
spec.email = ['danielepalombo@nebulab.it', 'mattiaroccoberton@nebulab.it']
Expand All @@ -25,7 +25,6 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'rspec', '~> 3.8'

spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'pry', '~> 0.12.2'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.67.2'
Expand Down
41 changes: 0 additions & 41 deletions spec/reverse_coverage/main_spec.rb

This file was deleted.

1 change: 0 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

require 'bundler/setup'
require 'reverse_coverage'
require 'pry'

RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
Expand Down

0 comments on commit df4ca35

Please sign in to comment.