cucumber_priority 0.3.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github/workflows/test.yml +71 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +22 -0
- data/Gemfile +1 -0
- data/Gemfile.cucumber-1.3 +13 -0
- data/Gemfile.cucumber-1.3.lock +49 -0
- data/Gemfile.cucumber-2.4 +13 -0
- data/Gemfile.cucumber-2.4.lock +61 -0
- data/Gemfile.cucumber-3.0 +13 -0
- data/Gemfile.cucumber-3.0.lock +67 -0
- data/Gemfile.cucumber-3.1 +13 -0
- data/Gemfile.cucumber-3.1.lock +67 -0
- data/Gemfile.cucumber-4.1 +13 -0
- data/Gemfile.cucumber-4.1.lock +106 -0
- data/Gemfile.cucumber-5.3 +19 -0
- data/Gemfile.cucumber-5.3.lock +114 -0
- data/Gemfile.cucumber-6.1 +19 -0
- data/Gemfile.cucumber-6.1.lock +150 -0
- data/Gemfile.cucumber-9.2 +20 -0
- data/Gemfile.cucumber-9.2.lock +108 -0
- data/Gemfile.lock +1 -0
- data/README.md +16 -5
- data/cucumber_priority.gemspec +20 -14
- data/lib/cucumber_priority/version.rb +1 -1
- metadata +34 -21
- data/.travis.yml +0 -41
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -61
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2d0ccd23439414839f0781fe73dee4110d3af957d5ec9be502b9c36e171b8bdd
|
4
|
+
data.tar.gz: 14961ec8fe24dce8349c4fa7c0b8be101e7a56a9c6deee17793165c33de65205
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7c750937c20bbf8e97ee434a8a8ee417a4e21a00f33e82aa967fcf2de8baef3c61a3d348967440eb75d11fdb0a5800780654cdc3dcca34e25f207985eb471c3d
|
7
|
+
data.tar.gz: 7640ea34cb4d0b16c239793ed07684c37b881a991414b835f05b36aeecfa15c1f03c992874b262b0a203c7952c3c958bb5131ee738bbbeee0e41945c3d21b1df
|
@@ -0,0 +1,71 @@
|
|
1
|
+
---
|
2
|
+
name: Tests
|
3
|
+
'on':
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
branches:
|
9
|
+
- master
|
10
|
+
jobs:
|
11
|
+
test:
|
12
|
+
runs-on: ubuntu-20.04
|
13
|
+
strategy:
|
14
|
+
fail-fast: false
|
15
|
+
matrix:
|
16
|
+
include:
|
17
|
+
- ruby: 2.5.3
|
18
|
+
gemfile: Gemfile.cucumber-2.4
|
19
|
+
bundler: 2.3.27
|
20
|
+
- ruby: 2.5.3
|
21
|
+
gemfile: Gemfile.cucumber-3.0
|
22
|
+
bundler: 2.3.27
|
23
|
+
- ruby: 2.5.3
|
24
|
+
gemfile: Gemfile.cucumber-3.1
|
25
|
+
bundler: 2.3.27
|
26
|
+
|
27
|
+
- ruby: 2.6.6
|
28
|
+
gemfile: Gemfile.cucumber-4.1
|
29
|
+
bundler: 2.3.27
|
30
|
+
- ruby: 2.6.6
|
31
|
+
gemfile: Gemfile.cucumber-5.3
|
32
|
+
bundler: 2.3.27
|
33
|
+
|
34
|
+
- ruby: 2.7.2
|
35
|
+
gemfile: Gemfile.cucumber-4.1
|
36
|
+
bundler: 2.3.27
|
37
|
+
- ruby: 2.7.2
|
38
|
+
gemfile: Gemfile.cucumber-5.3
|
39
|
+
bundler: 2.3.27
|
40
|
+
|
41
|
+
- ruby: 3.2.0
|
42
|
+
gemfile: Gemfile.cucumber-4.1
|
43
|
+
bundler: 2.5.23
|
44
|
+
- ruby: 3.2.0
|
45
|
+
gemfile: Gemfile.cucumber-5.3
|
46
|
+
bundler: 2.5.23
|
47
|
+
|
48
|
+
- ruby: 3.3.6
|
49
|
+
gemfile: Gemfile.cucumber-4.1
|
50
|
+
bundler: 2.5.23
|
51
|
+
- ruby: 3.3.6
|
52
|
+
gemfile: Gemfile.cucumber-5.3
|
53
|
+
bundler: 2.5.23
|
54
|
+
|
55
|
+
- ruby: 3.4.1
|
56
|
+
gemfile: Gemfile.cucumber-9.2
|
57
|
+
bundler: 2.6.3
|
58
|
+
env:
|
59
|
+
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
60
|
+
steps:
|
61
|
+
- uses: actions/checkout@v2
|
62
|
+
- name: Install ruby
|
63
|
+
uses: ruby/setup-ruby@v1
|
64
|
+
with:
|
65
|
+
ruby-version: "${{ matrix.ruby }}"
|
66
|
+
- name: Bundle
|
67
|
+
run: |
|
68
|
+
gem install bundler:${{ matrix.bundler }}
|
69
|
+
bundle _${{ matrix.bundler }}_ install --no-deployment
|
70
|
+
- name: Run tests
|
71
|
+
run: bundle _${{ matrix.bundler }}_ exec rake current_rspec
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
3.2.0
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
6
|
+
|
7
|
+
|
8
|
+
## Unreleased
|
9
|
+
|
10
|
+
### Breaking changes
|
11
|
+
|
12
|
+
-
|
13
|
+
|
14
|
+
### Compatible changes
|
15
|
+
-
|
16
|
+
|
17
|
+
## 1.0.0 - 2025-01-20
|
18
|
+
|
19
|
+
### Compatible changes
|
20
|
+
|
21
|
+
- Add Support for Ruby 3.4
|
22
|
+
NOTE: Ruby 3.4 requires [Cucumber >= 9.2.1](https://github.com/cucumber/cucumber-ruby/blob/v9.2.1/CHANGELOG.md#921---2025-01-07)
|
data/Gemfile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Gemfile.cucumber-2.4
|
@@ -0,0 +1,13 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'cucumber', '~> 1.3.20'
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
gem 'rspec', '~> 1.0'
|
8
|
+
gem 'gemika', '>= 0.8.1'
|
9
|
+
gem 'rake', '=10.0.4'
|
10
|
+
gem 'aruba', '<0.7'
|
11
|
+
|
12
|
+
# Gem under test
|
13
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,49 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aruba (0.6.2)
|
11
|
+
childprocess (>= 0.3.6)
|
12
|
+
cucumber (>= 1.1.1)
|
13
|
+
rspec-expectations (>= 2.7.0)
|
14
|
+
builder (3.2.3)
|
15
|
+
childprocess (0.9.0)
|
16
|
+
ffi (~> 1.0, >= 1.0.11)
|
17
|
+
cucumber (1.3.20)
|
18
|
+
builder (>= 2.1.2)
|
19
|
+
diff-lcs (>= 1.1.3)
|
20
|
+
gherkin (~> 2.12)
|
21
|
+
multi_json (>= 1.7.5, < 2.0)
|
22
|
+
multi_test (>= 0.1.2)
|
23
|
+
diff-lcs (1.3)
|
24
|
+
ffi (1.9.18)
|
25
|
+
gemika (0.8.2)
|
26
|
+
gherkin (2.12.2)
|
27
|
+
multi_json (~> 1.3)
|
28
|
+
multi_json (1.13.1)
|
29
|
+
multi_test (0.1.2)
|
30
|
+
rake (10.0.4)
|
31
|
+
rspec (1.3.2)
|
32
|
+
rspec-expectations (3.7.0)
|
33
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
34
|
+
rspec-support (~> 3.7.0)
|
35
|
+
rspec-support (3.7.1)
|
36
|
+
|
37
|
+
PLATFORMS
|
38
|
+
ruby
|
39
|
+
|
40
|
+
DEPENDENCIES
|
41
|
+
aruba (< 0.7)
|
42
|
+
cucumber (~> 1.3.20)
|
43
|
+
cucumber_priority!
|
44
|
+
gemika (>= 0.8.1)
|
45
|
+
rake (= 10.0.4)
|
46
|
+
rspec (~> 1.0)
|
47
|
+
|
48
|
+
BUNDLED WITH
|
49
|
+
2.3.27
|
@@ -0,0 +1,13 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'cucumber', '~> 2.4.0'
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
gem 'rspec', '~> 3.0'
|
8
|
+
gem 'gemika', '>= 0.8.1'
|
9
|
+
gem 'rake'
|
10
|
+
gem 'aruba', '<0.7'
|
11
|
+
|
12
|
+
# Gem under test
|
13
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,61 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aruba (0.6.2)
|
11
|
+
childprocess (>= 0.3.6)
|
12
|
+
cucumber (>= 1.1.1)
|
13
|
+
rspec-expectations (>= 2.7.0)
|
14
|
+
builder (3.3.0)
|
15
|
+
childprocess (5.1.0)
|
16
|
+
logger (~> 1.5)
|
17
|
+
cucumber (2.4.0)
|
18
|
+
builder (>= 2.1.2)
|
19
|
+
cucumber-core (~> 1.5.0)
|
20
|
+
cucumber-wire (~> 0.0.1)
|
21
|
+
diff-lcs (>= 1.1.3)
|
22
|
+
gherkin (~> 4.0)
|
23
|
+
multi_json (>= 1.7.5, < 2.0)
|
24
|
+
multi_test (>= 0.1.2)
|
25
|
+
cucumber-core (1.5.0)
|
26
|
+
gherkin (~> 4.0)
|
27
|
+
cucumber-wire (0.0.1)
|
28
|
+
diff-lcs (1.5.1)
|
29
|
+
gemika (0.8.4)
|
30
|
+
gherkin (4.1.3)
|
31
|
+
logger (1.6.5)
|
32
|
+
multi_json (1.15.0)
|
33
|
+
multi_test (1.1.0)
|
34
|
+
rake (13.2.1)
|
35
|
+
rspec (3.13.0)
|
36
|
+
rspec-core (~> 3.13.0)
|
37
|
+
rspec-expectations (~> 3.13.0)
|
38
|
+
rspec-mocks (~> 3.13.0)
|
39
|
+
rspec-core (3.13.2)
|
40
|
+
rspec-support (~> 3.13.0)
|
41
|
+
rspec-expectations (3.13.3)
|
42
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
+
rspec-support (~> 3.13.0)
|
44
|
+
rspec-mocks (3.13.2)
|
45
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
46
|
+
rspec-support (~> 3.13.0)
|
47
|
+
rspec-support (3.13.2)
|
48
|
+
|
49
|
+
PLATFORMS
|
50
|
+
ruby
|
51
|
+
|
52
|
+
DEPENDENCIES
|
53
|
+
aruba (< 0.7)
|
54
|
+
cucumber (~> 2.4.0)
|
55
|
+
cucumber_priority!
|
56
|
+
gemika (>= 0.8.1)
|
57
|
+
rake
|
58
|
+
rspec (~> 3.0)
|
59
|
+
|
60
|
+
BUNDLED WITH
|
61
|
+
2.3.27
|
@@ -0,0 +1,13 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'cucumber', '~> 3.0.0'
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
gem 'rspec', '~> 3.0'
|
8
|
+
gem 'gemika', '>= 0.8.1'
|
9
|
+
gem 'rake'
|
10
|
+
gem 'aruba', '<0.7'
|
11
|
+
|
12
|
+
# Gem under test
|
13
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,67 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aruba (0.6.2)
|
11
|
+
childprocess (>= 0.3.6)
|
12
|
+
cucumber (>= 1.1.1)
|
13
|
+
rspec-expectations (>= 2.7.0)
|
14
|
+
backports (3.11.1)
|
15
|
+
builder (3.2.3)
|
16
|
+
childprocess (0.9.0)
|
17
|
+
ffi (~> 1.0, >= 1.0.11)
|
18
|
+
cucumber (3.0.2)
|
19
|
+
builder (>= 2.1.2)
|
20
|
+
cucumber-core (~> 3.0.0)
|
21
|
+
cucumber-expressions (~> 4.0.3)
|
22
|
+
cucumber-wire (~> 0.0.1)
|
23
|
+
diff-lcs (~> 1.3)
|
24
|
+
gherkin (~> 4.0)
|
25
|
+
multi_json (>= 1.7.5, < 2.0)
|
26
|
+
multi_test (>= 0.1.2)
|
27
|
+
cucumber-core (3.0.0)
|
28
|
+
backports (>= 3.8.0)
|
29
|
+
cucumber-tag_expressions (>= 1.0.1)
|
30
|
+
gherkin (>= 4.1.3)
|
31
|
+
cucumber-expressions (4.0.4)
|
32
|
+
cucumber-tag_expressions (1.1.1)
|
33
|
+
cucumber-wire (0.0.1)
|
34
|
+
diff-lcs (1.3)
|
35
|
+
ffi (1.9.23)
|
36
|
+
gemika (0.8.2)
|
37
|
+
gherkin (4.1.3)
|
38
|
+
multi_json (1.13.1)
|
39
|
+
multi_test (0.1.2)
|
40
|
+
rake (13.1.0)
|
41
|
+
rspec (3.5.0)
|
42
|
+
rspec-core (~> 3.5.0)
|
43
|
+
rspec-expectations (~> 3.5.0)
|
44
|
+
rspec-mocks (~> 3.5.0)
|
45
|
+
rspec-core (3.5.4)
|
46
|
+
rspec-support (~> 3.5.0)
|
47
|
+
rspec-expectations (3.5.0)
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
49
|
+
rspec-support (~> 3.5.0)
|
50
|
+
rspec-mocks (3.5.0)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.5.0)
|
53
|
+
rspec-support (3.5.0)
|
54
|
+
|
55
|
+
PLATFORMS
|
56
|
+
ruby
|
57
|
+
|
58
|
+
DEPENDENCIES
|
59
|
+
aruba (< 0.7)
|
60
|
+
cucumber (~> 3.0.0)
|
61
|
+
cucumber_priority!
|
62
|
+
gemika (>= 0.8.1)
|
63
|
+
rake
|
64
|
+
rspec (~> 3.0)
|
65
|
+
|
66
|
+
BUNDLED WITH
|
67
|
+
2.3.27
|
@@ -0,0 +1,13 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'cucumber', '~> 3.1.0'
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
gem 'rspec', '~> 3.0'
|
8
|
+
gem 'gemika', '>= 0.8.1'
|
9
|
+
gem 'rake'
|
10
|
+
gem 'aruba', '<0.7'
|
11
|
+
|
12
|
+
# Gem under test
|
13
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,67 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aruba (0.6.2)
|
11
|
+
childprocess (>= 0.3.6)
|
12
|
+
cucumber (>= 1.1.1)
|
13
|
+
rspec-expectations (>= 2.7.0)
|
14
|
+
backports (3.11.1)
|
15
|
+
builder (3.2.3)
|
16
|
+
childprocess (0.9.0)
|
17
|
+
ffi (~> 1.0, >= 1.0.11)
|
18
|
+
cucumber (3.1.0)
|
19
|
+
builder (>= 2.1.2)
|
20
|
+
cucumber-core (~> 3.1.0)
|
21
|
+
cucumber-expressions (~> 5.0.4)
|
22
|
+
cucumber-wire (~> 0.0.1)
|
23
|
+
diff-lcs (~> 1.3)
|
24
|
+
gherkin (~> 5.0)
|
25
|
+
multi_json (>= 1.7.5, < 2.0)
|
26
|
+
multi_test (>= 0.1.2)
|
27
|
+
cucumber-core (3.1.0)
|
28
|
+
backports (>= 3.8.0)
|
29
|
+
cucumber-tag_expressions (~> 1.1.0)
|
30
|
+
gherkin (>= 5.0.0)
|
31
|
+
cucumber-expressions (5.0.13)
|
32
|
+
cucumber-tag_expressions (1.1.1)
|
33
|
+
cucumber-wire (0.0.1)
|
34
|
+
diff-lcs (1.3)
|
35
|
+
ffi (1.9.23)
|
36
|
+
gemika (0.8.2)
|
37
|
+
gherkin (5.0.0)
|
38
|
+
multi_json (1.13.1)
|
39
|
+
multi_test (0.1.2)
|
40
|
+
rake (13.1.0)
|
41
|
+
rspec (3.5.0)
|
42
|
+
rspec-core (~> 3.5.0)
|
43
|
+
rspec-expectations (~> 3.5.0)
|
44
|
+
rspec-mocks (~> 3.5.0)
|
45
|
+
rspec-core (3.5.4)
|
46
|
+
rspec-support (~> 3.5.0)
|
47
|
+
rspec-expectations (3.5.0)
|
48
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
49
|
+
rspec-support (~> 3.5.0)
|
50
|
+
rspec-mocks (3.5.0)
|
51
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
52
|
+
rspec-support (~> 3.5.0)
|
53
|
+
rspec-support (3.5.0)
|
54
|
+
|
55
|
+
PLATFORMS
|
56
|
+
ruby
|
57
|
+
|
58
|
+
DEPENDENCIES
|
59
|
+
aruba (< 0.7)
|
60
|
+
cucumber (~> 3.1.0)
|
61
|
+
cucumber_priority!
|
62
|
+
gemika (>= 0.8.1)
|
63
|
+
rake
|
64
|
+
rspec (~> 3.0)
|
65
|
+
|
66
|
+
BUNDLED WITH
|
67
|
+
2.3.27
|
@@ -0,0 +1,13 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'cucumber', '~> 4.1.0'
|
5
|
+
|
6
|
+
# Development dependencies
|
7
|
+
gem 'rspec', '~> 3.0'
|
8
|
+
gem 'gemika', '>= 0.8.1'
|
9
|
+
gem 'rake', '> 10.0'
|
10
|
+
gem 'aruba', '>= 2.0.0'
|
11
|
+
|
12
|
+
# Gem under test
|
13
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,106 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (6.1.3.1)
|
11
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
+
i18n (>= 1.6, < 2)
|
13
|
+
minitest (>= 5.1)
|
14
|
+
tzinfo (~> 2.0)
|
15
|
+
zeitwerk (~> 2.3)
|
16
|
+
aruba (2.1.0)
|
17
|
+
bundler (>= 1.17, < 3.0)
|
18
|
+
childprocess (>= 2.0, < 5.0)
|
19
|
+
contracts (>= 0.16.0, < 0.18.0)
|
20
|
+
cucumber (>= 4.0, < 9.0)
|
21
|
+
rspec-expectations (~> 3.4)
|
22
|
+
thor (~> 1.0)
|
23
|
+
builder (3.2.4)
|
24
|
+
childprocess (4.1.0)
|
25
|
+
concurrent-ruby (1.1.8)
|
26
|
+
contracts (0.16.1)
|
27
|
+
cucumber (4.1.0)
|
28
|
+
builder (~> 3.2, >= 3.2.3)
|
29
|
+
cucumber-core (~> 7.1, >= 7.1.0)
|
30
|
+
cucumber-create-meta (~> 1.0.0, >= 1.0.0)
|
31
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
32
|
+
cucumber-gherkin (~> 14.0, >= 14.0.1)
|
33
|
+
cucumber-html-formatter (~> 7.0, >= 7.0.0)
|
34
|
+
cucumber-messages (~> 12.2, >= 12.2.0)
|
35
|
+
cucumber-wire (~> 3.1, >= 3.1.0)
|
36
|
+
diff-lcs (~> 1.3, >= 1.3, < 1.4)
|
37
|
+
multi_test (~> 0.1, >= 0.1.2)
|
38
|
+
sys-uname (~> 1.0, >= 1.0.2)
|
39
|
+
cucumber-core (7.1.0)
|
40
|
+
cucumber-gherkin (~> 14.0, >= 14.0.1)
|
41
|
+
cucumber-messages (~> 12.2, >= 12.2.0)
|
42
|
+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
43
|
+
cucumber-create-meta (1.0.0)
|
44
|
+
cucumber-messages (~> 12.2, >= 12.2.0)
|
45
|
+
sys-uname (~> 1.2, >= 1.2.1)
|
46
|
+
cucumber-cucumber-expressions (10.3.0)
|
47
|
+
cucumber-gherkin (14.2.0)
|
48
|
+
cucumber-messages (~> 12.4, >= 12.4.0)
|
49
|
+
cucumber-html-formatter (7.2.0)
|
50
|
+
cucumber-messages (~> 12.4, >= 12.4.0)
|
51
|
+
cucumber-messages (12.4.0)
|
52
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
53
|
+
cucumber-tag-expressions (2.0.4)
|
54
|
+
cucumber-wire (3.1.0)
|
55
|
+
cucumber-core (~> 7.1, >= 7.1.0)
|
56
|
+
cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
|
57
|
+
cucumber-messages (~> 12.2, >= 12.2.0)
|
58
|
+
diff-lcs (1.3)
|
59
|
+
ffi (1.15.0)
|
60
|
+
gemika (0.8.2)
|
61
|
+
i18n (1.8.9)
|
62
|
+
concurrent-ruby (~> 1.0)
|
63
|
+
middleware (0.1.0)
|
64
|
+
minitest (5.14.4)
|
65
|
+
multi_test (0.1.2)
|
66
|
+
protobuf-cucumber (3.10.8)
|
67
|
+
activesupport (>= 3.2)
|
68
|
+
middleware
|
69
|
+
thor
|
70
|
+
thread_safe
|
71
|
+
rake (13.1.0)
|
72
|
+
rspec (3.10.0)
|
73
|
+
rspec-core (~> 3.10.0)
|
74
|
+
rspec-expectations (~> 3.10.0)
|
75
|
+
rspec-mocks (~> 3.10.0)
|
76
|
+
rspec-core (3.10.1)
|
77
|
+
rspec-support (~> 3.10.0)
|
78
|
+
rspec-expectations (3.10.1)
|
79
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
+
rspec-support (~> 3.10.0)
|
81
|
+
rspec-mocks (3.10.2)
|
82
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
+
rspec-support (~> 3.10.0)
|
84
|
+
rspec-support (3.10.2)
|
85
|
+
sys-uname (1.2.2)
|
86
|
+
ffi (~> 1.1)
|
87
|
+
thor (1.1.0)
|
88
|
+
thread_safe (0.3.6)
|
89
|
+
tzinfo (2.0.4)
|
90
|
+
concurrent-ruby (~> 1.0)
|
91
|
+
zeitwerk (2.4.2)
|
92
|
+
|
93
|
+
PLATFORMS
|
94
|
+
ruby
|
95
|
+
x86_64-linux
|
96
|
+
|
97
|
+
DEPENDENCIES
|
98
|
+
aruba (>= 2.0.0)
|
99
|
+
cucumber (~> 4.1.0)
|
100
|
+
cucumber_priority!
|
101
|
+
gemika (>= 0.8.1)
|
102
|
+
rake (> 10.0)
|
103
|
+
rspec (~> 3.0)
|
104
|
+
|
105
|
+
BUNDLED WITH
|
106
|
+
2.2.3
|
@@ -0,0 +1,19 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Former standard gems, see https://stdgems.org/
|
4
|
+
gem 'ostruct' # Bundled gem since Ruby 3.4
|
5
|
+
gem 'base64' # Bundled gem since Ruby 3.4
|
6
|
+
gem 'bigdecimal' # Bundled gem since Ruby 3.4
|
7
|
+
gem 'mutex_m' # Bundled gem since Ruby 3.4
|
8
|
+
|
9
|
+
# Runtime dependencies
|
10
|
+
gem 'cucumber', '~> 5.3.0'
|
11
|
+
|
12
|
+
# Development dependencies
|
13
|
+
gem 'rspec', '~> 3.0'
|
14
|
+
gem 'gemika', '>= 0.8.1'
|
15
|
+
gem 'rake', '> 10.0'
|
16
|
+
gem 'aruba', '>= 2.0.0'
|
17
|
+
|
18
|
+
# Gem under test
|
19
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,114 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (6.1.3.1)
|
11
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
|
+
i18n (>= 1.6, < 2)
|
13
|
+
minitest (>= 5.1)
|
14
|
+
tzinfo (~> 2.0)
|
15
|
+
zeitwerk (~> 2.3)
|
16
|
+
aruba (2.1.0)
|
17
|
+
bundler (>= 1.17, < 3.0)
|
18
|
+
childprocess (>= 2.0, < 5.0)
|
19
|
+
contracts (>= 0.16.0, < 0.18.0)
|
20
|
+
cucumber (>= 4.0, < 9.0)
|
21
|
+
rspec-expectations (~> 3.4)
|
22
|
+
thor (~> 1.0)
|
23
|
+
base64 (0.2.0)
|
24
|
+
bigdecimal (3.1.9)
|
25
|
+
builder (3.2.4)
|
26
|
+
childprocess (4.1.0)
|
27
|
+
concurrent-ruby (1.1.8)
|
28
|
+
contracts (0.16.1)
|
29
|
+
cucumber (5.3.0)
|
30
|
+
builder (~> 3.2, >= 3.2.4)
|
31
|
+
cucumber-core (~> 8.0, >= 8.0.1)
|
32
|
+
cucumber-create-meta (~> 2.0, >= 2.0.2)
|
33
|
+
cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
|
34
|
+
cucumber-gherkin (~> 15.0, >= 15.0.2)
|
35
|
+
cucumber-html-formatter (~> 9.0, >= 9.0.0)
|
36
|
+
cucumber-messages (~> 13.1, >= 13.1.0)
|
37
|
+
cucumber-wire (~> 4.0, >= 4.0.1)
|
38
|
+
diff-lcs (~> 1.4, >= 1.4.4)
|
39
|
+
multi_test (~> 0.1, >= 0.1.2)
|
40
|
+
sys-uname (~> 1.2, >= 1.2.1)
|
41
|
+
cucumber-core (8.0.1)
|
42
|
+
cucumber-gherkin (~> 15.0, >= 15.0.2)
|
43
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
44
|
+
cucumber-tag-expressions (~> 2.0, >= 2.0.4)
|
45
|
+
cucumber-create-meta (2.0.4)
|
46
|
+
cucumber-messages (~> 13.1, >= 13.1.0)
|
47
|
+
sys-uname (~> 1.2, >= 1.2.1)
|
48
|
+
cucumber-cucumber-expressions (10.3.0)
|
49
|
+
cucumber-gherkin (15.0.2)
|
50
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
51
|
+
cucumber-html-formatter (9.0.0)
|
52
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
53
|
+
cucumber-messages (13.2.1)
|
54
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
55
|
+
cucumber-tag-expressions (2.0.4)
|
56
|
+
cucumber-wire (4.0.1)
|
57
|
+
cucumber-core (~> 8.0, >= 8.0.1)
|
58
|
+
cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
|
59
|
+
cucumber-messages (~> 13.0, >= 13.0.1)
|
60
|
+
diff-lcs (1.4.4)
|
61
|
+
ffi (1.15.0)
|
62
|
+
gemika (0.8.2)
|
63
|
+
i18n (1.8.9)
|
64
|
+
concurrent-ruby (~> 1.0)
|
65
|
+
middleware (0.1.0)
|
66
|
+
minitest (5.14.4)
|
67
|
+
multi_test (0.1.2)
|
68
|
+
mutex_m (0.3.0)
|
69
|
+
ostruct (0.6.1)
|
70
|
+
protobuf-cucumber (3.10.8)
|
71
|
+
activesupport (>= 3.2)
|
72
|
+
middleware
|
73
|
+
thor
|
74
|
+
thread_safe
|
75
|
+
rake (13.1.0)
|
76
|
+
rspec (3.10.0)
|
77
|
+
rspec-core (~> 3.10.0)
|
78
|
+
rspec-expectations (~> 3.10.0)
|
79
|
+
rspec-mocks (~> 3.10.0)
|
80
|
+
rspec-core (3.10.1)
|
81
|
+
rspec-support (~> 3.10.0)
|
82
|
+
rspec-expectations (3.10.1)
|
83
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
84
|
+
rspec-support (~> 3.10.0)
|
85
|
+
rspec-mocks (3.10.2)
|
86
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
87
|
+
rspec-support (~> 3.10.0)
|
88
|
+
rspec-support (3.10.2)
|
89
|
+
sys-uname (1.2.2)
|
90
|
+
ffi (~> 1.1)
|
91
|
+
thor (1.1.0)
|
92
|
+
thread_safe (0.3.6)
|
93
|
+
tzinfo (2.0.4)
|
94
|
+
concurrent-ruby (~> 1.0)
|
95
|
+
zeitwerk (2.4.2)
|
96
|
+
|
97
|
+
PLATFORMS
|
98
|
+
ruby
|
99
|
+
x86_64-linux
|
100
|
+
|
101
|
+
DEPENDENCIES
|
102
|
+
aruba (>= 2.0.0)
|
103
|
+
base64
|
104
|
+
bigdecimal
|
105
|
+
cucumber (~> 5.3.0)
|
106
|
+
cucumber_priority!
|
107
|
+
gemika (>= 0.8.1)
|
108
|
+
mutex_m
|
109
|
+
ostruct
|
110
|
+
rake (> 10.0)
|
111
|
+
rspec (~> 3.0)
|
112
|
+
|
113
|
+
BUNDLED WITH
|
114
|
+
2.2.3
|
@@ -0,0 +1,19 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Former standard gems, see https://stdgems.org/
|
4
|
+
gem 'ostruct' # Bundled gem since Ruby 3.4
|
5
|
+
gem 'base64' # Bundled gem since Ruby 3.4
|
6
|
+
gem 'bigdecimal' # Bundled gem since Ruby 3.4
|
7
|
+
gem 'mutex_m' # Bundled gem since Ruby 3.4
|
8
|
+
|
9
|
+
# Runtime dependencies
|
10
|
+
gem 'cucumber', '~> 6.1.0'
|
11
|
+
|
12
|
+
# Development dependencies
|
13
|
+
gem 'rspec', '~> 3.0'
|
14
|
+
gem 'gemika', '>= 0.8.1'
|
15
|
+
gem 'rake', '> 10.0'
|
16
|
+
gem 'aruba', '>= 2.0.0'
|
17
|
+
|
18
|
+
# Gem under test
|
19
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,150 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
activesupport (8.0.1)
|
11
|
+
base64
|
12
|
+
benchmark (>= 0.3)
|
13
|
+
bigdecimal
|
14
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
15
|
+
connection_pool (>= 2.2.5)
|
16
|
+
drb
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
logger (>= 1.4.2)
|
19
|
+
minitest (>= 5.1)
|
20
|
+
securerandom (>= 0.3)
|
21
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
22
|
+
uri (>= 0.13.1)
|
23
|
+
aruba (2.1.0)
|
24
|
+
bundler (>= 1.17, < 3.0)
|
25
|
+
childprocess (>= 2.0, < 5.0)
|
26
|
+
contracts (>= 0.16.0, < 0.18.0)
|
27
|
+
cucumber (>= 4.0, < 9.0)
|
28
|
+
rspec-expectations (~> 3.4)
|
29
|
+
thor (~> 1.0)
|
30
|
+
base64 (0.2.0)
|
31
|
+
benchmark (0.4.0)
|
32
|
+
bigdecimal (3.1.9)
|
33
|
+
builder (3.3.0)
|
34
|
+
childprocess (4.1.0)
|
35
|
+
concurrent-ruby (1.3.5)
|
36
|
+
connection_pool (2.5.0)
|
37
|
+
contracts (0.17.2)
|
38
|
+
cucumber (6.1.0)
|
39
|
+
builder (~> 3.2, >= 3.2.4)
|
40
|
+
cucumber-core (~> 9.0, >= 9.0.1)
|
41
|
+
cucumber-create-meta (~> 4.0, >= 4.0.0)
|
42
|
+
cucumber-cucumber-expressions (~> 12.1, >= 12.1.1)
|
43
|
+
cucumber-gherkin (~> 18.1, >= 18.1.0)
|
44
|
+
cucumber-html-formatter (~> 13.0, >= 13.0.0)
|
45
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
46
|
+
cucumber-wire (~> 5.0, >= 5.0.1)
|
47
|
+
diff-lcs (~> 1.4, >= 1.4.4)
|
48
|
+
mime-types (~> 3.3, >= 3.3.1)
|
49
|
+
multi_test (~> 0.1, >= 0.1.2)
|
50
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
51
|
+
cucumber-core (9.0.1)
|
52
|
+
cucumber-gherkin (~> 18.1, >= 18.1.0)
|
53
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
54
|
+
cucumber-tag-expressions (~> 3.0, >= 3.0.1)
|
55
|
+
cucumber-create-meta (4.0.0)
|
56
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
57
|
+
sys-uname (~> 1.2, >= 1.2.2)
|
58
|
+
cucumber-cucumber-expressions (12.1.3)
|
59
|
+
cucumber-gherkin (18.1.1)
|
60
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
61
|
+
cucumber-html-formatter (13.0.0)
|
62
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
63
|
+
cucumber-messages (15.0.0)
|
64
|
+
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
65
|
+
cucumber-tag-expressions (3.0.1)
|
66
|
+
cucumber-wire (5.0.1)
|
67
|
+
cucumber-core (~> 9.0, >= 9.0.1)
|
68
|
+
cucumber-cucumber-expressions (~> 12.1, >= 12.1.1)
|
69
|
+
cucumber-messages (~> 15.0, >= 15.0.0)
|
70
|
+
diff-lcs (1.5.1)
|
71
|
+
drb (2.2.1)
|
72
|
+
ffi (1.17.1)
|
73
|
+
ffi (1.17.1-aarch64-linux-gnu)
|
74
|
+
ffi (1.17.1-aarch64-linux-musl)
|
75
|
+
ffi (1.17.1-arm-linux-gnu)
|
76
|
+
ffi (1.17.1-arm-linux-musl)
|
77
|
+
ffi (1.17.1-arm64-darwin)
|
78
|
+
ffi (1.17.1-x86-linux-gnu)
|
79
|
+
ffi (1.17.1-x86-linux-musl)
|
80
|
+
ffi (1.17.1-x86_64-darwin)
|
81
|
+
ffi (1.17.1-x86_64-linux-gnu)
|
82
|
+
ffi (1.17.1-x86_64-linux-musl)
|
83
|
+
gemika (0.8.4)
|
84
|
+
i18n (1.14.6)
|
85
|
+
concurrent-ruby (~> 1.0)
|
86
|
+
logger (1.6.5)
|
87
|
+
middleware (0.1.0)
|
88
|
+
mime-types (3.6.0)
|
89
|
+
logger
|
90
|
+
mime-types-data (~> 3.2015)
|
91
|
+
mime-types-data (3.2025.0107)
|
92
|
+
minitest (5.25.4)
|
93
|
+
multi_test (0.1.2)
|
94
|
+
mutex_m (0.3.0)
|
95
|
+
ostruct (0.6.1)
|
96
|
+
protobuf-cucumber (3.10.8)
|
97
|
+
activesupport (>= 3.2)
|
98
|
+
middleware
|
99
|
+
thor
|
100
|
+
thread_safe
|
101
|
+
rake (13.2.1)
|
102
|
+
rspec (3.13.0)
|
103
|
+
rspec-core (~> 3.13.0)
|
104
|
+
rspec-expectations (~> 3.13.0)
|
105
|
+
rspec-mocks (~> 3.13.0)
|
106
|
+
rspec-core (3.13.2)
|
107
|
+
rspec-support (~> 3.13.0)
|
108
|
+
rspec-expectations (3.13.3)
|
109
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
110
|
+
rspec-support (~> 3.13.0)
|
111
|
+
rspec-mocks (3.13.2)
|
112
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
113
|
+
rspec-support (~> 3.13.0)
|
114
|
+
rspec-support (3.13.2)
|
115
|
+
securerandom (0.4.1)
|
116
|
+
sys-uname (1.3.1)
|
117
|
+
ffi (~> 1.1)
|
118
|
+
thor (1.3.2)
|
119
|
+
thread_safe (0.3.6)
|
120
|
+
tzinfo (2.0.6)
|
121
|
+
concurrent-ruby (~> 1.0)
|
122
|
+
uri (1.0.2)
|
123
|
+
|
124
|
+
PLATFORMS
|
125
|
+
aarch64-linux-gnu
|
126
|
+
aarch64-linux-musl
|
127
|
+
arm-linux-gnu
|
128
|
+
arm-linux-musl
|
129
|
+
arm64-darwin
|
130
|
+
ruby
|
131
|
+
x86-linux-gnu
|
132
|
+
x86-linux-musl
|
133
|
+
x86_64-darwin
|
134
|
+
x86_64-linux-gnu
|
135
|
+
x86_64-linux-musl
|
136
|
+
|
137
|
+
DEPENDENCIES
|
138
|
+
aruba
|
139
|
+
base64
|
140
|
+
bigdecimal
|
141
|
+
cucumber (~> 6.1.0)
|
142
|
+
cucumber_priority!
|
143
|
+
gemika (>= 0.8.1)
|
144
|
+
mutex_m
|
145
|
+
ostruct
|
146
|
+
rake (> 10.0)
|
147
|
+
rspec (~> 3.0)
|
148
|
+
|
149
|
+
BUNDLED WITH
|
150
|
+
2.6.3
|
@@ -0,0 +1,20 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Former standard gems, see https://stdgems.org/
|
4
|
+
gem 'ostruct' # Bundled gem since Ruby 3.4
|
5
|
+
gem 'base64' # Bundled gem since Ruby 3.4
|
6
|
+
gem 'bigdecimal' # Bundled gem since Ruby 3.4
|
7
|
+
gem 'mutex_m' # Bundled gem since Ruby 3.4
|
8
|
+
gem 'logger' # Bundled gem since Ruby 3.4
|
9
|
+
|
10
|
+
# Runtime dependencies
|
11
|
+
gem 'cucumber', '~> 9.2.1'
|
12
|
+
|
13
|
+
# Development dependencies
|
14
|
+
gem 'rspec', '~> 3.0'
|
15
|
+
gem 'gemika', '>= 0.8.1'
|
16
|
+
gem 'rake', '> 10.0'
|
17
|
+
gem 'aruba', '>= 2.0.0'
|
18
|
+
|
19
|
+
# Gem under test
|
20
|
+
gem 'cucumber_priority', :path => '.'
|
@@ -0,0 +1,108 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
cucumber_priority (1.0.0)
|
5
|
+
cucumber
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
aruba (2.3.0)
|
11
|
+
bundler (>= 1.17, < 3.0)
|
12
|
+
contracts (>= 0.16.0, < 0.18.0)
|
13
|
+
cucumber (>= 8.0, < 10.0)
|
14
|
+
rspec-expectations (~> 3.4)
|
15
|
+
thor (~> 1.0)
|
16
|
+
base64 (0.2.0)
|
17
|
+
bigdecimal (3.1.9)
|
18
|
+
builder (3.3.0)
|
19
|
+
contracts (0.17.2)
|
20
|
+
cucumber (9.2.1)
|
21
|
+
builder (~> 3.2)
|
22
|
+
cucumber-ci-environment (> 9, < 11)
|
23
|
+
cucumber-core (> 13, < 14)
|
24
|
+
cucumber-cucumber-expressions (~> 17.0)
|
25
|
+
cucumber-gherkin (> 24, < 28)
|
26
|
+
cucumber-html-formatter (> 20.3, < 22)
|
27
|
+
cucumber-messages (> 19, < 25)
|
28
|
+
diff-lcs (~> 1.5)
|
29
|
+
mini_mime (~> 1.1)
|
30
|
+
multi_test (~> 1.1)
|
31
|
+
sys-uname (~> 1.2)
|
32
|
+
cucumber-ci-environment (10.0.1)
|
33
|
+
cucumber-core (13.0.3)
|
34
|
+
cucumber-gherkin (>= 27, < 28)
|
35
|
+
cucumber-messages (>= 20, < 23)
|
36
|
+
cucumber-tag-expressions (> 5, < 7)
|
37
|
+
cucumber-cucumber-expressions (17.1.0)
|
38
|
+
bigdecimal
|
39
|
+
cucumber-gherkin (27.0.0)
|
40
|
+
cucumber-messages (>= 19.1.4, < 23)
|
41
|
+
cucumber-html-formatter (21.7.0)
|
42
|
+
cucumber-messages (> 19, < 27)
|
43
|
+
cucumber-messages (22.0.0)
|
44
|
+
cucumber-tag-expressions (6.1.1)
|
45
|
+
diff-lcs (1.5.1)
|
46
|
+
ffi (1.17.1)
|
47
|
+
ffi (1.17.1-aarch64-linux-gnu)
|
48
|
+
ffi (1.17.1-aarch64-linux-musl)
|
49
|
+
ffi (1.17.1-arm-linux-gnu)
|
50
|
+
ffi (1.17.1-arm-linux-musl)
|
51
|
+
ffi (1.17.1-arm64-darwin)
|
52
|
+
ffi (1.17.1-x86-linux-gnu)
|
53
|
+
ffi (1.17.1-x86-linux-musl)
|
54
|
+
ffi (1.17.1-x86_64-darwin)
|
55
|
+
ffi (1.17.1-x86_64-linux-gnu)
|
56
|
+
ffi (1.17.1-x86_64-linux-musl)
|
57
|
+
gemika (0.8.4)
|
58
|
+
logger (1.6.5)
|
59
|
+
mini_mime (1.1.5)
|
60
|
+
multi_test (1.1.0)
|
61
|
+
mutex_m (0.3.0)
|
62
|
+
ostruct (0.6.1)
|
63
|
+
rake (13.2.1)
|
64
|
+
rspec (3.13.0)
|
65
|
+
rspec-core (~> 3.13.0)
|
66
|
+
rspec-expectations (~> 3.13.0)
|
67
|
+
rspec-mocks (~> 3.13.0)
|
68
|
+
rspec-core (3.13.2)
|
69
|
+
rspec-support (~> 3.13.0)
|
70
|
+
rspec-expectations (3.13.3)
|
71
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
72
|
+
rspec-support (~> 3.13.0)
|
73
|
+
rspec-mocks (3.13.2)
|
74
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
75
|
+
rspec-support (~> 3.13.0)
|
76
|
+
rspec-support (3.13.2)
|
77
|
+
sys-uname (1.3.1)
|
78
|
+
ffi (~> 1.1)
|
79
|
+
thor (1.3.2)
|
80
|
+
|
81
|
+
PLATFORMS
|
82
|
+
aarch64-linux-gnu
|
83
|
+
aarch64-linux-musl
|
84
|
+
arm-linux-gnu
|
85
|
+
arm-linux-musl
|
86
|
+
arm64-darwin
|
87
|
+
ruby
|
88
|
+
x86-linux-gnu
|
89
|
+
x86-linux-musl
|
90
|
+
x86_64-darwin
|
91
|
+
x86_64-linux-gnu
|
92
|
+
x86_64-linux-musl
|
93
|
+
|
94
|
+
DEPENDENCIES
|
95
|
+
aruba (>= 2.0.0)
|
96
|
+
base64
|
97
|
+
bigdecimal
|
98
|
+
cucumber (~> 9.2.1)
|
99
|
+
cucumber_priority!
|
100
|
+
gemika (>= 0.8.1)
|
101
|
+
logger
|
102
|
+
mutex_m
|
103
|
+
ostruct
|
104
|
+
rake (> 10.0)
|
105
|
+
rspec (~> 3.0)
|
106
|
+
|
107
|
+
BUNDLED WITH
|
108
|
+
2.6.3
|
data/Gemfile.lock
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Gemfile.cucumber-2.4.lock
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
cucumber_priority [![
|
1
|
+
cucumber_priority [![Tests](https://github.com/makandra/cucumber_priority/workflows/Tests/badge.svg)](https://github.com/makandra/cucumber_priority/actions?query=branch:master)
|
2
2
|
=================
|
3
3
|
|
4
4
|
Overridable step definitions for Cucumber
|
@@ -77,16 +77,28 @@ Development
|
|
77
77
|
|
78
78
|
There are tests in `spec`. We only accept PRs with tests. To run tests:
|
79
79
|
|
80
|
-
- Install Ruby 2.5.
|
80
|
+
- Install Ruby 2.5.3
|
81
81
|
- Install development dependencies using `bundle install`
|
82
82
|
- Run tests using `bundle exec rspec`
|
83
83
|
|
84
|
-
We recommend to test large changes against multiple versions of Ruby and multiple dependency sets. Supported combinations are configured in `.
|
84
|
+
We recommend to test large changes against multiple versions of Ruby and multiple dependency sets. Supported combinations are configured in `.github/workflows/test.yml`. We provide some rake tasks to help with this:
|
85
85
|
|
86
|
+
- Run tests for a specific version of Ruby, Bundler and Gemfile:
|
87
|
+
```sh
|
88
|
+
rbenv shell 3.4.1
|
89
|
+
export BUNDLE_GEMFILE=Gemfile.cucumber-9.2
|
90
|
+
bundle _2.6.3_ install
|
91
|
+
bundle _2.6.3_ exec rake current_rspec
|
92
|
+
```
|
86
93
|
- Install development dependencies using `bundle matrix:install`
|
87
94
|
- Run tests using `bundle matrix:spec`
|
95
|
+
- Run tests for all rubies:
|
88
96
|
|
89
|
-
|
97
|
+
```sh
|
98
|
+
for version in "2.5.3" "2.6.6" "2.7.2" "3.2.0" "3.3.6" "3.4.1"; do rbenv shell $version && bundle install && bundle exec rake matrix:install && bundle exec rake matrix:spec; done
|
99
|
+
```
|
100
|
+
|
101
|
+
Note that we have configured GitHub Actions to automatically run tests in all supported Ruby versions and dependency sets after each push. We will only merge pull requests after a green workflow build.
|
90
102
|
|
91
103
|
If you would like to contribute:
|
92
104
|
|
@@ -101,4 +113,3 @@ Credits
|
|
101
113
|
-------
|
102
114
|
|
103
115
|
Henning Koch from [makandra](https://makandra.com/)
|
104
|
-
|
data/cucumber_priority.gemspec
CHANGED
@@ -2,23 +2,29 @@
|
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
3
|
require "cucumber_priority/version"
|
4
4
|
|
5
|
-
Gem::Specification.new do |
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = %q{cucumber_priority}
|
7
|
+
spec.version = CucumberPriority::VERSION
|
8
|
+
spec.authors = ["Henning Koch"]
|
9
|
+
spec.email = %q{github@makandra.de}
|
10
|
+
spec.homepage = %q{http://github.com/makandra/cucumber_priority}
|
11
|
+
spec.summary = %q{Overridable step definitions for Cucumber}
|
12
|
+
spec.description = %q{cucumber_priority provides a way to mark step definitions as overridable, meaning that they can always be overshadowed by a more specific version without raising an error.}
|
13
|
+
spec.license = 'MIT'
|
14
|
+
spec.metadata = {
|
15
|
+
'rubygems_mfa_required' => 'true',
|
16
|
+
'bug_tracker_uri' => 'https://github.com/makandra/cucumber_priority/issues',
|
17
|
+
'changelog_uri' => 'https://github.com/makandra/cucumber_priority/blob/master/CHANGELOG.md',
|
18
|
+
'source_code_uri' => 'https://github.com/makandra/cucumber_priority',
|
19
|
+
}
|
14
20
|
|
15
|
-
|
21
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
16
22
|
f.match(%r{^(gemfiles|bin|test|spec|features)/})
|
17
23
|
end
|
18
|
-
|
19
|
-
|
20
|
-
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
21
27
|
|
22
|
-
|
28
|
+
spec.add_dependency('cucumber')
|
23
29
|
|
24
30
|
end
|
metadata
CHANGED
@@ -1,30 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber_priority
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 1.0.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Henning Koch
|
9
|
-
autorequire:
|
10
8
|
bindir: exe
|
11
9
|
cert_chain: []
|
12
|
-
date:
|
10
|
+
date: 2025-01-20 00:00:00.000000000 Z
|
13
11
|
dependencies:
|
14
12
|
- !ruby/object:Gem::Dependency
|
15
13
|
name: cucumber
|
16
14
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
15
|
requirements:
|
19
|
-
- -
|
16
|
+
- - ">="
|
20
17
|
- !ruby/object:Gem::Version
|
21
18
|
version: '0'
|
22
19
|
type: :runtime
|
23
20
|
prerelease: false
|
24
21
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
22
|
requirements:
|
27
|
-
- -
|
23
|
+
- - ">="
|
28
24
|
- !ruby/object:Gem::Version
|
29
25
|
version: '0'
|
30
26
|
description: cucumber_priority provides a way to mark step definitions as overridable,
|
@@ -35,11 +31,28 @@ executables: []
|
|
35
31
|
extensions: []
|
36
32
|
extra_rdoc_files: []
|
37
33
|
files:
|
38
|
-
- .
|
39
|
-
- .
|
40
|
-
- .
|
41
|
-
- .
|
34
|
+
- ".github/workflows/test.yml"
|
35
|
+
- ".gitignore"
|
36
|
+
- ".rspec"
|
37
|
+
- ".ruby-version"
|
38
|
+
- CHANGELOG.md
|
42
39
|
- Gemfile
|
40
|
+
- Gemfile.cucumber-1.3
|
41
|
+
- Gemfile.cucumber-1.3.lock
|
42
|
+
- Gemfile.cucumber-2.4
|
43
|
+
- Gemfile.cucumber-2.4.lock
|
44
|
+
- Gemfile.cucumber-3.0
|
45
|
+
- Gemfile.cucumber-3.0.lock
|
46
|
+
- Gemfile.cucumber-3.1
|
47
|
+
- Gemfile.cucumber-3.1.lock
|
48
|
+
- Gemfile.cucumber-4.1
|
49
|
+
- Gemfile.cucumber-4.1.lock
|
50
|
+
- Gemfile.cucumber-5.3
|
51
|
+
- Gemfile.cucumber-5.3.lock
|
52
|
+
- Gemfile.cucumber-6.1
|
53
|
+
- Gemfile.cucumber-6.1.lock
|
54
|
+
- Gemfile.cucumber-9.2
|
55
|
+
- Gemfile.cucumber-9.2.lock
|
43
56
|
- Gemfile.lock
|
44
57
|
- LICENSE
|
45
58
|
- README.md
|
@@ -55,26 +68,26 @@ files:
|
|
55
68
|
homepage: http://github.com/makandra/cucumber_priority
|
56
69
|
licenses:
|
57
70
|
- MIT
|
58
|
-
|
71
|
+
metadata:
|
72
|
+
rubygems_mfa_required: 'true'
|
73
|
+
bug_tracker_uri: https://github.com/makandra/cucumber_priority/issues
|
74
|
+
changelog_uri: https://github.com/makandra/cucumber_priority/blob/master/CHANGELOG.md
|
75
|
+
source_code_uri: https://github.com/makandra/cucumber_priority
|
59
76
|
rdoc_options: []
|
60
77
|
require_paths:
|
61
78
|
- lib
|
62
79
|
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
-
none: false
|
64
80
|
requirements:
|
65
|
-
- -
|
81
|
+
- - ">="
|
66
82
|
- !ruby/object:Gem::Version
|
67
83
|
version: '0'
|
68
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
-
none: false
|
70
85
|
requirements:
|
71
|
-
- -
|
86
|
+
- - ">="
|
72
87
|
- !ruby/object:Gem::Version
|
73
88
|
version: '0'
|
74
89
|
requirements: []
|
75
|
-
|
76
|
-
|
77
|
-
signing_key:
|
78
|
-
specification_version: 3
|
90
|
+
rubygems_version: 3.6.3
|
91
|
+
specification_version: 4
|
79
92
|
summary: Overridable step definitions for Cucumber
|
80
93
|
test_files: []
|
data/.travis.yml
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
rvm:
|
2
|
-
- 1.8.7
|
3
|
-
- 2.1.10
|
4
|
-
- 2.5.0
|
5
|
-
|
6
|
-
gemfile:
|
7
|
-
- gemfiles/Gemfile.cucumber-1.3
|
8
|
-
- gemfiles/Gemfile.cucumber-2.4
|
9
|
-
- gemfiles/Gemfile.cucumber-3.0
|
10
|
-
- gemfiles/Gemfile.cucumber-3.1
|
11
|
-
|
12
|
-
matrix:
|
13
|
-
exclude:
|
14
|
-
- gemfile: gemfiles/Gemfile.cucumber-3.1
|
15
|
-
rvm: 1.8.7
|
16
|
-
- gemfile: gemfiles/Gemfile.cucumber-3.1
|
17
|
-
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
18
|
-
- gemfile: gemfiles/Gemfile.cucumber-3.0
|
19
|
-
rvm: 1.8.7
|
20
|
-
- gemfile: gemfiles/Gemfile.cucumber-3.0
|
21
|
-
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
22
|
-
- gemfile: gemfiles/Gemfile.cucumber-2.4
|
23
|
-
rvm: 1.8.7
|
24
|
-
- gemfile: gemfiles/Gemfile.cucumber-1.3
|
25
|
-
rvm: 2.5.0 # doesn't work with old RSpec
|
26
|
-
|
27
|
-
install:
|
28
|
-
# Replace default Travis CI bundler script with a version that doesn't
|
29
|
-
# explode when lockfile doesn't match recently bumped version
|
30
|
-
- gem update --system
|
31
|
-
- bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
32
|
-
|
33
|
-
script: bundle exec rake current_rspec
|
34
|
-
|
35
|
-
sudo: false
|
36
|
-
|
37
|
-
cache: bundler
|
38
|
-
|
39
|
-
notifications:
|
40
|
-
email:
|
41
|
-
- fail@makandra.de
|
data/Gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
# Runtime dependencies
|
4
|
-
gem 'cucumber', '~> 2.4.0'
|
5
|
-
|
6
|
-
# Development dependencies
|
7
|
-
gem 'rspec', '~> 3.0'
|
8
|
-
gem 'gemika'
|
9
|
-
gem 'rake'
|
10
|
-
gem 'aruba', '<0.7'
|
11
|
-
|
12
|
-
# Gem under test
|
13
|
-
gem 'cucumber_priority', :path => '..'
|
data/Gemfile.lock
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
cucumber_priority (0.3.2)
|
5
|
-
cucumber
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
aruba (0.6.2)
|
11
|
-
childprocess (>= 0.3.6)
|
12
|
-
cucumber (>= 1.1.1)
|
13
|
-
rspec-expectations (>= 2.7.0)
|
14
|
-
builder (3.2.3)
|
15
|
-
childprocess (0.9.0)
|
16
|
-
ffi (~> 1.0, >= 1.0.11)
|
17
|
-
cucumber (2.4.0)
|
18
|
-
builder (>= 2.1.2)
|
19
|
-
cucumber-core (~> 1.5.0)
|
20
|
-
cucumber-wire (~> 0.0.1)
|
21
|
-
diff-lcs (>= 1.1.3)
|
22
|
-
gherkin (~> 4.0)
|
23
|
-
multi_json (>= 1.7.5, < 2.0)
|
24
|
-
multi_test (>= 0.1.2)
|
25
|
-
cucumber-core (1.5.0)
|
26
|
-
gherkin (~> 4.0)
|
27
|
-
cucumber-wire (0.0.1)
|
28
|
-
diff-lcs (1.3)
|
29
|
-
ffi (1.9.23)
|
30
|
-
gemika (0.3.2)
|
31
|
-
gherkin (4.1.3)
|
32
|
-
multi_json (1.13.1)
|
33
|
-
multi_test (0.1.2)
|
34
|
-
rake (10.1.0)
|
35
|
-
rspec (3.4.0)
|
36
|
-
rspec-core (~> 3.4.0)
|
37
|
-
rspec-expectations (~> 3.4.0)
|
38
|
-
rspec-mocks (~> 3.4.0)
|
39
|
-
rspec-core (3.4.3)
|
40
|
-
rspec-support (~> 3.4.0)
|
41
|
-
rspec-expectations (3.4.0)
|
42
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
-
rspec-support (~> 3.4.0)
|
44
|
-
rspec-mocks (3.4.1)
|
45
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
46
|
-
rspec-support (~> 3.4.0)
|
47
|
-
rspec-support (3.4.1)
|
48
|
-
|
49
|
-
PLATFORMS
|
50
|
-
ruby
|
51
|
-
|
52
|
-
DEPENDENCIES
|
53
|
-
aruba (< 0.7)
|
54
|
-
cucumber (~> 2.4.0)
|
55
|
-
cucumber_priority!
|
56
|
-
gemika
|
57
|
-
rake
|
58
|
-
rspec (~> 3.0)
|
59
|
-
|
60
|
-
BUNDLED WITH
|
61
|
-
1.16.1
|