cucumber_factory 1.11.5 → 1.11.6
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/Gemfile +16 -0
- data/Gemfile.lock +84 -0
- data/gemfiles/Gemfile.cucumber-1.3.lock +1 -1
- data/gemfiles/Gemfile.cucumber-2.4.lock +1 -1
- data/gemfiles/Gemfile.cucumber-3.0.lock +1 -1
- data/lib/cucumber/factory.rb +1 -1
- data/lib/cucumber_factory/version.rb +1 -1
- metadata +3 -3
- data/Gemfile +0 -1
- data/Gemfile.lock +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4d6b973fd7ad31492cf5b8503bb0f37be0bcb797
|
|
4
|
+
data.tar.gz: 639749edbb85337ce52d992d099df10736efd2b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e9a5b3e0a09fcddf963810fe09897e0b1545cd3bc5238770e4b7a9b246611abe19609c49da1f6afd35fb85d795a768505d8cb068cd8f64564830ebecc118d2e
|
|
7
|
+
data.tar.gz: b3a06bdb3a2b3a3ddf63de42bb9d9d8f18f570a14c650dcb44c434dbf431c445e228711650788b4fe056e2fcedace71929e47af1f6f2245771ffd6b76d776b7c
|
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 => '..'
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ..
|
|
3
|
+
specs:
|
|
4
|
+
cucumber_factory (1.11.6)
|
|
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.7.1)
|
|
14
|
+
activesupport (= 4.2.7.1)
|
|
15
|
+
builder (~> 3.1)
|
|
16
|
+
activerecord (4.2.7.1)
|
|
17
|
+
activemodel (= 4.2.7.1)
|
|
18
|
+
activesupport (= 4.2.7.1)
|
|
19
|
+
arel (~> 6.0)
|
|
20
|
+
activesupport (4.2.7.1)
|
|
21
|
+
i18n (~> 0.7)
|
|
22
|
+
json (~> 1.7, >= 1.7.7)
|
|
23
|
+
minitest (~> 5.1)
|
|
24
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
|
25
|
+
tzinfo (~> 1.1)
|
|
26
|
+
arel (6.0.4)
|
|
27
|
+
builder (3.2.2)
|
|
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.2.0)
|
|
40
|
+
cucumber
|
|
41
|
+
database_cleaner (1.5.3)
|
|
42
|
+
diff-lcs (1.2.5)
|
|
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)
|
|
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)
|
|
59
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
60
|
+
rspec-support (~> 3.5.0)
|
|
61
|
+
rspec-mocks (3.5.0)
|
|
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)
|
|
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.13.7
|
data/lib/cucumber/factory.rb
CHANGED
|
@@ -9,7 +9,7 @@ module Cucumber
|
|
|
9
9
|
|
|
10
10
|
CLEAR_NAMED_RECORDS_STEP_DESCRIPTOR = {
|
|
11
11
|
:kind => :Before,
|
|
12
|
-
:block => proc { Cucumber::Factory.send(:
|
|
12
|
+
:block => proc { Cucumber::Factory.send(:reset_named_records, self) }
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
NAMED_CREATION_STEP_DESCRIPTOR = {
|
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: 1.11.
|
|
4
|
+
version: 1.11.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henning Koch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-05-
|
|
11
|
+
date: 2017-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cucumber
|
|
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
version: '0'
|
|
132
132
|
requirements: []
|
|
133
133
|
rubyforge_project:
|
|
134
|
-
rubygems_version: 2.
|
|
134
|
+
rubygems_version: 2.4.5.1
|
|
135
135
|
signing_key:
|
|
136
136
|
specification_version: 4
|
|
137
137
|
summary: Create records from Cucumber features without writing step definitions.
|
data/Gemfile
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
./gemfiles/Gemfile.cucumber-2.4
|
data/Gemfile.lock
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
./gemfiles/Gemfile.cucumber-2.4.lock
|