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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0018303b5e8f5bdbd4beed10437846c6b51ccb3a241e04f134784569ac44f70e'
4
- data.tar.gz: 3d57005ccf8fc284ee73b00abbd8c05e0e2994d9b1640c6cbc1d2dc487faa711
3
+ metadata.gz: eeed19e5c878629c3f87a038821a955401c40c19ca323577d7e84e3ae019f764
4
+ data.tar.gz: 2d3b57e9b739be6e69d28240c7553eec3882b2e200ca64c402a8cc646bcdc169
5
5
  SHA512:
6
- metadata.gz: 6dda3560f3d20781d18da3f536cd990704a191ba3cd5e0027b163f6303ab1192e4154c8550bbb8036a6d526b6999aa45a64e8e06d94096ee8fb0167085c8b09f
7
- data.tar.gz: 1aade9eef28b0a68f1fbaae8e623cf4bf60d9287988efb3ad22ab266842b029d13e7da57f045deae9079930c5b36fa14a3a2406eeacb2c453b3755cb0a97a5aa
6
+ metadata.gz: 752a2cbe68fa53254741a792770ab0252f320a218fb3c39fe85679bcf6d8e1289fdee354042bb342d96789266c6f8ac02819393ee375d628def84679de281cad
7
+ data.tar.gz: aa2eb84a898e7d52f10b7272ad8f7c04a9d1dea4096d0a7fab04d9158a887f46839e7d36b83f9aec945b13b18f0b4550de19fe9df0897ccc1235f22f990b2b59
@@ -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
@@ -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
 
@@ -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.3.0'
6
- gem 'activerecord', '~> 2.3.0'
7
- gem 'mysql2', '= 0.2.20'
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', '~> 1.0'
12
- gem 'rake', '=10.0.4'
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
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cucumber_factory (1.15.0)
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
- activerecord (2.3.18)
14
- activesupport (= 2.3.18)
15
- activesupport (2.3.18)
16
- builder (3.2.2)
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.2.5)
27
- gemika (0.3.2)
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.6.11)
31
- multi_json (1.11.2)
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.2.20)
34
- rake (10.0.4)
35
- rspec (1.3.2)
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.3.0)
42
- activesupport (~> 2.3.0)
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
- i18n (= 0.6.11)
48
- mysql2 (= 0.2.20)
49
- rake (= 10.0.4)
50
- rspec (~> 1.0)
75
+ mysql2
76
+ rake (>= 10.0.4)
77
+ rspec (> 3.0)
51
78
 
52
79
  BUNDLED WITH
53
- 1.17.1
80
+ 1.17.3
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cucumber_factory (2.0.1)
4
+ cucumber_factory (2.0.2)
5
5
  activerecord
6
6
  activesupport
7
7
  cucumber
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cucumber_factory (2.0.1)
4
+ cucumber_factory (2.0.2)
5
5
  activerecord
6
6
  activesupport
7
7
  cucumber
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cucumber_factory (2.0.1)
4
+ cucumber_factory (2.0.2)
5
5
  activerecord
6
6
  activesupport
7
7
  cucumber
@@ -1,3 +1,3 @@
1
1
  module CucumberFactory
2
- VERSION = '2.0.1'
2
+ VERSION = '2.0.2'
3
3
  end
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.1
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-02-27 00:00:00.000000000 Z
11
+ date: 2020-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cucumber