cucumber_factory 2.0.1 → 2.0.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 +4 -4
- data/.travis.yml +0 -11
- data/CHANGELOG.md +5 -1
- data/Gemfile.cucumber-1.3 +5 -6
- data/Gemfile.cucumber-1.3.lock +46 -19
- data/Gemfile.cucumber-2.4.lock +1 -1
- data/Gemfile.cucumber-3.0.lock +1 -1
- data/Gemfile.cucumber-3.1.lock +1 -1
- data/lib/cucumber_factory/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eeed19e5c878629c3f87a038821a955401c40c19ca323577d7e84e3ae019f764
|
|
4
|
+
data.tar.gz: 2d3b57e9b739be6e69d28240c7553eec3882b2e200ca64c402a8cc646bcdc169
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 752a2cbe68fa53254741a792770ab0252f320a218fb3c39fe85679bcf6d8e1289fdee354042bb342d96789266c6f8ac02819393ee375d628def84679de281cad
|
|
7
|
+
data.tar.gz: aa2eb84a898e7d52f10b7272ad8f7c04a9d1dea4096d0a7fab04d9158a887f46839e7d36b83f9aec945b13b18f0b4550de19fe9df0897ccc1235f22f990b2b59
|
data/.travis.yml
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
rvm:
|
|
2
|
-
- 1.8.7
|
|
3
2
|
- 2.1.10
|
|
4
3
|
- 2.5.3
|
|
5
4
|
|
|
@@ -13,20 +12,10 @@ dist: trusty
|
|
|
13
12
|
|
|
14
13
|
matrix:
|
|
15
14
|
exclude:
|
|
16
|
-
- gemfile: Gemfile.cucumber-3.1
|
|
17
|
-
rvm: 1.8.7
|
|
18
15
|
- gemfile: Gemfile.cucumber-3.1
|
|
19
16
|
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
|
20
|
-
- gemfile: Gemfile.cucumber-3.0
|
|
21
|
-
rvm: 1.8.7
|
|
22
17
|
- gemfile: Gemfile.cucumber-3.0
|
|
23
18
|
rvm: 2.1.10 # cucumber 3 wants ruby >= 2.2
|
|
24
|
-
- gemfile: Gemfile.cucumber-2.4
|
|
25
|
-
rvm: 1.8.7
|
|
26
|
-
- gemfile: Gemfile.cucumber-1.3
|
|
27
|
-
rvm: 2.5.3 # doesn't work with old RSpec
|
|
28
|
-
- gemfile: Gemfile.cucumber-1.3
|
|
29
|
-
rvm: 2.1.10 # doesn't work with old RSpec
|
|
30
19
|
|
|
31
20
|
install:
|
|
32
21
|
# Replace default Travis CI bundler script with a version that doesn't
|
data/CHANGELOG.md
CHANGED
|
@@ -13,7 +13,11 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
13
13
|
|
|
14
14
|
### Compatible changes
|
|
15
15
|
|
|
16
|
-
-
|
|
16
|
+
## 2.0.2 - 2020-03-26
|
|
17
|
+
|
|
18
|
+
### Compatible changes
|
|
19
|
+
|
|
20
|
+
- Removed development and test support for Ruby 1.8. Closes #32.
|
|
17
21
|
|
|
18
22
|
## 2.0.1 - 2020-02-27
|
|
19
23
|
|
data/Gemfile.cucumber-1.3
CHANGED
|
@@ -2,14 +2,13 @@ source 'https://rubygems.org'
|
|
|
2
2
|
|
|
3
3
|
# Runtime dependencies
|
|
4
4
|
gem 'cucumber', '~> 1.3.20'
|
|
5
|
-
gem 'activesupport', '~> 2.
|
|
6
|
-
gem 'activerecord', '~> 2.
|
|
7
|
-
gem 'mysql2'
|
|
8
|
-
gem 'i18n', '=0.6.11' # 0.7 no longer builds for Ruby 1.8.7
|
|
5
|
+
gem 'activesupport', '~> 4.2.0'
|
|
6
|
+
gem 'activerecord', '~> 4.2.0'
|
|
7
|
+
gem 'mysql2'
|
|
9
8
|
|
|
10
9
|
# Development dependencies
|
|
11
|
-
gem 'rspec', '
|
|
12
|
-
gem 'rake', '
|
|
10
|
+
gem 'rspec', '> 3.0'
|
|
11
|
+
gem 'rake', '>=10.0.4'
|
|
13
12
|
gem 'database_cleaner', '~>1.0.0'
|
|
14
13
|
gem 'gemika'
|
|
15
14
|
|
data/Gemfile.cucumber-1.3.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
cucumber_factory (
|
|
4
|
+
cucumber_factory (2.0.2)
|
|
5
5
|
activerecord
|
|
6
6
|
activesupport
|
|
7
7
|
cucumber
|
|
@@ -10,10 +10,21 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
|
|
14
|
-
activesupport (= 2.
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
activemodel (4.2.11.1)
|
|
14
|
+
activesupport (= 4.2.11.1)
|
|
15
|
+
builder (~> 3.1)
|
|
16
|
+
activerecord (4.2.11.1)
|
|
17
|
+
activemodel (= 4.2.11.1)
|
|
18
|
+
activesupport (= 4.2.11.1)
|
|
19
|
+
arel (~> 6.0)
|
|
20
|
+
activesupport (4.2.11.1)
|
|
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.4)
|
|
27
|
+
concurrent-ruby (1.1.6)
|
|
17
28
|
cucumber (1.3.20)
|
|
18
29
|
builder (>= 2.1.2)
|
|
19
30
|
diff-lcs (>= 1.1.3)
|
|
@@ -23,31 +34,47 @@ GEM
|
|
|
23
34
|
cucumber_priority (0.3.2)
|
|
24
35
|
cucumber
|
|
25
36
|
database_cleaner (1.0.1)
|
|
26
|
-
diff-lcs (1.
|
|
27
|
-
gemika (0.
|
|
37
|
+
diff-lcs (1.3)
|
|
38
|
+
gemika (0.4.0)
|
|
28
39
|
gherkin (2.12.2)
|
|
29
40
|
multi_json (~> 1.3)
|
|
30
|
-
i18n (0.
|
|
31
|
-
|
|
41
|
+
i18n (0.9.5)
|
|
42
|
+
concurrent-ruby (~> 1.0)
|
|
43
|
+
minitest (5.12.0)
|
|
44
|
+
multi_json (1.14.1)
|
|
32
45
|
multi_test (0.1.2)
|
|
33
|
-
mysql2 (0.
|
|
34
|
-
rake (
|
|
35
|
-
rspec (
|
|
46
|
+
mysql2 (0.5.3)
|
|
47
|
+
rake (12.3.3)
|
|
48
|
+
rspec (3.9.0)
|
|
49
|
+
rspec-core (~> 3.9.0)
|
|
50
|
+
rspec-expectations (~> 3.9.0)
|
|
51
|
+
rspec-mocks (~> 3.9.0)
|
|
52
|
+
rspec-core (3.9.1)
|
|
53
|
+
rspec-support (~> 3.9.1)
|
|
54
|
+
rspec-expectations (3.9.0)
|
|
55
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
56
|
+
rspec-support (~> 3.9.0)
|
|
57
|
+
rspec-mocks (3.9.1)
|
|
58
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
59
|
+
rspec-support (~> 3.9.0)
|
|
60
|
+
rspec-support (3.9.2)
|
|
61
|
+
thread_safe (0.3.6)
|
|
62
|
+
tzinfo (1.2.6)
|
|
63
|
+
thread_safe (~> 0.1)
|
|
36
64
|
|
|
37
65
|
PLATFORMS
|
|
38
66
|
ruby
|
|
39
67
|
|
|
40
68
|
DEPENDENCIES
|
|
41
|
-
activerecord (~> 2.
|
|
42
|
-
activesupport (~> 2.
|
|
69
|
+
activerecord (~> 4.2.0)
|
|
70
|
+
activesupport (~> 4.2.0)
|
|
43
71
|
cucumber (~> 1.3.20)
|
|
44
72
|
cucumber_factory!
|
|
45
73
|
database_cleaner (~> 1.0.0)
|
|
46
74
|
gemika
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
rspec (~> 1.0)
|
|
75
|
+
mysql2
|
|
76
|
+
rake (>= 10.0.4)
|
|
77
|
+
rspec (> 3.0)
|
|
51
78
|
|
|
52
79
|
BUNDLED WITH
|
|
53
|
-
1.17.
|
|
80
|
+
1.17.3
|
data/Gemfile.cucumber-2.4.lock
CHANGED
data/Gemfile.cucumber-3.0.lock
CHANGED
data/Gemfile.cucumber-3.1.lock
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber_factory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber
|