rspec_tap_formatter 0.6.0 → 0.7.0

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
  SHA256:
3
- metadata.gz: 66365befe9f6dc809b2fcf22266061c0ea19801e134c171ef021e7aaeb2ffd85
4
- data.tar.gz: cce57ce81f468ee88666ddd9c13fb569f764131d6af765b16a4a748ffcef3b98
3
+ metadata.gz: 9a213d8698eb309301832758d2fb4d5f65ec0399adc67629ceb562fec278df51
4
+ data.tar.gz: 023ff787f3dbab52c351e5f7211cf1d059d86ce934f4fa284bcda296c5e2ce94
5
5
  SHA512:
6
- metadata.gz: a96a0a27610aa245dd30ee59997dbf6d7d2a521277e9da449a7dd25770391b883e1959c2860e9898107a21898d0bfb20eed9c98062e5821ce0097366be4dc247
7
- data.tar.gz: 2de3abc4aba8f2db7e01d3c603666d0513408a66bf500aa5aefaed5ef7b8c4c40d9966219f055b1f77f95c88d3fc128c22b190efcf7210e00b6b4df508a60090
6
+ metadata.gz: 5ff4eae82e7b8718b8de6ff9c3398c0dbed63a8a4a1af3c086edde43ddac72df33e65608b58b0fd2f024559639a941b537cc331d3299b2a586c1925fc2a49d68
7
+ data.tar.gz: 5044d25aab8779c14d2014ce97f2b68a627740260f91b76e22e63827a040979f447da04a3bda2890bfa2af170ca8130c043bce6c71d4c59f542212647fe039af
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec_tap_formatter (0.6.0)
4
+ rspec_tap_formatter (0.7.0)
5
5
  rspec-core (~> 3.7.1)
6
6
 
7
7
  GEM
@@ -2,7 +2,7 @@ require "rspec/core"
2
2
  require "rspec/core/formatters/base_formatter"
3
3
 
4
4
  class RspecTapFormatter < RSpec::Core::Formatters::BaseFormatter
5
- VERSION = "0.6.0"
5
+ VERSION = "0.7.0"
6
6
  # Specification found: https://testanything.org/tap-version-13-specification.html
7
7
  #
8
8
  # This registers the notifications this formatter supports, and tells
@@ -29,6 +29,6 @@ class RspecTapFormatter < RSpec::Core::Formatters::BaseFormatter
29
29
 
30
30
  def example_failed(notification)
31
31
  @output << "not ok #{@count} #{notification.example.description}\n"
32
- @output << "# #{notification.message_lines.join('\n# ')}\n"
32
+ @output << "# #{notification.message_lines.join("\n# ")}\n"
33
33
  end
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_tap_formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gustavo Beathyate