cucumber_factory 1.11.9 → 1.12.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.
@@ -1 +1 @@
1
- 2.3.3
1
+ 2.5.0
@@ -1,29 +1,35 @@
1
1
  rvm:
2
2
  - 1.8.7
3
3
  - 2.1.10
4
- - 2.3.3
4
+ - 2.5.0
5
5
 
6
6
  gemfile:
7
7
  - gemfiles/Gemfile.cucumber-1.3
8
8
  - gemfiles/Gemfile.cucumber-2.4
9
9
  - gemfiles/Gemfile.cucumber-3.0
10
+ - gemfiles/Gemfile.cucumber-3.1
10
11
 
11
12
  matrix:
12
13
  exclude:
13
- - gemfile: gemfiles/Gemfile.cucumber-3.0
14
- rvm: 2.1.10
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
15
18
  - gemfile: gemfiles/Gemfile.cucumber-3.0
16
19
  rvm: 1.8.7
20
+ - gemfile: gemfiles/Gemfile.cucumber-3.0
21
+ rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
17
22
  - gemfile: gemfiles/Gemfile.cucumber-2.4
18
23
  rvm: 1.8.7
19
24
  - gemfile: gemfiles/Gemfile.cucumber-1.3
20
- rvm: 2.3.3 # doesn't work with old RSpec and activesupport
25
+ rvm: 2.5.0 # doesn't work with old RSpec
21
26
  - gemfile: gemfiles/Gemfile.cucumber-1.3
22
- rvm: 2.1.10 # doesn't work with old RSpec and activesupport
27
+ rvm: 2.1.10 # doesn't work with old RSpec
23
28
 
24
29
  install:
25
30
  # Replace default Travis CI bundler script with a version that doesn't
26
31
  # explode when lockfile doesn't match recently bumped version
32
+ - gem update --system
27
33
  - bundle install --no-deployment --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
28
34
 
29
35
  before_script:
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 2.4.0'
5
+ gem 'activesupport', '~> 4.2.0'
6
+ gem 'activerecord', '~> 4.2.0'
7
+ gem 'mysql2'
8
+
9
+ # Development dependencies
10
+ gem 'rspec', '~> 3.0'
11
+ gem 'rake'
12
+ gem 'database_cleaner'
13
+ gem 'gemika'
14
+
15
+ # Gem under test
16
+ gem 'cucumber_factory', :path => '..'
@@ -0,0 +1,84 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cucumber_factory (1.11.9)
5
+ activerecord
6
+ activesupport
7
+ cucumber
8
+ cucumber_priority (>= 0.2.0)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ activemodel (4.2.10)
14
+ activesupport (= 4.2.10)
15
+ builder (~> 3.1)
16
+ activerecord (4.2.10)
17
+ activemodel (= 4.2.10)
18
+ activesupport (= 4.2.10)
19
+ arel (~> 6.0)
20
+ activesupport (4.2.10)
21
+ i18n (~> 0.7)
22
+ minitest (~> 5.1)
23
+ thread_safe (~> 0.3, >= 0.3.4)
24
+ tzinfo (~> 1.1)
25
+ arel (6.0.4)
26
+ builder (3.2.3)
27
+ concurrent-ruby (1.0.5)
28
+ cucumber (2.4.0)
29
+ builder (>= 2.1.2)
30
+ cucumber-core (~> 1.5.0)
31
+ cucumber-wire (~> 0.0.1)
32
+ diff-lcs (>= 1.1.3)
33
+ gherkin (~> 4.0)
34
+ multi_json (>= 1.7.5, < 2.0)
35
+ multi_test (>= 0.1.2)
36
+ cucumber-core (1.5.0)
37
+ gherkin (~> 4.0)
38
+ cucumber-wire (0.0.1)
39
+ cucumber_priority (0.3.0)
40
+ cucumber
41
+ database_cleaner (1.6.2)
42
+ diff-lcs (1.3)
43
+ gemika (0.3.2)
44
+ gherkin (4.1.3)
45
+ i18n (0.9.5)
46
+ concurrent-ruby (~> 1.0)
47
+ minitest (5.11.3)
48
+ multi_json (1.13.1)
49
+ multi_test (0.1.2)
50
+ mysql2 (0.4.10)
51
+ rake (12.3.0)
52
+ rspec (3.7.0)
53
+ rspec-core (~> 3.7.0)
54
+ rspec-expectations (~> 3.7.0)
55
+ rspec-mocks (~> 3.7.0)
56
+ rspec-core (3.7.1)
57
+ rspec-support (~> 3.7.0)
58
+ rspec-expectations (3.7.0)
59
+ diff-lcs (>= 1.2.0, < 2.0)
60
+ rspec-support (~> 3.7.0)
61
+ rspec-mocks (3.7.0)
62
+ diff-lcs (>= 1.2.0, < 2.0)
63
+ rspec-support (~> 3.7.0)
64
+ rspec-support (3.7.1)
65
+ thread_safe (0.3.6)
66
+ tzinfo (1.2.5)
67
+ thread_safe (~> 0.1)
68
+
69
+ PLATFORMS
70
+ ruby
71
+
72
+ DEPENDENCIES
73
+ activerecord (~> 4.2.0)
74
+ activesupport (~> 4.2.0)
75
+ cucumber (~> 2.4.0)
76
+ cucumber_factory!
77
+ database_cleaner
78
+ gemika
79
+ mysql2
80
+ rake
81
+ rspec (~> 3.0)
82
+
83
+ BUNDLED WITH
84
+ 1.16.1
data/README.md CHANGED
@@ -108,7 +108,7 @@ Custom steps will always be preferred over factory steps. Also Cucumber will not
108
108
  Supported Cucumber versions
