cucumber_priority 0.3.2 → 0.3.3

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8ed9a7072272f713e1e32b980c5ca99c41ae94d8f6610286c5fb8ca23b5d3315
4
+ data.tar.gz: e1cfeb222c4461a540807af09cd09c5f6e0bf6b904c44cfd0399b44b0ee58bcf
5
+ SHA512:
6
+ metadata.gz: 73ebacfbe80292698d474854ab78e637b84732f9818335f5bbe8b0b02272ede3b2c61b0961c8cbcf9aeaea78a9ebe169f209c22cbc1f7d856801cdfdf46c8890
7
+ data.tar.gz: 3a1f262fee2ee400448e7a7f357755c2c2fd6c89b721186bfff90209eb5ea4f176c9bfa72bfc692457d8294c4566e067812392d241ef3f1ad412907656574393
@@ -0,0 +1,48 @@
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
+ - ruby: 2.5.3
20
+ gemfile: Gemfile.cucumber-3.0
21
+ - ruby: 2.5.3
22
+ gemfile: Gemfile.cucumber-3.1
23
+ - ruby: 2.6.6
24
+ gemfile: Gemfile.cucumber-4.1
25
+ - ruby: 2.6.6
26
+ gemfile: Gemfile.cucumber-5.3
27
+ - ruby: 2.7.2
28
+ gemfile: Gemfile.cucumber-4.1
29
+ - ruby: 2.7.2
30
+ gemfile: Gemfile.cucumber-5.3
31
+ - ruby: 3.0.0
32
+ gemfile: Gemfile.cucumber-4.1
33
+ - ruby: 3.0.0
34
+ gemfile: Gemfile.cucumber-5.3
35
+ env:
36
+ BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
37
+ steps:
38
+ - uses: actions/checkout@v2
39
+ - name: Install ruby
40
+ uses: ruby/setup-ruby@v1
41
+ with:
42
+ ruby-version: "${{ matrix.ruby }}"
43
+ - name: Bundle
44
+ run: |
45
+ gem install bundler:1.17.3
46
+ bundle install --no-deployment
47
+ - name: Run tests
48
+ run: bundle exec rake current_rspec
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.0
1
+ 2.5.3
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'
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 (0.3.3)
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.5.0)
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
45
+ rake (= 10.0.4)
46
+ rspec (~> 1.0)
47
+
48
+ BUNDLED WITH
49
+ 1.16.1
@@ -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'
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 (0.3.3)
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.5.0)
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.17.3
@@ -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'
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 (0.3.3)
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.5.0)
37
+ gherkin (4.1.3)
38
+ multi_json (1.13.1)
39
+ multi_test (0.1.2)
40
+ rake (10.4.2)
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
63
+ rake
64
+ rspec (~> 3.0)
65
+
66
+ BUNDLED WITH
67
+ 1.16.1
@@ -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'
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 (0.3.3)
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.5.0)
37
+ gherkin (5.0.0)
38
+ multi_json (1.13.1)
39
+ multi_test (0.1.2)
40
+ rake (10.4.2)
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
63
+ rake
64
+ rspec (~> 3.0)
65
+
66
+ BUNDLED WITH
67
+ 1.16.1
@@ -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'
9
+ gem 'rake'
10
+ gem 'aruba'
11
+
12
+ # Gem under test
13
+ gem 'cucumber_priority', :path => '.'
@@ -0,0 +1,102 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ cucumber_priority (0.3.3)
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 (0.6.2)
17
+ childprocess (>= 0.3.6)
18
+ cucumber (>= 1.1.1)
19
+ rspec-expectations (>= 2.7.0)
20
+ builder (3.2.4)
21
+ childprocess (4.0.0)
22
+ concurrent-ruby (1.1.8)
23
+ cucumber (4.1.0)
24
+ builder (~> 3.2, >= 3.2.3)
25
+ cucumber-core (~> 7.1, >= 7.1.0)
26
+ cucumber-create-meta (~> 1.0.0, >= 1.0.0)
27
+ cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
28
+ cucumber-gherkin (~> 14.0, >= 14.0.1)
29
+ cucumber-html-formatter (~> 7.0, >= 7.0.0)
30
+ cucumber-messages (~> 12.2, >= 12.2.0)
31
+ cucumber-wire (~> 3.1, >= 3.1.0)
32
+ diff-lcs (~> 1.3, >= 1.3, < 1.4)
33
+ multi_test (~> 0.1, >= 0.1.2)
34
+ sys-uname (~> 1.0, >= 1.0.2)
35
+ cucumber-core (7.1.0)
36
+ cucumber-gherkin (~> 14.0, >= 14.0.1)
37
+ cucumber-messages (~> 12.2, >= 12.2.0)
38
+ cucumber-tag-expressions (~> 2.0, >= 2.0.4)
39
+ cucumber-create-meta (1.0.0)
40
+ cucumber-messages (~> 12.2, >= 12.2.0)
41
+ sys-uname (~> 1.2, >= 1.2.1)
42
+ cucumber-cucumber-expressions (10.3.0)
43
+ cucumber-gherkin (14.2.0)
44
+ cucumber-messages (~> 12.4, >= 12.4.0)
45
+ cucumber-html-formatter (7.2.0)
46
+ cucumber-messages (~> 12.4, >= 12.4.0)
47
+ cucumber-messages (12.4.0)
48
+ protobuf-cucumber (~> 3.10, >= 3.10.8)
49
+ cucumber-tag-expressions (2.0.4)
50
+ cucumber-wire (3.1.0)
51
+ cucumber-core (~> 7.1, >= 7.1.0)
52
+ cucumber-cucumber-expressions (~> 10.1, >= 10.1.0)
53
+ cucumber-messages (~> 12.2, >= 12.2.0)
54
+ diff-lcs (1.3)
55
+ ffi (1.15.0)
56
+ gemika (0.5.0)
57
+ i18n (1.8.9)
58
+ concurrent-ruby (~> 1.0)
59
+ middleware (0.1.0)
60
+ minitest (5.14.4)
61
+ multi_test (0.1.2)
62
+ protobuf-cucumber (3.10.8)
63
+ activesupport (>= 3.2)
64
+ middleware
65
+ thor
66
+ thread_safe
67
+ rake (13.0.3)
68
+ rspec (3.10.0)
69
+ rspec-core (~> 3.10.0)
70
+ rspec-expectations (~> 3.10.0)
71
+ rspec-mocks (~> 3.10.0)
72
+ rspec-core (3.10.1)
73
+ rspec-support (~> 3.10.0)
74
+ rspec-expectations (3.10.1)
75
+ diff-lcs (>= 1.2.0, < 2.0)
76
+ rspec-support (~> 3.10.0)
77
+ rspec-mocks (3.10.2)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.10.0)
80
+ rspec-support (3.10.2)
81
+ sys-uname (1.2.2)
82
+ ffi (~> 1.1)
83
+ thor (1.1.0)
84
+ thread_safe (0.3.6)
85
+ tzinfo (2.0.4)
86
+ concurrent-ruby (~> 1.0)
87
+ zeitwerk (2.4.2)
88
+
89
+ PLATFORMS
90
+ ruby
91
+ x86_64-linux
92
+
93
+ DEPENDENCIES
94
+ aruba
95
+ cucumber (~> 4.1.0)
96
+ cucumber_priority!
97
+ gemika
98
+ rake
99
+ rspec (~> 3.0)
100
+
101
+ BUNDLED WITH
102
+ 2.2.3
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 5.3.0'
5
+
6
+ # Development dependencies
7
+ gem 'rspec', '~> 3.0'
8
+ gem 'gemika'
9
+ gem 'rake'
10
+ gem 'aruba'
11
+
12
+ # Gem under test
13
+ gem 'cucumber_priority', :path => '.'
@@ -0,0 +1,102 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ cucumber_priority (0.3.3)
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 (0.6.2)
17
+ childprocess (>= 0.3.6)
18
+ cucumber (>= 1.1.1)
19
+ rspec-expectations (>= 2.7.0)
20
+ builder (3.2.4)
21
+ childprocess (4.0.0)
22
+ concurrent-ruby (1.1.8)
23
+ cucumber (5.3.0)
24
+ builder (~> 3.2, >= 3.2.4)
25
+ cucumber-core (~> 8.0, >= 8.0.1)
26
+ cucumber-create-meta (~> 2.0, >= 2.0.2)
27
+ cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
28
+ cucumber-gherkin (~> 15.0, >= 15.0.2)
29
+ cucumber-html-formatter (~> 9.0, >= 9.0.0)
30
+ cucumber-messages (~> 13.1, >= 13.1.0)
31
+ cucumber-wire (~> 4.0, >= 4.0.1)
32
+ diff-lcs (~> 1.4, >= 1.4.4)
33
+ multi_test (~> 0.1, >= 0.1.2)
34
+ sys-uname (~> 1.2, >= 1.2.1)
35
+ cucumber-core (8.0.1)
36
+ cucumber-gherkin (~> 15.0, >= 15.0.2)
37
+ cucumber-messages (~> 13.0, >= 13.0.1)
38
+ cucumber-tag-expressions (~> 2.0, >= 2.0.4)
39
+ cucumber-create-meta (2.0.4)
40
+ cucumber-messages (~> 13.1, >= 13.1.0)
41
+ sys-uname (~> 1.2, >= 1.2.1)
42
+ cucumber-cucumber-expressions (10.3.0)
43
+ cucumber-gherkin (15.0.2)
44
+ cucumber-messages (~> 13.0, >= 13.0.1)
45
+ cucumber-html-formatter (9.0.0)
46
+ cucumber-messages (~> 13.0, >= 13.0.1)
47
+ cucumber-messages (13.2.1)
48
+ protobuf-cucumber (~> 3.10, >= 3.10.8)
49
+ cucumber-tag-expressions (2.0.4)
50
+ cucumber-wire (4.0.1)
51
+ cucumber-core (~> 8.0, >= 8.0.1)
52
+ cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
53
+ cucumber-messages (~> 13.0, >= 13.0.1)
54
+ diff-lcs (1.4.4)
55
+ ffi (1.15.0)
56
+ gemika (0.5.0)
57
+ i18n (1.8.9)
58
+ concurrent-ruby (~> 1.0)
59
+ middleware (0.1.0)
60
+ minitest (5.14.4)
61
+ multi_test (0.1.2)
62
+ protobuf-cucumber (3.10.8)
63
+ activesupport (>= 3.2)
64
+ middleware
65
+ thor
66
+ thread_safe
67
+ rake (13.0.3)
68
+ rspec (3.10.0)
69
+ rspec-core (~> 3.10.0)
70
+ rspec-expectations (~> 3.10.0)
71
+ rspec-mocks (~> 3.10.0)
72
+ rspec-core (3.10.1)
73
+ rspec-support (~> 3.10.0)
74
+ rspec-expectations (3.10.1)
75
+ diff-lcs (>= 1.2.0, < 2.0)
76
+ rspec-support (~> 3.10.0)
77
+ rspec-mocks (3.10.2)
78
+ diff-lcs (>= 1.2.0, < 2.0)
79
+ rspec-support (~> 3.10.0)
80
+ rspec-support (3.10.2)
81
+ sys-uname (1.2.2)
82
+ ffi (~> 1.1)
83
+ thor (1.1.0)
84
+ thread_safe (0.3.6)
85
+ tzinfo (2.0.4)
86
+ concurrent-ruby (~> 1.0)
87
+ zeitwerk (2.4.2)
88
+
89
+ PLATFORMS
90
+ ruby
91
+ x86_64-linux
92
+
93
+ DEPENDENCIES
94
+ aruba
95
+ cucumber (~> 5.3.0)
96
+ cucumber_priority!
97
+ gemika
98
+ rake
99
+ rspec (~> 3.0)
100
+
101
+ BUNDLED WITH
102
+ 2.2.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 [![Build Status](https://travis-ci.org/makandra/cucumber_priority.svg?branch=master)](https://travis-ci.org/makandra/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,16 @@ 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.0
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 `.travis.yml`. We provide some rake tasks to help with this:
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
86
  - Install development dependencies using `bundle matrix:install`
87
87
  - Run tests using `bundle matrix:spec`
88
88
 
89
- Note that we have configured Travis CI to automatically run tests in all supported Ruby versions and dependency sets after each push. We will only merge pull requests after a green Travis build.
89
+ 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
90
 
91
91
  If you would like to contribute:
92
92
 
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.summary = %q{Overridable step definitions for Cucumber}
12
12
  s.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
13
  s.license = 'MIT'
14
+ s.metadata = { 'rubygems_mfa_required' => 'true' }
14
15
 
15
16
  s.files = `git ls-files -z`.split("\x0").reject do |f|
16
17
  f.match(%r{^(gemfiles|bin|test|spec|features)/})
@@ -1,3 +1,3 @@
1
1
  module CucumberPriority
2
- VERSION = '0.3.2'
2
+ VERSION = '0.3.3'
3
3
  end
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber_priority
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
5
- prerelease:
4
+ version: 0.3.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Henning Koch
9
8
  autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2018-04-27 00:00:00.000000000 Z
11
+ date: 2022-03-16 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: cucumber
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  description: cucumber_priority provides a way to mark step definitions as overridable,
@@ -35,11 +32,23 @@ executables: []
35
32
  extensions: []
36
33
  extra_rdoc_files: []
37
34
  files:
38
- - .gitignore
39
- - .rspec
40
- - .ruby-version
41
- - .travis.yml
35
+ - ".github/workflows/test.yml"
36
+ - ".gitignore"
37
+ - ".rspec"
38
+ - ".ruby-version"
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
43
52
  - Gemfile.lock
44
53
  - LICENSE
45
54
  - README.md
@@ -55,26 +64,25 @@ files:
55
64
  homepage: http://github.com/makandra/cucumber_priority
56
65
  licenses:
57
66
  - MIT
67
+ metadata:
68
+ rubygems_mfa_required: 'true'
58
69
  post_install_message:
59
70
  rdoc_options: []
60
71
  require_paths:
61
72
  - lib
62
73
  required_ruby_version: !ruby/object:Gem::Requirement
63
- none: false
64
74
  requirements:
65
- - - ! '>='
75
+ - - ">="
66
76
  - !ruby/object:Gem::Version
67
77
  version: '0'
68
78
  required_rubygems_version: !ruby/object:Gem::Requirement
69
- none: false
70
79
  requirements:
71
- - - ! '>='
80
+ - - ">="
72
81
  - !ruby/object:Gem::Version
73
82
  version: '0'
74
83
  requirements: []
75
- rubyforge_project:
76
- rubygems_version: 1.8.23
84
+ rubygems_version: 3.3.9
77
85
  signing_key:
78
- specification_version: 3
86
+ specification_version: 4
79
87
  summary: Overridable step definitions for Cucumber
80
88
  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