rspec-github-actions-formatter 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 781da4bb8f3efbc09d80174d5ac3e3e84233750370ac609dca294bdac9adad5d
4
- data.tar.gz: ba58cf117e2f896d6426fe66cbefc25ef9aa895a55266f564ce85c5ccb3bace9
3
+ metadata.gz: e4bc612cad9044378f2505046f48730493eee7a16b46b209270bd782dda51f85
4
+ data.tar.gz: d0bba56acadf67070397054de67adff64109eed3cf5a08e8f7ca3d88b83a5939
5
5
  SHA512:
6
- metadata.gz: e79067ab9c853f93a22c6f9f89dced12c7859d5ce85d30cb1def8017b0c290f93e85fb1aca5f4363aa8109122e86285690ae3d2d64acb9460922c59f2931a68a
7
- data.tar.gz: a9f774943edd415a01192cd19d43aa01a1f0158fe24fe1bec61a860eb3d5cf937a8cec1913c3798e0375bc0b36f3626cd7fc8d58039165e47467061677b2cb88
6
+ metadata.gz: e54fc9993cf8e2f2b7607aff34b471745374adf349b3ff1702d86e834f9fab3ebdc234ef5a4fef77c337d66e3ac6f1f4cafeb9eb7c1f0c0995b66c3fc3aaaaeb
7
+ data.tar.gz: aa3cf6016f2179e9257254090cc1ad37ba3f90e9450d90fb4a42040206f7c68341cbcd6118f1c15541e7b26a45e42643d8f698aa53092c90709c580d26934822
@@ -1,7 +1,7 @@
1
1
  require "rspec/core/formatters/progress_formatter"
2
2
 
3
3
  class RspecGithubActionsFormatter < RSpec::Core::Formatters::ProgressFormatter
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
 
6
6
  RSpec::Core::Formatters.register self, :dump_pending, :dump_failures, :example_passed, :example_pending, :example_failed, :example_started, :start
7
7
 
@@ -54,6 +54,7 @@ class RspecGithubActionsFormatter < RSpec::Core::Formatters::ProgressFormatter
54
54
  def split_progress_into_lines(_notification)
55
55
  if @examples_executed % @tests_per_line == 0 || @examples_executed == @example_count
56
56
  output.print progress_display(@examples_executed, @example_count)
57
+ output.print "\n"
57
58
  end
58
59
  end
59
60
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "rspec-github-actions-formatter"
3
- spec.version = "0.1.0"
3
+ spec.version = "0.1.1"
4
4
  spec.authors = ["Steve Hill"]
5
5
  spec.email = ["steve@stevehill.xyz"]
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-github-actions-formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Hill