109
109
  ----------------------------
110
110
 
111
- cucumber_factory is tested against Cucumber 1.3, 2.4 and 3.0.
111
+ cucumber_factory is tested against Cucumber 1.3, 2.4, 3.0 and 3.1.
112
112
 
113
113
 
114
114
  Installation
@@ -130,7 +130,7 @@ Development
130
130
 
131
131
  There are tests in `spec`. We only accept PRs with tests. To run tests:
132
132
 
133
- - Install Ruby 2.3.3
133
+ - Install Ruby 2.5.0
134
134
  - Create a local MySQL database `cucumber_factory_test`
135
135
  - Copy `spec/support/database.sample.yml` to `spec/support/database.yml` and enter your local credentials for the test databases
136
136
  - Install development dependencies using `bundle install`
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cucumber_factory (1.11.8)
4
+ cucumber_factory (1.11.9)
5
5
  activerecord
6
6
  activesupport
7
7
  cucumber
@@ -20,7 +20,7 @@ GEM
20
20
  gherkin (~> 2.12)
21
21
  multi_json (>= 1.7.5, < 2.0)
22
22
  multi_test (>= 0.1.2)
23
- cucumber_priority (0.2.0)
23
+ cucumber_priority (0.3.0)
24
24
  cucumber
25
25
  database_cleaner (1.0.1)
26
26
  diff-lcs (1.2.5)
@@ -50,4 +50,4 @@ DEPENDENCIES
50
50
  rspec (~> 1.0)
51
51
 
52
52
  BUNDLED WITH
53
- 1.16.0
53
+ 1.16.1
@@ -10,21 +10,21 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activemodel (4.2.7.1)
14
- activesupport (= 4.2.7.1)
13
+ activemodel (4.2.10)
14
+ activesupport (= 4.2.10)
15
15
  builder (~> 3.1)
16
- activerecord (4.2.7.1)
17
- activemodel (= 4.2.7.1)
18
- activesupport (= 4.2.7.1)
16
+ activerecord (4.2.10)
17
+ activemodel (= 4.2.10)
18
+ activesupport (= 4.2.10)
19
19
  arel (~> 6.0)
20
- activesupport (4.2.7.1)
20
+ activesupport (4.2.10)
21
21
  i18n (~> 0.7)
22
- json (~> 1.7, >= 1.7.7)
23
22
  minitest (~> 5.1)
24
23
  thread_safe (~> 0.3, >= 0.3.4)
