geordi 6.0.0.pre.rc1 → 6.0.0

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: eee4c378b0fe08b20405c74876813d2e23eda1e09c92dae4a19146af9f414a2d
4
- data.tar.gz: 48bfb8c877fedf002b46aa1f09ea7dde284c9b1358f1c8f1f9c39a0bc3381c03
3
+ metadata.gz: 972d947bfb273cec9f5bb3a586ab1ead5021b63466b4322a42b047947c846c45
4
+ data.tar.gz: fd796ff8f25567d340e24012929ffda3a54eafba1f3b98c718ccdfab4c7b213b
5
5
  SHA512:
6
- metadata.gz: e24c228acd4170e540b76accc1708bf7df44f3650052c200abfdb2f297770e7660f017a176bd0edbc74202d08c1c4df9d3c05289d91c06501ebcb7f32d28839f
7
- data.tar.gz: e817b989c4254f3482a888418fef3ca57f493901cce611ab970faaaf8db6ff259ea67f7417ffb6b964bb6f1063e926afe0503ace94c1ce497e9c92c494c41ec0
6
+ metadata.gz: 889947c5d0139c9cc1fe4b7cc95ae7b08e83a0966696fce6e800db777c214544a6b8879b478e2999073c863405ff8e98a33c15ec4ad5ac73c92ab35f6084d1ae
7
+ data.tar.gz: c2771b0ca090e9d68557a6f8e9e1539a7b573f78caa7f66e6bdecc441710a4617fe390735a8f0b97304d10b5583d85b63dec13e7a0d74df421d41820262cd604
data/README.md CHANGED
@@ -90,19 +90,15 @@ Run Cucumber features.
90
90
 
91
91
  Example: `geordi cucumber features/authentication_feature:3`
92
92
 
93
- Runs Cucumber with `bundle exec`, using parallel tests and with support for re-running
94
- failed scenarios.
93
+ Runs Cucumber with `bundle exec`, using parallel tests and with support for
94
+ re-running failed scenarios.
95
95
 
96
- - *Debugging:* In some cases, the dot-printing Cucumber formatter swallows
97
- errors. In case a feature fails without an error message, try running it with
98
- `--debug` or `-d`.
96
+ Any unknown option will be passed through to Cucumber, e.g. `--format=pretty`.
97
+ Make sure to connect option and value with an equals sign, i.e. have each option
98
+ a contiguous string.
99
99
 
100
- - *Options:* Any unknown option will be passed through to Cucumber,
101
- e.g. `--format=pretty`. Make sure to connect option and value with an equals
102
- sign, i.e. have each option a contiguous string.
103
-
104
- - In order to limit processes in a parallel run, you can set an environment
105
- variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
100
+ In order to limit processes in a parallel run, you can set an environment
101
+ variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
106
102
 
107
103
  **Options**
108
104
  - `-m, [--modified], [--no-modified]`: Run all modified features
data/geordi.gemspec CHANGED
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
26
26
  spec.add_runtime_dependency 'thor', '~> 1'
27
27
 
28
28
  spec.post_install_message = <<-ATTENTION
29
- Support for sequential running of integration tests tagged with @solo has been dropped.
29
+ Support for sequential running of integration tests tagged with @solo has been dropped.
30
30
  ATTENTION
31
31
  end
@@ -2,19 +2,15 @@ desc 'cucumber [FILES and OPTIONS]', 'Run Cucumber features'
2
2
  long_desc <<-LONGDESC
3
3
  Example: `geordi cucumber features/authentication_feature:3`
4
4
 
5
- Runs Cucumber with `bundle exec`, using parallel tests and with support for re-running
6
- failed scenarios.
5
+ Runs Cucumber with `bundle exec`, using parallel tests and with support for
6
+ re-running failed scenarios.
7
7
 
8
- - *Debugging:* In some cases, the dot-printing Cucumber formatter swallows
9
- errors. In case a feature fails without an error message, try running it with
10
- `--debug` or `-d`.
8
+ Any unknown option will be passed through to Cucumber, e.g. `--format=pretty`.
9
+ Make sure to connect option and value with an equals sign, i.e. have each option
10
+ a contiguous string.
11
11
 
12
- - *Options:* Any unknown option will be passed through to Cucumber,
13
- e.g. `--format=pretty`. Make sure to connect option and value with an equals
14
- sign, i.e. have each option a contiguous string.
15
-
16
- - In order to limit processes in a parallel run, you can set an environment
17
- variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
12
+ In order to limit processes in a parallel run, you can set an environment
13
+ variable like this: `PARALLEL_TEST_PROCESSORS=6 geordi cucumber`
18
14
  LONGDESC
19
15
 
20
16
  option :modified, aliases: '-m', type: :boolean,
@@ -1,3 +1,3 @@
1
1
  module Geordi
2
- VERSION = '6.0.0-rc1'.freeze
2
+ VERSION = '6.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geordi
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.pre.rc1
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-20 00:00:00.000000000 Z
11
+ date: 2021-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -99,8 +99,10 @@ homepage: https://makandra.com
99
99
  licenses:
100
100
  - MIT
101
101
  metadata: {}
102
- post_install_message: " Support for sequential running of integration tests tagged
103
- with @solo has been dropped.\n"
102
+ post_install_message: 'Support for sequential running of integration tests tagged
103
+ with @solo has been dropped.
104
+
105
+ '
104
106
  rdoc_options: []
105
107
  require_paths:
106
108
  - lib
@@ -111,9 +113,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
111
113
  version: 2.2.0
112
114
  required_rubygems_version: !ruby/object:Gem::Requirement
113
115
  requirements:
114
- - - ">"
116
+ - - ">="
115
117
  - !ruby/object:Gem::Version
116
- version: 1.3.1
118
+ version: '0'
117
119
  requirements: []
118
120
  rubygems_version: 3.0.3
119
121
  signing_key: