pickle 0.6.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65a9850f97ef599bceb024b95fba2c35df30afe28c1beb85941bcff6e8bc6172
4
- data.tar.gz: 6961363fcf4132b185f989fb74ae21323da46663b144a52035579566dc05aba9
3
+ metadata.gz: 997d67d028865e06ac4c9c77eeba9f6441dcae8f3381c0654448e8deac15b39d
4
+ data.tar.gz: 30d88f795a6f0ae4848f49626db1043d7ec62c21fc3104c1289e0e4f9e2412c3
5
5
  SHA512:
6
- metadata.gz: df190d3264baa28df348f75672c04a001a442bb12fbe685fb0ee734dbf406cdb8af236b1186fb1be1c7fa74eb2f7b8240a1acf34075f3801f3ff9ac4b706230b
7
- data.tar.gz: 4dd1896f3d92d99f90e675bd9b036b6cebdc6154defa127fd95aec9570e30f82753b52d66d9a9d3ef688e144f8420ff515caf70e0637bad3305cfa570a2817fb
6
+ metadata.gz: 05f1f30462caa117b5defd9e44a1873da2e410eb7949e732c978ddc39883da365a3f8455a59e008e719575e680b50f654b8d67f2f0e787aeb785cacb1bb887a2
7
+ data.tar.gz: 62f19ff6ed9fd4adf66df85e5fc7a119e55bae972aea566bdb61598383f96f4d6f60647ef85b13e604bb5d48ec989425f0fa4ae22e4ce76a02750138bae43daa
@@ -0,0 +1,106 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: build
9
+
10
+ on: [push, pull_request]
11
+
12
+ jobs:
13
+ test:
14
+ runs-on: ubuntu-20.04
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ ruby:
19
+ - '3.1'
20
+ - '3.0'
21
+ - 2.7
22
+ - 2.6
23
+ - 2.5
24
+ gemfile:
25
+ # Cucumber 3.2+
26
+ - Gemfile-rails.4.2.x
27
+ - Gemfile-rails.5.0.x
28
+ - Gemfile-rails.5.1.x
29
+ - Gemfile-rails.5.2.x
30
+ - Gemfile-rails.6.0.x-cukes-3
31
+ - Gemfile-rails.6.1.x-cukes-3
32
+ # Cucumber 4.1+
33
+ - Gemfile-rails.5.2.x-cukes-4
34
+ - Gemfile-rails.6.0.x-cukes-4
35
+ # Cucumber 5.3+
36
+ - Gemfile-rails.5.2.x-cukes-5
37
+ - Gemfile-rails.6.0.x-cukes-5
38
+ - Gemfile-rails.6.1.x-cukes-5
39
+ # Cucumber 6
40
+ - Gemfile-rails.6.0.x-cukes-6
41
+ - Gemfile-rails.6.1.x-cukes-6
42
+ - Gemfile-rails.7.0.x-cukes-6
43
+ # Cucumber 7
44
+ - Gemfile-rails.6.0.x-cukes-7
45
+ - Gemfile-rails.6.1.x-cukes-7
46
+ - Gemfile-rails.7.0.x-cukes-7
47
+ # Edge
48
+ - Gemfile-rails.edge
49
+ exclude:
50
+ # Rails edge is now 7.x and requires ruby 2.7
51
+ - gemfile: Gemfile-rails.edge
52
+ ruby: 2.6
53
+ - gemfile: Gemfile-rails.edge
54
+ ruby: 2.5
55
+ - gemfile: Gemfile-rails.7.0.x-cukes-7
56
+ ruby: 2.6
57
+ - gemfile: Gemfile-rails.7.0.x-cukes-7
58
+ ruby: 2.5
59
+ - gemfile: Gemfile-rails.7.0.x-cukes-6
60
+ ruby: 2.6
61
+ - gemfile: Gemfile-rails.7.0.x-cukes-6
62
+ ruby: 2.5
63
+ - gemfile: Gemfile-rails.4.2.x
64
+ ruby: 2.7
65
+ - gemfile: Gemfile-rails.4.2.x
66
+ ruby: '3.0'
67
+ - gemfile: Gemfile-rails.4.2.x
68
+ ruby: '3.1'
69
+ - gemfile: Gemfile-rails.5.0.x
70
+ ruby: '3.1'
71
+ - gemfile: Gemfile-rails.5.1.x
72
+ ruby: '3.1'
73
+ - gemfile: Gemfile-rails.5.2.x
74
+ ruby: '3.1'
75
+ - gemfile: Gemfile-rails.6.0.x-cukes-3
76
+ ruby: '3.1'
77
+ - gemfile: Gemfile-rails.6.1.x-cukes-3
78
+ ruby: '3.1'
79
+ - gemfile: Gemfile-rails.5.2.x-cukes-4
80
+ ruby: '3.1'
81
+ - gemfile: Gemfile-rails.6.0.x-cukes-4
82
+ ruby: '3.1'
83
+ - gemfile: Gemfile-rails.5.2.x-cukes-5
84
+ ruby: '3.1'
85
+ - gemfile: Gemfile-rails.6.0.x-cukes-5
86
+ ruby: '3.1'
87
+ - gemfile: Gemfile-rails.6.1.x-cukes-5
88
+ ruby: '3.1'
89
+ - gemfile: Gemfile-rails.6.0.x-cukes-6
90
+ ruby: '3.1'
91
+ - gemfile: Gemfile-rails.6.1.x-cukes-6
92
+ ruby: '3.1'
93
+ - gemfile: Gemfile-rails.6.0.x-cukes-7
94
+ ruby: '3.1'
95
+ - gemfile: Gemfile-rails.6.1.x-cukes-7
96
+ ruby: '3.1'
97
+
98
+ env:
99
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
100
+ steps:
101
+ - uses: actions/checkout@v2
102
+ - uses: ruby/setup-ruby@v1
103
+ with:
104
+ ruby-version: ${{ matrix.ruby }}
105
+ bundler-cache: true
106
+ - run: bundle exec rake
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 0.6.2
2
+ * Relax dependency to support cucumber 7.x
3
+
4
+ == 0.6.1
5
+ * Relax dependency to support cucumber 6.x
6
+
1
7
  == 0.6.0