25
24
  tzinfo (~> 1.1)
26
25
  arel (6.0.4)
27
- builder (3.2.2)
26
+ builder (3.2.3)
27
+ concurrent-ruby (1.0.5)
28
28
  cucumber (2.4.0)
29
29
  builder (>= 2.1.2)
30
30
  cucumber-core (~> 1.5.0)
@@ -36,34 +36,34 @@ GEM
36
36
  cucumber-core (1.5.0)
37
37
  gherkin (~> 4.0)
38
38
  cucumber-wire (0.0.1)
39
- cucumber_priority (0.2.0)
39
+ cucumber_priority (0.3.0)
40
40
  cucumber
41
- database_cleaner (1.5.3)
42
- diff-lcs (1.2.5)
41
+ database_cleaner (1.6.2)
42
+ diff-lcs (1.3)
43
43
  gemika (0.3.2)
44
- gherkin (4.0.0)
45
- i18n (0.7.0)
46
- json (1.8.3)
47
- minitest (5.10.1)
48
- multi_json (1.12.1)
44
+ gherkin (4.1.3)
45
+ i18n (0.9.5)
46
+ concurrent-ruby (~> 1.0)
47
+ minitest (5.11.3)
48
+ multi_json (1.13.1)
49
49
  multi_test (0.1.2)
50
- mysql2 (0.4.5)
51
- rake (12.0.0)
52
- rspec (3.5.0)
53
- rspec-core (~> 3.5.0)
54
- rspec-expectations (~> 3.5.0)
55
- rspec-mocks (~> 3.5.0)
56
- rspec-core (3.5.4)
57
- rspec-support (~> 3.5.0)
58
- rspec-expectations (3.5.0)
50
+ mysql2 (0.4.10)
51
+ rake (12.3.0)
52
+ rspec (3.7.0)
53
+ rspec-core (~> 3.7.0)
54
+ rspec-expectations (~> 3.7.0)
55
+ rspec-mocks (~> 3.7.0)
56
+ rspec-core (3.7.1)
57
+ rspec-support (~> 3.7.0)
58
+ rspec-expectations (3.7.0)
59
59
  diff-lcs (>= 1.2.0, < 2.0)
60
- rspec-support (~> 3.5.0)
61
- rspec-mocks (3.5.0)
60
+ rspec-support (~> 3.7.0)
61
+ rspec-mocks (3.7.0)
62
62
  diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.5.0)
64
- rspec-support (3.5.0)
65
- thread_safe (0.3.5)
66
- tzinfo (1.2.2)
63
+ rspec-support (~> 3.7.0)
64
+ rspec-support (3.7.1)
65
+ thread_safe (0.3.6)
66
+ tzinfo (1.2.5)
67
67
  thread_safe (~> 0.1)
68
68
 
69
69
  PLATFORMS
@@ -81,4 +81,4 @@ DEPENDENCIES
81
81
  rspec (~> 3.0)
82
82
 
83
83
  BUNDLED WITH
84
- 1.14.6
84
+ 1.16.1
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Runtime dependencies
4
- gem 'cucumber', '~> 3.0.0.pre.1'
4
+ gem 'cucumber', '~> 3.0.0'
5
5
  gem 'activesupport', '~> 5.0.0'
6
6
  gem 'activerecord', '~> 5.0.0'
7
7
  gem 'mysql2'
@@ -10,60 +10,65 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activemodel (5.0.1)
14
- activesupport (= 5.0.1)
15
- activerecord (5.0.1)
16
- activemodel (= 5.0.1)
17
- activesupport (= 5.0.1)
13
+ activemodel (5.0.6)
14
+ activesupport (= 5.0.6)
15
+ activerecord (5.0.6)
16
+ activemodel (= 5.0.6)
17
+ activesupport (= 5.0.6)
18
18
  arel (~> 7.0)
19
- activesupport (5.0.1)
19
+ activesupport (5.0.6)
20
20
  concurrent-ruby (~> 1.0, >= 1.0.2)
21
21
  i18n (~> 0.7)
22
22
  minitest (~> 5.1)
