simplecov-markdown 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca464ea526ad147010d6d28ac244d0f6320ed432
4
- data.tar.gz: 39669c96b05fc0890a2315e7779a0148fc6a9460
3
+ metadata.gz: c43b68f083f79ee34180c3db37f585c7f8a4c15a
4
+ data.tar.gz: 411740b6c5cf60fdb7159e4bf5add03b15fc8c12
5
5
  SHA512:
6
- metadata.gz: ca2d615c435bce00362b656c8a39154a1a88357dd57eb482d6176ba0bd555adcf72b1cf6d11145cd54894cb6dd9a52083883854487cb162c8e8e890ec55834f0
7
- data.tar.gz: d661169acffbcee937a368eadd5ca810f679d8c11f177170e6eb87bd144a72e7180da6c0f8984a3ef93aa0afad610ed5875c4f29c2ebe261735b5016be43629a
6
+ metadata.gz: 735e4537d0d98b0aba9f4d77328be2edcd9e9401499664ffe98f03f547742525e01ce5ed8792407ef239ca94d48dd81e2938e75165289fd3446bfb9718a331d9
7
+ data.tar.gz: 8df76f6abe6b7160afb9d8b9fe3ea389760ffb40b47621434fc6dd67e359d32985e1bfd3a7b4794ba4e165d1df2aa44f9a116d8d81e6376b0fec433c40af5209
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simplecov-markdown (0.1.2)
4
+ simplecov-markdown (0.1.3)
5
5
  simplecov
6
6
 
7
7
  GEM
@@ -1,7 +1,7 @@
1
1
  module SimpleCov
2
2
  module Formatter
3
3
  class MarkdownFormatter
4
- VERSION = "0.1.2"
4
+ VERSION = "0.1.3"
5
5
  end
6
6
  end
7
7
  end
@@ -6,7 +6,7 @@ describe 'MarkdownFormatter' do
6
6
  include_context "uses temp dir"
7
7
 
8
8
  let(:formatter) do
9
- SimpleCov::Formatter::MarkdownFormatter.stub(:output_path).and_return(report_path)
9
+ allow(SimpleCov::Formatter::MarkdownFormatter).to receive(:output_path).and_return(report_path)
10
10
  SimpleCov::Formatter::MarkdownFormatter.new
11
11
  end
12
12
  let(:report_path) { File.join(temp_dir_path, 'report.md') }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noritaka Horio