cucumber_factory 2.5.0 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +27 -8
- data/.ruby-version +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile +1 -1
- data/Gemfile.cucumber-1.3 +1 -1
- data/Gemfile.cucumber-1.3.lock +3 -3
- data/Gemfile.cucumber-2.4 +1 -1
- data/Gemfile.cucumber-2.4.lock +4 -4
- data/Gemfile.cucumber-3.0 +1 -1
- data/Gemfile.cucumber-3.0.lock +3 -3
- data/Gemfile.cucumber-3.1 +1 -1
- data/Gemfile.cucumber-3.1.lock +4 -4
- data/Gemfile.cucumber-4.1 +3 -3
- data/Gemfile.cucumber-4.1.lock +7 -7
- data/Gemfile.cucumber-5.3 +3 -3
- data/Gemfile.cucumber-5.3.lock +7 -7
- data/Gemfile.lock +1 -1
- data/Gemfile.rails-7 +12 -6
- data/Gemfile.rails-7.lock +88 -94
- data/Gemfile.rails-8 +20 -0
- data/Gemfile.rails-8.lock +162 -0
- data/README.md +22 -2
- data/cucumber_factory.gemspec +23 -19
- data/lib/cucumber_factory/version.rb +1 -1
- data/media/logo.dark.shapes.svg +168 -0
- data/media/logo.dark.text.svg +110 -0
- data/media/logo.light.shapes.svg +165 -0
- data/media/logo.light.text.svg +107 -0
- data/media/makandra-with-bottom-margin.dark.svg +180 -0
- data/media/makandra-with-bottom-margin.light.svg +180 -0
- data/spec/spec_helper.rb +7 -1
- metadata +16 -8
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber_factory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henning Koch
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-21 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: cucumber
|
@@ -94,6 +93,8 @@ files:
|
|
94
93
|
- Gemfile.lock
|
95
94
|
- Gemfile.rails-7
|
96
95
|
- Gemfile.rails-7.lock
|
96
|
+
- Gemfile.rails-8
|
97
|
+
- Gemfile.rails-8.lock
|
97
98
|
- LICENSE
|
98
99
|
- README.md
|
99
100
|
- Rakefile
|
@@ -105,6 +106,12 @@ files:
|
|
105
106
|
- lib/cucumber_factory/switcher.rb
|
106
107
|
- lib/cucumber_factory/update_strategy.rb
|
107
108
|
- lib/cucumber_factory/version.rb
|
109
|
+
- media/logo.dark.shapes.svg
|
110
|
+
- media/logo.dark.text.svg
|
111
|
+
- media/logo.light.shapes.svg
|
112
|
+
- media/logo.light.text.svg
|
113
|
+
- media/makandra-with-bottom-margin.dark.svg
|
114
|
+
- media/makandra-with-bottom-margin.light.svg
|
108
115
|
- spec/assets/file.txt
|
109
116
|
- spec/assets/file2.txt
|
110
117
|
- spec/assets/symlink.txt
|
@@ -126,12 +133,14 @@ files:
|
|
126
133
|
- spec/support/models/user.rb
|
127
134
|
- spec/support/models/uuid_user.rb
|
128
135
|
- spec/support/uploaders/attachment_uploader.rb
|
129
|
-
homepage:
|
136
|
+
homepage: https://github.com/makandra/cucumber_factory
|
130
137
|
licenses:
|
131
138
|
- MIT
|
132
139
|
metadata:
|
140
|
+
source_code_uri: https://github.com/makandra/cucumber_factory
|
141
|
+
bug_tracker_uri: https://github.com/makandra/cucumber_factory/issues
|
142
|
+
changelog_uri: https://github.com/makandra/cucumber_factory/blob/master/CHANGELOG.md
|
133
143
|
rubygems_mfa_required: 'true'
|
134
|
-
post_install_message:
|
135
144
|
rdoc_options: []
|
136
145
|
require_paths:
|
137
146
|
- lib
|
@@ -146,8 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
155
|
- !ruby/object:Gem::Version
|
147
156
|
version: '0'
|
148
157
|
requirements: []
|
149
|
-
rubygems_version: 3.3
|
150
|
-
signing_key:
|
158
|
+
rubygems_version: 3.6.3
|
151
159
|
specification_version: 4
|
152
|
-
summary: Create records from Cucumber features without writing step
|
160
|
+
summary: Create records from Cucumber features without writing step definition.
|
153
161
|
test_files: []
|