2
8
  * Drop support for cucumber < 3
3
9
  * Officially support cucumber 4.1
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # pickle
2
2
 
3
- [<img src="https://travis-ci.org/ianwhite/pickle.svg" alt="Build Status"/>](https://travis-ci.org/ianwhite/pickle)
3
+
4
+ [![build](https://github.com/ianwhite/pickle/actions/workflows/build.yml/badge.svg)](https://github.com/ianwhite/pickle/actions/workflows/build.yml)
4
5
 
5
6
  Pickle gives you cucumber steps that create your models easily from factory-girl, machinist, or fabrication. You can also just use ActiveRecord as a factory but it's not as cool. Pickle can make use of different ORMs for finding records. Currently ActiveRecord, DataMapper, MongoID adapters are provided. More adapters welcome!
6
7
 
@@ -12,12 +13,15 @@ This is a quickstart guide for rails apps. Firstly, install [cucumber-rails](ht
12
13
 
13
14
  ## Supported versions
14
15
 
15
- Rails 4.2 should still work, but it is unsupported. There is a conflict with bundler on travis I just don't want to deal
16
- with. Since this is no longer supported by the rails team, consider using it at you own risk.
16
+ Cucumber 2.x - support was dropped from release 0.6.0
17
+ Cucumber 3.x - support is best-effort basis, but tests run on rails 4.2 all the way until 6.1
18
+ Cucumber 4.x - should work with all Rails 5.x versions, tests only run for 5.2 and 6.0
19
+ Cucumber 5.x - all tests pass for rails 5.2, 6.0 and 6.1
20
+ Cucumber 6.x - all tests pass for rails 6.0, 6.1 and 7.0
21
+ Cucumber 7.x - all tests pass for rails 6.0, 6.1 and 7.0
17
22
 
18
- Cucumber 2.x support is dropped from release 0.6.0
19
- Cucumber 3.x and 4.x should work with all Rails 5.x versions
20
- Cucumber 5.x support is planned
23
+ Please open pull-requests with fixes if you encounter any problems.
24
+ No active development on this gem.
21
25
 
22
26
  ### Rails 5 and Rails 6
23
27
 
@@ -0,0 +1,13 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 4.2.9"
9
+ gem "cucumber", "~> 3.2.0"
10
+ gem "sqlite3", "~> 1.3.6"
11
+ gem "bundler", "~> 1.17"
12
+
13
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,216 @@
1
+ GIT
2
+ remote: https://github.com/mathieujobin/fabrication.git
3
+ revision: 923cf6fcefd0566b1d6be7bd2f685b89388f4800
4
+ ref: 923cf6fcefd0566b1d6be7bd2f685b89388f4800
5
+ specs:
6
+ fabrication (2.16.2)
7
+
8
+ PATH
9
+ remote: ..
10
+ specs:
11
+ pickle (0.7.0)
12
+ cucumber (>= 3.0, < 8.0)
13
+ rake
14
+
15
+ GEM
16
+ remote: https://rubygems.org/
17
+ specs:
18
+ actionmailer (4.2.11.3)
19
+ actionpack (= 4.2.11.3)
20
+ actionview (= 4.2.11.3)
21
+ activejob (= 4.2.11.3)
22
+ mail (~> 2.5, >= 2.5.4)
23
+ rails-dom-testing (~> 1.0, >= 1.0.5)
24
+ actionpack (4.2.11.3)
25
+ actionview (= 4.2.11.3)
26
+ activesupport (= 4.2.11.3)
27
+ rack (~> 1.6)
28
+ rack-test (~> 0.6.2)
29
+ rails-dom-testing (~> 1.0, >= 1.0.5)
30
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
+ actionview (4.2.11.3)
32
+ activesupport (= 4.2.11.3)
33
+ builder (~> 3.1)
34
+ erubis (~> 2.7.0)
35
+ rails-dom-testing (~> 1.0, >= 1.0.5)
36
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
+ activejob (4.2.11.3)
38
+ activesupport (= 4.2.11.3)
39
+ globalid (>= 0.3.0)
40
+ activemodel (4.2.11.3)
41
+ activesupport (= 4.2.11.3)
42
+ builder (~> 3.1)
43
+ activerecord (4.2.11.3)
44
+ activemodel (= 4.2.11.3)
45
+ activesupport (= 4.2.11.3)
46
+ arel (~> 6.0)
47
+ activesupport (4.2.11.3)
48
+ i18n (~> 0.7)
49
+ minitest (~> 5.1)
50
+ thread_safe (~> 0.3, >= 0.3.4)
51
+ tzinfo (~> 1.1)
52
+ addressable (2.8.0)
53
+ public_suffix (>= 2.0.2, < 5.0)
54
+ arel (6.0.4)
55
+ backports (3.23.0)
56
+ builder (3.2.4)
57
+ capybara (3.35.3)
58
+ addressable
59
+ mini_mime (>= 0.1.3)
60
+ nokogiri (~> 1.8)
61
+ rack (>= 1.6.0)
62
+ rack-test (>= 0.6.3)
63
+ regexp_parser (>= 1.5, < 3.0)
64
+ xpath (~> 3.2)
65
+ codecov (0.6.0)
66
+ simplecov (>= 0.15, < 0.22)
67
+ concurrent-ruby (1.1.10)
68
+ crass (1.0.6)
69
+ cucumber (3.2.0)
70
+ builder (>= 2.1.2)
71
+ cucumber-core (~> 3.2.0)
72
+ cucumber-expressions (~> 6.0.1)
73
+ cucumber-wire (~> 0.0.1)
74
+ diff-lcs (~> 1.3)
75
+ gherkin (~> 5.1.0)
76
+ multi_json (>= 1.7.5, < 2.0)
77
+ multi_test (>= 0.1.2)
78
+ cucumber-core (3.2.1)
79
+ backports (>= 3.8.0)
80
+ cucumber-tag_expressions (~> 1.1.0)
81
+ gherkin (~> 5.0)
82
+ cucumber-expressions (6.0.1)
83
+ cucumber-rails (2.1.0)
84
+ capybara (>= 2.12, < 4)
85
+ cucumber (>= 3.0.2, < 5)
86
+ mime-types (>= 2.0, < 4)
87
+ nokogiri (~> 1.8)
88
+ rails (>= 4.2, < 7)
89
+ cucumber-tag_expressions (1.1.1)
90
+ cucumber-wire (0.0.1)
91
+ database_cleaner (1.99.0)
92
+ diff-lcs (1.5.0)
93
+ docile (1.4.0)
94
+ erubis (2.7.0)
95
+ factory_bot (5.2.0)
96
+ activesupport (>= 4.2.0)
97
+ gherkin (5.1.0)
98
+ git (1.10.2)
99
+ rchardet (~> 1.8)
100
+ globalid (0.4.2)
101
+ activesupport (>= 4.2.0)
102
+ i18n (0.9.5)
103
+ concurrent-ruby (~> 1.0)
104
+ loofah (2.15.0)
105
+ crass (~> 1.0.2)
106
+ nokogiri (>= 1.5.9)
107
+ machinist (2.0)
108
+ mail (2.7.1)
109
+ mini_mime (>= 0.1.1)
110
+ mime-types (3.4.1)
111
+ mime-types-data (~> 3.2015)
112
+ mime-types-data (3.2022.0105)
113
+ mini_mime (1.1.2)
114
+ mini_portile2 (2.6.1)
115
+ minitest (5.15.0)
116
+ multi_json (1.15.0)
117
+ multi_test (0.1.2)
118
+ nokogiri (1.12.5)
119
+ mini_portile2 (~> 2.6.1)
120
+ racc (~> 1.4)
121
+ public_suffix (4.0.6)
122
+ racc (1.6.0)
123
+ rack (1.6.13)
124
+ rack-test (0.6.3)
125
+ rack (>= 1.0)
126
+ rails (4.2.11.3)
127
+ actionmailer (= 4.2.11.3)
128
+ actionpack (= 4.2.11.3)
129
+ actionview (= 4.2.11.3)
130
+ activejob (= 4.2.11.3)
131
+ activemodel (= 4.2.11.3)
132
+ activerecord (= 4.2.11.3)
133
+ activesupport (= 4.2.11.3)
134
+ bundler (>= 1.3.0, < 2.0)
135
+ railties (= 4.2.11.3)
136
+ sprockets-rails
137
+ rails-deprecated_sanitizer (1.0.4)
138
+ activesupport (>= 4.2.0.alpha)
139
+ rails-dom-testing (1.0.9)
140
+ activesupport (>= 4.2.0, < 5.0)
141
+ nokogiri (~> 1.6)
142
+ rails-deprecated_sanitizer (>= 1.0.1)
143
+ rails-html-sanitizer (1.4.2)
144
+ loofah (~> 2.3)
145
+ railties (4.2.11.3)
146
+ actionpack (= 4.2.11.3)
147
+ activesupport (= 4.2.11.3)
148
+ rake (>= 0.8.7)
149
+ thor (>= 0.18.1, < 2.0)
150
+ rake (13.0.6)
151
+ rchardet (1.8.0)
152
+ regexp_parser (2.2.1)
153
+ rspec-core (3.9.3)
154
+ rspec-support (~> 3.9.3)
155
+ rspec-expectations (3.9.4)
156
+ diff-lcs (>= 1.2.0, < 2.0)
157
+ rspec-support (~> 3.9.0)
158
+ rspec-mocks (3.9.1)
159
+ diff-lcs (>= 1.2.0, < 2.0)
160
+ rspec-support (~> 3.9.0)
161
+ rspec-rails (3.9.1)
162
+ actionpack (>= 3.0)
163
+ activesupport (>= 3.0)
164
+ railties (>= 3.0)
165
+ rspec-core (~> 3.9.0)
166
+ rspec-expectations (~> 3.9.0)
167
+ rspec-mocks (~> 3.9.0)
168
+ rspec-support (~> 3.9.0)
169
+ rspec-support (3.9.4)
170
+ simplecov (0.21.2)
171
+ docile (~> 1.1)
172
+ simplecov-html (~> 0.11)
173
+ simplecov_json_formatter (~> 0.1)
174
+ simplecov-html (0.12.3)
175
+ simplecov_json_formatter (0.1.4)
176
+ sprockets (4.0.3)
177
+ concurrent-ruby (~> 1.0)
178
+ rack (> 1, < 3)
179
+ sprockets-rails (3.2.2)
180
+ actionpack (>= 4.0)
181
+ activesupport (>= 4.0)
182
+ sprockets (>= 3.0.0)
183
+ sqlite3 (1.3.13)
184
+ thor (1.2.1)
185
+ thread_safe (0.3.6)
186
+ tzinfo (1.2.9)
187
+ thread_safe (~> 0.1)
188
+ webrick (1.7.0)
189
+ xpath (3.2.0)
190
+ nokogiri (~> 1.8)
191
+ yard (0.9.27)
192
+ webrick (~> 1.7.0)
193
+
194
+ PLATFORMS
195
+ ruby
196
+
197
+ DEPENDENCIES
198
+ bundler (~> 1.17)
199
+ capybara
200
+ codecov
201
+ cucumber (~> 3.2.0)
202
+ cucumber-rails
203
+ database_cleaner
204
+ fabrication!
205
+ factory_bot
206
+ git
207
+ machinist
208
+ pickle!
209
+ rack
210
+ rails (~> 4.2.9)
211
+ rspec-rails (~> 3.0)
212
+ sqlite3 (~> 1.3.6)
213
+ yard
214
+
215
+ BUNDLED WITH
216
+ 1.17.3
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -7,6 +7,5 @@ gemspec :path => ".."
7
7
 
8
8
  gem "rails", "~> 5.2.0"
9
9
  gem "cucumber", "~> 5.0"
10
- gem "cucumber-rails", github: 'cucumber/cucumber-rails', branch: 'cucumber5'
11
-
10
+ gem "cucumber-rails"
12
11
  gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "activerecord", "~> 6.0.0"
9
+ gem "cucumber", "~> 3.2"
10
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -7,5 +7,5 @@ gemspec :path => ".."
7
7
 
8
8
  gem "rails", "~> 6.0.0"
9
9
  gem "cucumber", "~> 5.0"
10
- gem "cucumber-rails", github: 'cucumber/cucumber-rails', branch: 'cucumber5'
10
+ gem "cucumber-rails"
11
11
  gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 6.0.0"
9
+ gem "cucumber", "~> 6.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 6.0.0"
9
+ gem "cucumber", "~> 7.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "activerecord", "~> 6.1.0"
9
+ gem "cucumber", "~> 3.2"
10
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "activerecord", "~> 6.1.0"
9
+ gem "cucumber", "~> 4.1"
10
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 6.1.0"
9
+ gem "cucumber", "~> 5.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 6.1.0"
9
+ gem "cucumber", "~> 6.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 6.1.0"
9
+ gem "cucumber", "~> 7.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 7.0.2"
9
+ gem "cucumber", "~> 6.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Bundler 1.x default to insecure http:// for github: shortcut
4
+ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
5
+
6
+ gemspec :path => ".."
7
+
8
+ gem "rails", "~> 7.0.2"
9
+ gem "cucumber", "~> 7.0"
10
+ gem "cucumber-rails"
11
+ gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'
@@ -1,4 +1,4 @@
1
- source "http://rubygems.org"
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Bundler 1.x default to insecure http:// for github: shortcut
4
4
  git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }
@@ -1,3 +1,3 @@
1
1
  module Pickle
2
- VERSION = "0.6.0"
2
+ VERSION = "0.7.0"
3
3
  end
data/pickle.gemspec CHANGED
@@ -13,13 +13,13 @@ Gem::Specification.new do |s|
13
13
  s.homepage = "https://github.com/ianwhite/pickle"
14
14
 
15
15
  s.rubyforge_project = "pickle"
16
- s.required_rubygems_version = ">= 1.3.6"
16
+ s.required_rubygems_version = ">= 2.0"
17
17
 
18
18
  s.files = `git ls-files`.split("\n")
19
19
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
20
20
  s.require_paths = ["lib"]
21
21
 
22
- s.add_dependency "cucumber", ">=3.0", "< 6.0"
22
+ s.add_dependency "cucumber", ">=3.0", "< 8.0"
23
23
  s.add_dependency "rake"
24
24
 
25
25
  s.add_development_dependency "rack"
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.add_development_dependency "git"
28
28
  s.add_development_dependency "yard"
29
29
  s.add_development_dependency "rspec-rails", "~>3.0"
30
- s.add_development_dependency "rails", ">= 4.2.0", "< 7.0"
30
+ s.add_development_dependency "rails", ">= 4.2.0", "< 8.0"
31
31
  s.add_development_dependency "cucumber-rails"
32
32
  s.add_development_dependency "factory_bot"
33
33
  s.add_development_dependency "fabrication", '~> 2.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pickle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian White
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-08-26 00:00:00.000000000 Z
13
+ date: 2022-03-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: cucumber
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '3.0'
22
22
  - - "<"
23
23
  - !ruby/object:Gem::Version
24
- version: '6.0'
24
+ version: '8.0'
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -31,7 +31,7 @@ dependencies:
31
31
  version: '3.0'
32
32
  - - "<"
33
33
  - !ruby/object:Gem::Version
34
- version: '6.0'
34
+ version: '8.0'
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: rake
37
37
  requirement: !ruby/object:Gem::Requirement
@@ -125,7 +125,7 @@ dependencies:
125
125
  version: 4.2.0
126
126
  - - "<"
127
127
  - !ruby/object:Gem::Version
128
- version: '7.0'
128
+ version: '8.0'
129
129
  type: :development
130
130
  prerelease: false
131
131
  version_requirements: !ruby/object:Gem::Requirement
@@ -135,7 +135,7 @@ dependencies:
135
135
  version: 4.2.0
136
136
  - - "<"
137
137
  - !ruby/object:Gem::Version
138
- version: '7.0'
138
+ version: '8.0'
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: cucumber-rails
141
141
  requirement: !ruby/object:Gem::Requirement
@@ -257,6 +257,7 @@ executables: []
257
257
  extensions: []
258
258
  extra_rdoc_files: []
259
259
  files:
260
+ - ".github/workflows/build.yml"
260
261
  - ".gitignore"
261
262
  - ".rspec"
262
263
  - ".travis.yml"
@@ -297,13 +298,25 @@ files:
297
298
  - features/support/paths.rb
298
299
  - features/support/pickle.rb
299
300
  - features/support/pickle_app.rb
301
+ - gemfiles/Gemfile-rails.4.2.x
302
+ - gemfiles/Gemfile-rails.4.2.x.lock
300
303
  - gemfiles/Gemfile-rails.5.0.x
301
304
  - gemfiles/Gemfile-rails.5.1.x
302
305
  - gemfiles/Gemfile-rails.5.2.x
303
306
  - gemfiles/Gemfile-rails.5.2.x-cukes-4
304
307
  - gemfiles/Gemfile-rails.5.2.x-cukes-5
305
- - gemfiles/Gemfile-rails.6.0.x
308
+ - gemfiles/Gemfile-rails.6.0.x-cukes-3
309
+ - gemfiles/Gemfile-rails.6.0.x-cukes-4
306
310
  - gemfiles/Gemfile-rails.6.0.x-cukes-5
311
+ - gemfiles/Gemfile-rails.6.0.x-cukes-6
312
+ - gemfiles/Gemfile-rails.6.0.x-cukes-7
313
+ - gemfiles/Gemfile-rails.6.1.x-cukes-3
314
+ - gemfiles/Gemfile-rails.6.1.x-cukes-4
315
+ - gemfiles/Gemfile-rails.6.1.x-cukes-5
316
+ - gemfiles/Gemfile-rails.6.1.x-cukes-6
317
+ - gemfiles/Gemfile-rails.6.1.x-cukes-7
318
+ - gemfiles/Gemfile-rails.7.0.x-cukes-6
319
+ - gemfiles/Gemfile-rails.7.0.x-cukes-7
307
320
  - gemfiles/Gemfile-rails.edge
308
321
  - lib/generators/pickle_generator.rb
309
322
  - lib/pickle.rb
@@ -357,9 +370,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
357
370
  requirements:
358
371
  - - ">="
359
372
  - !ruby/object:Gem::Version
360
- version: 1.3.6
373
+ version: '2.0'
361
374
  requirements: []
362
- rubygems_version: 3.0.8
375
+ rubygems_version: 3.1.6
363
376
  signing_key:
364
377
  specification_version: 4
365
378
  summary: Easy model creation and reference in your cucumber features.