23
23
  tzinfo (~> 1.1)
24
24
  arel (7.1.4)
25
- backports (3.6.8)
26
- builder (3.2.2)
27
- concurrent-ruby (1.0.4)
28
- cucumber (3.0.0.pre.1)
25
+ backports (3.11.1)
26
+ builder (3.2.3)
27
+ concurrent-ruby (1.0.5)
28
+ cucumber (3.0.2)
29
29
  builder (>= 2.1.2)
30
- cucumber-core (~> 2.0)
30
+ cucumber-core (~> 3.0.0)
31
+ cucumber-expressions (~> 4.0.3)
31
32
  cucumber-wire (~> 0.0.1)
32
- diff-lcs (>= 1.1.3)
33
+ diff-lcs (~> 1.3)
33
34
  gherkin (~> 4.0)
34
35
  multi_json (>= 1.7.5, < 2.0)
35
36
  multi_test (>= 0.1.2)
36
- cucumber-core (2.0.0)
37
- backports (~> 3.6)
38
- gherkin (~> 4.0)
37
+ cucumber-core (3.0.0)
38
+ backports (>= 3.8.0)
39
+ cucumber-tag_expressions (>= 1.0.1)
40
+ gherkin (>= 4.1.3)
41
+ cucumber-expressions (4.0.4)
42
+ cucumber-tag_expressions (1.1.1)
39
43
  cucumber-wire (0.0.1)
40
- cucumber_priority (0.2.0)
44
+ cucumber_priority (0.3.0)
41
45
  cucumber
42
- database_cleaner (1.5.3)
43
- diff-lcs (1.2.5)
46
+ database_cleaner (1.6.2)
47
+ diff-lcs (1.3)
44
48
  gemika (0.3.2)
45
- gherkin (4.0.0)
46
- i18n (0.7.0)
47
- minitest (5.10.1)
48
- multi_json (1.12.1)
49
+ gherkin (4.1.3)
50
+ i18n (0.9.5)
51
+ concurrent-ruby (~> 1.0)
52
+ minitest (5.11.3)
53
+ multi_json (1.13.1)
49
54
  multi_test (0.1.2)
50
- mysql2 (0.4.5)
51
- rake (12.0.0)
52
- rspec (3.5.0)
53
- rspec-core (~> 3.5.0)
54
- rspec-expectations (~> 3.5.0)
55
- rspec-mocks (~> 3.5.0)
56
- rspec-core (3.5.4)
57
- rspec-support (~> 3.5.0)
58
- rspec-expectations (3.5.0)
55
+ mysql2 (0.4.10)
56
+ rake (12.3.0)
57
+ rspec (3.7.0)
58
+ rspec-core (~> 3.7.0)
59
+ rspec-expectations (~> 3.7.0)
60
+ rspec-mocks (~> 3.7.0)
61
+ rspec-core (3.7.1)
62
+ rspec-support (~> 3.7.0)
63
+ rspec-expectations (3.7.0)
59
64
  diff-lcs (>= 1.2.0, < 2.0)
60
- rspec-support (~> 3.5.0)
61
- rspec-mocks (3.5.0)
65
+ rspec-support (~> 3.7.0)
66
+ rspec-mocks (3.7.0)
62
67
  diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.5.0)
64
- rspec-support (3.5.0)
65
- thread_safe (0.3.5)
66
- tzinfo (1.2.2)
68
+ rspec-support (~> 3.7.0)
69
+ rspec-support (3.7.1)
70
+ thread_safe (0.3.6)
71
+ tzinfo (1.2.5)
67
72
  thread_safe (~> 0.1)
68
73
 
69
74
  PLATFORMS
@@ -72,7 +77,7 @@ PLATFORMS
72
77
  DEPENDENCIES
73
78
  activerecord (~> 5.0.0)
74
79
  activesupport (~> 5.0.0)
75
- cucumber (~> 3.0.0.pre.1)
80
+ cucumber (~> 3.0.0)
76
81
  cucumber_factory!
77
82
  database_cleaner
78
83
  gemika
