rspec_tap_formatter 0.5.0 → 0.6.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: 601068ac2f555c6a5edb97a0d0f163903b8966863f2ecc65f1de7066bb993bad
4
- data.tar.gz: 6f96466b8b050b6cc96221008c615587b145c35d9477fedd8331b84cf19005b8
3
+ metadata.gz: 66365befe9f6dc809b2fcf22266061c0ea19801e134c171ef021e7aaeb2ffd85
4
+ data.tar.gz: cce57ce81f468ee88666ddd9c13fb569f764131d6af765b16a4a748ffcef3b98
5
5
  SHA512:
6
- metadata.gz: a0e50911ad068b005d75dfd94b4ac5721404e93c7f790d84e9463a1d31cd30b3c54563d253cd67c3599e10ee1a654f8372d24c34123152697dec6b1437d81b31
7
- data.tar.gz: 8ceb5d6996e3515584a73fbc2a7da920eb59607646bae8c8f2cb6baad5280ba1a202b0df4a2614cb10281e23f3a75ee602ca76a6c8dfd916aa885bbe4be39d67
6
+ metadata.gz: a96a0a27610aa245dd30ee59997dbf6d7d2a521277e9da449a7dd25770391b883e1959c2860e9898107a21898d0bfb20eed9c98062e5821ce0097366be4dc247
7
+ data.tar.gz: 2de3abc4aba8f2db7e01d3c603666d0513408a66bf500aa5aefaed5ef7b8c4c40d9966219f055b1f77f95c88d3fc128c22b190efcf7210e00b6b4df508a60090
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rspec_tap_formatter (0.5.0)
4
+ rspec_tap_formatter (0.6.0)
5
5
  rspec-core (~> 3.7.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # RspecTapFormatter
2
2
 
3
- This gem adds TAP output format to RSpec.
3
+ This gem adds TAP output format to RSpec, required for [Heroku CI](https://devcenter.heroku.com/articles/heroku-ci).
4
4
 
5
5
  ## License
6
6
 
@@ -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.5.0"
5
+ VERSION = "0.6.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 << "# #{failed_example_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.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gustavo Beathyate