minitest-utils 0.6.0 → 0.6.2

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: 220b58299506fd3ec789a5dc73b982f295863e3cd67cf9c807c94e08dad82f3f
4
- data.tar.gz: fba7b309f9ee1c7b8f6ddc13bbbadc828b683c22d84ac2ad4c0c1ae9ff0a63e4
3
+ metadata.gz: 024d6a1258ae6965948fb0862e13894c53473be4baf1456654c5eb9cc63b1f18
4
+ data.tar.gz: ce95d624481c9164f5d6885633067d69df8d9dc1dc603c5d07cc56cc9072d61e
5
5
  SHA512:
6
- metadata.gz: 1c860200135f3ebbe01b8e6edc3ed77ea1ea2be5e03e73acee06396d916d6e09898eb98a6e1c0f6234a9b399acc192a56446655371182aef6b66199ee7154115
7
- data.tar.gz: c6899dfce5f2aa135aa385a4fae57ea31387d29a673dcfd8daf857d54eb4e9cdf014d684f3820c29e0fef81a7898a4ab04677d572c6640e56515a6bc39f5c01c
6
+ metadata.gz: 8a2af19a249e434607d3297be303c773446977509a6d8534966700e9316eef054af5dd4c6d7836fee9d72b20079770dfc65cc0ac302916e9a373b0ab3778682f
7
+ data.tar.gz: 61623224c5f752cf219ba8d87739d9a6878a4a42de54be01c1b5046bd183e69924693c8a9ba5fba198965e6948576f541c7dc1e161fed2eaafe1da948c678256
@@ -51,4 +51,5 @@ jobs:
51
51
  env:
52
52
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
53
53
  run: |
54
- exe/mt
54
+ bundle exec exe/mt
55
+ bundle exec rubocop
data/README.md CHANGED
@@ -148,6 +148,11 @@ starting with `#` are ignored.
148
148
  test/fixtures
149
149
  ```
150
150
 
151
+ > ![NOTE]
152
+ >
153
+ > This command is also available as the long form `minitest`, for linux users.
154
+ > Linux has a `mt` command for managing magnetic tapes.
155
+
151
156
  ## Screenshots
152
157
 
153
158
  ![](https://raw.githubusercontent.com/fnando/minitest-utils/main/screenshots/light-failing.png)
data/exe/minitest ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require_relative "../lib/minitest/utils/cli"
5
+ Minitest::Utils::CLI.loaded_via_bundle_exec = ENV.key?("BUNDLER_VERSION")
6
+ Minitest::Utils::CLI.new(ARGV.dup).start
@@ -38,6 +38,11 @@ module Minitest
38
38
  @color_enabled = io.respond_to?(:tty?) && io.tty?
39
39
  end
40
40
 
41
+ def start
42
+ super
43
+ io.puts "Run options: #{options[:args]}\n"
44
+ end
45
+
41
46
  def record(result)
42
47
  super
43
48
  print_result_code(result.result_code)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minitest
4
4
  module Utils
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -111,6 +111,7 @@ description: Some utilities for your Minitest day-to-day usage.
111
111
  email:
112
112
  - fnando.vieira@gmail.com
113
113
  executables:
114
+ - minitest
114
115
  - mt
115
116
  extensions: []
116
117
  extra_rdoc_files: []
@@ -126,6 +127,7 @@ files:
126
127
  - bin/console
127
128
  - bin/rake
128
129
  - bin/setup
130
+ - exe/minitest
129
131
  - exe/mt
130
132
  - lib/minitest/utils.rb
131
133
  - lib/minitest/utils/capybara/chrome_headless.rb