@@ -81,4 +86,4 @@ DEPENDENCIES
81
86
  rspec (~> 3.0)
82
87
 
83
88
  BUNDLED WITH
84
- 1.14.6
89
+ 1.16.1
@@ -0,0 +1,16 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 3.1.0'
5
+ gem 'activesupport', '~> 5.1.0'
6
+ gem 'activerecord', '~> 5.1.0'
7
+ gem 'mysql2'
8
+
9
+ # Development dependencies
10
+ gem 'rspec', '~> 3.0'
11
+ gem 'rake'
12
+ gem 'database_cleaner'
13
+ gem 'gemika'
14
+
15
+ # Gem under test
16
+ gem 'cucumber_factory', :path => '..'
@@ -0,0 +1,89 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cucumber_factory (1.11.9)
5
+ activerecord
6
+ activesupport
7
+ cucumber
8
+ cucumber_priority (>= 0.2.0)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ activemodel (5.1.5)
14
+ activesupport (= 5.1.5)
15
+ activerecord (5.1.5)
16
+ activemodel (= 5.1.5)
17
+ activesupport (= 5.1.5)
18
+ arel (~> 8.0)
19
+ activesupport (5.1.5)
20
+ concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ i18n (~> 0.7)
22
+ minitest (~> 5.1)
23
+ tzinfo (~> 1.1)
24
+ arel (8.0.0)
25
+ backports (3.11.1)
26
+ builder (3.2.3)
27
+ concurrent-ruby (1.0.5)
28
+ cucumber (3.1.0)
29
+ builder (>= 2.1.2)
30
+ cucumber-core (~> 3.1.0)
31
+ cucumber-expressions (~> 5.0.4)
32
+ cucumber-wire (~> 0.0.1)
33
+ diff-lcs (~> 1.3)
34
+ gherkin (~> 5.0)
35
+ multi_json (>= 1.7.5, < 2.0)
36
+ multi_test (>= 0.1.2)
37
+ cucumber-core (3.1.0)
38
+ backports (>= 3.8.0)
39
+ cucumber-tag_expressions (~> 1.1.0)
40
+ gherkin (>= 5.0.0)
41
+ cucumber-expressions (5.0.13)
42
+ cucumber-tag_expressions (1.1.1)
43
+ cucumber-wire (0.0.1)
44
+ cucumber_priority (0.3.0)
45
+ cucumber
46
+ database_cleaner (1.6.2)
47
+ diff-lcs (1.3)
48
+ gemika (0.3.2)
49
+ gherkin (5.0.0)
50
+ i18n (0.9.5)
51
+ concurrent-ruby (~> 1.0)
52
+ minitest (5.11.3)
53
+ multi_json (1.13.1)
54
+ multi_test (0.1.2)
55
+ mysql2 (0.4.10)
56
+ rake (12.3.0)
57
+ rspec (3.7.0)
58
+ rspec-core (~> 3.7.0)
59
+ rspec-expectations (~> 3.7.0)
60
+ rspec-mocks (~> 3.7.0)
61
+ rspec-core (3.7.1)
62
+ rspec-support (~> 3.7.0)
63
+ rspec-expectations (3.7.0)
64
+ diff-lcs (>= 1.2.0, < 2.0)
65
+ rspec-support (~> 3.7.0)
66
+ rspec-mocks (3.7.0)
67
+ diff-lcs (>= 1.2.0, < 2.0)
68
+ rspec-support (~> 3.7.0)
69
+ rspec-support (3.7.1)
70
+ thread_safe (0.3.6)
71
+ tzinfo (1.2.5)
72
+ thread_safe (~> 0.1)
73
+
74
+ PLATFORMS
75
+ ruby
76
+
77
+ DEPENDENCIES
78
+ activerecord (~> 5.1.0)
79
+ activesupport (~> 5.1.0)
80
+ cucumber (~> 3.1.0)
81
+ cucumber_factory!
82
+ database_cleaner
83
+ gemika
84
+ mysql2
85
+ rake
86
+ rspec (~> 3.0)
87
+
88
+ BUNDLED WITH
89
+ 1.16.1