chop 0.25.2 → 0.27.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: 60f2038bae8b6de4d0f84113ad67cc767801680b44cabd7cd3c6bcecd1c5713a
4
- data.tar.gz: cb31b02477ae71c42a6efc29c223746482b0e1dc6d59a1feb024e37eed2aad4b
3
+ metadata.gz: 06dae0b0190a3ec10f90abda7f5e19d5c8cc46d8c34850d800b7fd13687b9c4c
4
+ data.tar.gz: 18364b86f246ac84c09864121323af7d1d56d4bb12e2869519d4086050853a04
5
5
  SHA512:
6
- metadata.gz: 72533d44429257e54a7c6136e8df1ac6550d0d528bc28c101923daff40f83db159c411b2e8a374dbd42adb12ffb34bc17b1ec2a1de994418cf3348cdcf8f3720
7
- data.tar.gz: ba0e4264a9472e4f0a9c5ad58c699d0008263627f9b036edebe7f2ebad1cc7f5569d7f1d07860cd95cc58c90ae78024bdc0af699d4608a846cd318f632405086
6
+ metadata.gz: 55591167c97f7305a483083fa51ae51a7fa619a19b22e670ded3ef50af3e5405c177a5da422f32e2ec1f2a1e5b04c3260296f11873479881b319f794bcc3f08f
7
+ data.tar.gz: f7c4ee1dfbfdf7908137c051b98d1ad8ae46987df16b9a70508247c72c1c844279d5c376b858f164c1a7426fbf8451ad62f49d1f24f84cd0c7f110a47d34ce60
@@ -0,0 +1,30 @@
1
+ name: CI
2
+ on: [push, pull_request]
3
+ jobs:
4
+ test:
5
+ strategy:
6
+ fail-fast: false
7
+ matrix:
8
+ gemfile: [ rails_5.1, rails_5.2, rails_6.0, rails_6.1, rails_7.0 ]
9
+ ruby: [ 2.5, 2.6, 2.7, '3.0' ]
10
+ exclude:
11
+ - gemfile: rails_5.1
12
+ ruby: 3.0
13
+ - gemfile: rails_5.2
14
+ ruby: 3.0
15
+ - gemfile: rails_7.0
16
+ ruby: 2.5
17
+ - gemfile: rails_7.0
18
+ ruby: 2.6
19
+
20
+ runs-on: ubuntu-latest
21
+ env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
22
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby }}
28
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
29
+ - run: bundle exec rake
30
+
data/.rspec CHANGED
@@ -1,2 +1,3 @@
1
1
  --format documentation
2
2
  --color
3
+ --require spec_helper
data/Appraisals ADDED
@@ -0,0 +1,24 @@
1
+ appraise "rails-5.1" do
2
+ gem "rails", "~>5.1.0"
3
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
4
+ end
5
+
6
+ appraise "rails-5.2" do
7
+ gem "rails", "~>5.2.0"
8
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
9
+ end
10
+
11
+ appraise "rails-6.0" do
12
+ gem "rails", "~>6.0.0"
13
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
14
+ end
15
+
16
+ appraise "rails-6.1" do
17
+ gem "rails", "~>6.1.0"
18
+ gem "capybara", "~>3.35.0" # 3.36 requires ruby 2.6+
19
+ end
20
+
21
+ appraise "rails-7.0" do
22
+ gem "rails", "~>7.0.0"
23
+ end
24
+
data/Gemfile CHANGED
@@ -4,6 +4,5 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  gem "byebug"
7
- gem "poltergeist"
8
- gem "phantomjs-binaries"
7
+ gem "webrick"
9
8
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Slice and dice your Cucumber tables with ease! Assumes usage of ActiveRecord and Capybara.
4
4
 
5
- [![Build Status](https://travis-ci.org/botandrose/chop.svg?branch=master)](https://travis-ci.org/botandrose/chop)
5
+ [![Build Status](https://github.com/botandrose/chop/workflows/CI/badge.svg?branch=master)](https://github.com/botandrose/chop/actions?query=workflow%3ACI+branch%3Amaster)
6
6
  [![Code Climate](https://codeclimate.com/github/botandrose/chop/badges/gpa.svg)](https://codeclimate.com/github/botandrose/chop)
7
7
 
8
8
  ## Installation
@@ -33,8 +33,8 @@ Transform the attributes hash derived from the table before passing to `ActiveRe
33
33
 
34
34
  High-level declarative transformations:
35
35
 
36
- * `#file`: Replaces a file path with a file handle. Looks in `features/support/fixtures` by default.
37
- * `#files`: Replaces a space-delimited list of file paths with an array of file handles. Looks in `features/support/fixtures` by default.
36
+ * `#file`: Replaces a file path with a file handle. Looks in `features/support/fixtures` by default. Set `upload: true` to wrap file in `Rack::Test::UploadedFile`.
37
+ * `#files`: Replaces a space-delimited list of file paths with an array of file handles. Looks in `features/support/fixtures` by default. Set `upload: true` to wrap file in `Rack::Test::UploadedFile`.
38
38
  * `#has_one/#belongs_to`: Replaces an entity name with that entity. Uses `.find_by_name` by default.
39
39
  * `#has_many`: Replaces a comma-delimited list of entity names with an array of those entities. Uses `.find_by_name` by default.
40
40
  * `#underscore_keys`: Converts all hash keys to underscored versions.
data/chop.gemspec CHANGED
@@ -23,7 +23,9 @@ Gem::Specification.new do |spec|
23
23
  spec.add_dependency "cucumber"
24
24
  spec.add_dependency "capybara"
25
25
 
26
- spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "appraisal"
27
+ spec.add_development_dependency "rake"
27
28
  spec.add_development_dependency "rspec"
28
29
  spec.add_development_dependency "slim"
30
+ spec.add_development_dependency "cuprite"
29
31
  end
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "byebug"
6
+ gem "webrick"
7
+ gem "rails", "~>5.1.0"
8
+ gem "capybara", "~>3.35.0"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,216 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ chop (0.27.0)
5
+ activerecord
6
+ capybara
7
+ cucumber
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.1.7)
13
+ actionpack (= 5.1.7)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (~> 0.6.1)
16
+ actionmailer (5.1.7)
17
+ actionpack (= 5.1.7)
18
+ actionview (= 5.1.7)
19
+ activejob (= 5.1.7)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.1.7)
23
+ actionview (= 5.1.7)
24
+ activesupport (= 5.1.7)
25
+ rack (~> 2.0)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.1.7)
30
+ activesupport (= 5.1.7)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.1.7)
36
+ activesupport (= 5.1.7)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.1.7)
39
+ activesupport (= 5.1.7)
40
+ activerecord (5.1.7)
41
+ activemodel (= 5.1.7)
42
+ activesupport (= 5.1.7)
43
+ arel (~> 8.0)
44
+ activesupport (5.1.7)
45
+ concurrent-ruby (~> 1.0, >= 1.0.2)
46
+ i18n (>= 0.7, < 2)
47
+ minitest (~> 5.1)
48
+ tzinfo (~> 1.1)
49
+ addressable (2.8.0)
50
+ public_suffix (>= 2.0.2, < 5.0)
51
+ appraisal (2.4.1)
52
+ bundler
53
+ rake
54
+ thor (>= 0.14.0)
55
+ arel (8.0.0)
56
+ builder (3.2.4)
57
+ byebug (11.1.3)
58
+ capybara (3.35.3)
59
+ addressable
60
+ mini_mime (>= 0.1.3)
61
+ nokogiri (~> 1.8)
62
+ rack (>= 1.6.0)
63
+ rack-test (>= 0.6.3)
64
+ regexp_parser (>= 1.5, < 3.0)
65
+ xpath (~> 3.2)
66
+ cliver (0.3.2)
67
+ concurrent-ruby (1.1.9)
68
+ crass (1.0.6)
69
+ cucumber (7.1.0)
70
+ builder (~> 3.2, >= 3.2.4)
71
+ cucumber-core (~> 10.1, >= 10.1.0)
72
+ cucumber-create-meta (~> 6.0, >= 6.0.1)
73
+ cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
74
+ cucumber-gherkin (~> 22.0, >= 22.0.0)
75
+ cucumber-html-formatter (~> 17.0, >= 17.0.0)
76
+ cucumber-messages (~> 17.1, >= 17.1.1)
77
+ cucumber-wire (~> 6.2, >= 6.2.0)
78
+ diff-lcs (~> 1.4, >= 1.4.4)
79
+ mime-types (~> 3.3, >= 3.3.1)
80
+ multi_test (~> 0.1, >= 0.1.2)
81
+ sys-uname (~> 1.2, >= 1.2.2)
82
+ cucumber-core (10.1.0)
83
+ cucumber-gherkin (~> 22.0, >= 22.0.0)
84
+ cucumber-messages (~> 17.1, >= 17.1.1)
85
+ cucumber-tag-expressions (~> 4.0, >= 4.0.2)
86
+ cucumber-create-meta (6.0.4)
87
+ cucumber-messages (~> 17.1, >= 17.1.1)
88
+ sys-uname (~> 1.2, >= 1.2.2)
89
+ cucumber-cucumber-expressions (14.0.0)
90
+ cucumber-gherkin (22.0.0)
91
+ cucumber-messages (~> 17.1, >= 17.1.1)
92
+ cucumber-html-formatter (17.0.0)
93
+ cucumber-messages (~> 17.1, >= 17.1.0)
94
+ cucumber-messages (17.1.1)
95
+ cucumber-tag-expressions (4.1.0)
96
+ cucumber-wire (6.2.0)
97
+ cucumber-core (~> 10.1, >= 10.1.0)
98
+ cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
99
+ cucumber-messages (~> 17.1, >= 17.1.1)
100
+ cuprite (0.13)
101
+ capybara (>= 2.1, < 4)
102
+ ferrum (~> 0.11.0)
103
+ diff-lcs (1.5.0)
104
+ erubi (1.10.0)
105
+ ferrum (0.11)
106
+ addressable (~> 2.5)
107
+ cliver (~> 0.3)
108
+ concurrent-ruby (~> 1.1)
109
+ websocket-driver (>= 0.6, < 0.8)
110
+ ffi (1.15.4)
111
+ globalid (1.0.0)
112
+ activesupport (>= 5.0)
113
+ i18n (1.8.11)
114
+ concurrent-ruby (~> 1.0)
115
+ loofah (2.13.0)
116
+ crass (~> 1.0.2)
117
+ nokogiri (>= 1.5.9)
118
+ mail (2.7.1)
119
+ mini_mime (>= 0.1.1)
120
+ method_source (1.0.0)
121
+ mime-types (3.4.1)
122
+ mime-types-data (~> 3.2015)
123
+ mime-types-data (3.2021.1115)
124
+ mini_mime (1.1.2)
125
+ mini_portile2 (2.6.1)
126
+ minitest (5.15.0)
127
+ multi_test (0.1.2)
128
+ nio4r (2.5.8)
129
+ nokogiri (1.12.5)
130
+ mini_portile2 (~> 2.6.1)
131
+ racc (~> 1.4)
132
+ public_suffix (4.0.6)
133
+ racc (1.6.0)
134
+ rack (2.2.3)
135
+ rack-test (1.1.0)
136
+ rack (>= 1.0, < 3)
137
+ rails (5.1.7)
138
+ actioncable (= 5.1.7)
139
+ actionmailer (= 5.1.7)
140
+ actionpack (= 5.1.7)
141
+ actionview (= 5.1.7)
142
+ activejob (= 5.1.7)
143
+ activemodel (= 5.1.7)
144
+ activerecord (= 5.1.7)
145
+ activesupport (= 5.1.7)
146
+ bundler (>= 1.3.0)
147
+ railties (= 5.1.7)
148
+ sprockets-rails (>= 2.0.0)
149
+ rails-dom-testing (2.0.3)
150
+ activesupport (>= 4.2.0)
151
+ nokogiri (>= 1.6)
152
+ rails-html-sanitizer (1.4.2)
153
+ loofah (~> 2.3)
154
+ railties (5.1.7)
155
+ actionpack (= 5.1.7)
156
+ activesupport (= 5.1.7)
157
+ method_source
158
+ rake (>= 0.8.7)
159
+ thor (>= 0.18.1, < 2.0)
160
+ rake (13.0.6)
161
+ regexp_parser (2.2.0)
162
+ rspec (3.10.0)
163
+ rspec-core (~> 3.10.0)
164
+ rspec-expectations (~> 3.10.0)
165
+ rspec-mocks (~> 3.10.0)
166
+ rspec-core (3.10.1)
167
+ rspec-support (~> 3.10.0)
168
+ rspec-expectations (3.10.1)
169
+ diff-lcs (>= 1.2.0, < 2.0)
170
+ rspec-support (~> 3.10.0)
171
+ rspec-mocks (3.10.2)
172
+ diff-lcs (>= 1.2.0, < 2.0)
173
+ rspec-support (~> 3.10.0)
174
+ rspec-support (3.10.3)
175
+ slim (4.1.0)
176
+ temple (>= 0.7.6, < 0.9)
177
+ tilt (>= 2.0.6, < 2.1)
178
+ sprockets (4.0.2)
179
+ concurrent-ruby (~> 1.0)
180
+ rack (> 1, < 3)
181
+ sprockets-rails (3.2.2)
182
+ actionpack (>= 4.0)
183
+ activesupport (>= 4.0)
184
+ sprockets (>= 3.0.0)
185
+ sys-uname (1.2.2)
186
+ ffi (~> 1.1)
187
+ temple (0.8.2)
188
+ thor (1.1.0)
189
+ thread_safe (0.3.6)
190
+ tilt (2.0.10)
191
+ tzinfo (1.2.9)
192
+ thread_safe (~> 0.1)
193
+ webrick (1.7.0)
194
+ websocket-driver (0.6.5)
195
+ websocket-extensions (>= 0.1.0)
196
+ websocket-extensions (0.1.5)
197
+ xpath (3.2.0)
198
+ nokogiri (~> 1.8)
199
+
200
+ PLATFORMS
201
+ ruby
202
+
203
+ DEPENDENCIES
204
+ appraisal
205
+ byebug
206
+ capybara (~> 3.35.0)
207
+ chop!
208
+ cuprite
209
+ rails (~> 5.1.0)
210
+ rake
211
+ rspec
212
+ slim
213
+ webrick
214
+
215
+ BUNDLED WITH
216
+ 2.2.32
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "byebug"
6
+ gem "webrick"
7
+ gem "rails", "~>5.2.0"
8
+ gem "capybara", "~>3.35.0"
9
+
10
+ gemspec path: "../"
@@ -0,0 +1,222 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ chop (0.27.0)
5
+ activerecord
6
+ capybara
7
+ cucumber
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actioncable (5.2.6)
13
+ actionpack (= 5.2.6)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailer (5.2.6)
17
+ actionpack (= 5.2.6)
18
+ actionview (= 5.2.6)
19
+ activejob (= 5.2.6)
20
+ mail (~> 2.5, >= 2.5.4)
21
+ rails-dom-testing (~> 2.0)
22
+ actionpack (5.2.6)
23
+ actionview (= 5.2.6)
24
+ activesupport (= 5.2.6)
25
+ rack (~> 2.0, >= 2.0.8)
26
+ rack-test (>= 0.6.3)
27
+ rails-dom-testing (~> 2.0)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ actionview (5.2.6)
30
+ activesupport (= 5.2.6)
31
+ builder (~> 3.1)
32
+ erubi (~> 1.4)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
35
+ activejob (5.2.6)
36
+ activesupport (= 5.2.6)
37
+ globalid (>= 0.3.6)
38
+ activemodel (5.2.6)
39
+ activesupport (= 5.2.6)
40
+ activerecord (5.2.6)
41
+ activemodel (= 5.2.6)
42
+ activesupport (= 5.2.6)
43
+ arel (>= 9.0)
44
+ activestorage (5.2.6)
45
+ actionpack (= 5.2.6)
46
+ activerecord (= 5.2.6)
47
+ marcel (~> 1.0.0)
48
+ activesupport (5.2.6)
49
+ concurrent-ruby (~> 1.0, >= 1.0.2)
50
+ i18n (>= 0.7, < 2)
51
+ minitest (~> 5.1)
52
+ tzinfo (~> 1.1)
53
+ addressable (2.8.0)
54
+ public_suffix (>= 2.0.2, < 5.0)
55
+ appraisal (2.4.1)
56
+ bundler
57
+ rake
58
+ thor (>= 0.14.0)
59
+ arel (9.0.0)
60
+ builder (3.2.4)
61
+ byebug (11.1.3)
62
+ capybara (3.35.3)
63
+ addressable
64
+ mini_mime (>= 0.1.3)
65
+ nokogiri (~> 1.8)
66
+ rack (>= 1.6.0)
67
+ rack-test (>= 0.6.3)
68
+ regexp_parser (>= 1.5, < 3.0)
69
+ xpath (~> 3.2)
70
+ cliver (0.3.2)
71
+ concurrent-ruby (1.1.9)
72
+ crass (1.0.6)
73
+ cucumber (7.1.0)
74
+ builder (~> 3.2, >= 3.2.4)
75
+ cucumber-core (~> 10.1, >= 10.1.0)
76
+ cucumber-create-meta (~> 6.0, >= 6.0.1)
77
+ cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
78
+ cucumber-gherkin (~> 22.0, >= 22.0.0)
79
+ cucumber-html-formatter (~> 17.0, >= 17.0.0)
80
+ cucumber-messages (~> 17.1, >= 17.1.1)
81
+ cucumber-wire (~> 6.2, >= 6.2.0)
82
+ diff-lcs (~> 1.4, >= 1.4.4)
83
+ mime-types (~> 3.3, >= 3.3.1)
84
+ multi_test (~> 0.1, >= 0.1.2)
85
+ sys-uname (~> 1.2, >= 1.2.2)
86
+ cucumber-core (10.1.0)
87
+ cucumber-gherkin (~> 22.0, >= 22.0.0)
88
+ cucumber-messages (~> 17.1, >= 17.1.1)
89
+ cucumber-tag-expressions (~> 4.0, >= 4.0.2)
90
+ cucumber-create-meta (6.0.4)
91
+ cucumber-messages (~> 17.1, >= 17.1.1)
92
+ sys-uname (~> 1.2, >= 1.2.2)
93
+ cucumber-cucumber-expressions (14.0.0)
94
+ cucumber-gherkin (22.0.0)
95
+ cucumber-messages (~> 17.1, >= 17.1.1)
96
+ cucumber-html-formatter (17.0.0)
97
+ cucumber-messages (~> 17.1, >= 17.1.0)
98
+ cucumber-messages (17.1.1)
99
+ cucumber-tag-expressions (4.1.0)
100
+ cucumber-wire (6.2.0)
101
+ cucumber-core (~> 10.1, >= 10.1.0)
102
+ cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
103
+ cucumber-messages (~> 17.1, >= 17.1.1)
104
+ cuprite (0.13)
105
+ capybara (>= 2.1, < 4)
106
+ ferrum (~> 0.11.0)
107
+ diff-lcs (1.5.0)
108
+ erubi (1.10.0)
109
+ ferrum (0.11)
110
+ addressable (~> 2.5)
111
+ cliver (~> 0.3)
112
+ concurrent-ruby (~> 1.1)
113
+ websocket-driver (>= 0.6, < 0.8)
114
+ ffi (1.15.4)
115
+ globalid (1.0.0)
116
+ activesupport (>= 5.0)
117
+ i18n (1.8.11)
118
+ concurrent-ruby (~> 1.0)
119
+ loofah (2.13.0)
120
+ crass (~> 1.0.2)
121
+ nokogiri (>= 1.5.9)
122
+ mail (2.7.1)
123
+ mini_mime (>= 0.1.1)
124
+ marcel (1.0.2)
125
+ method_source (1.0.0)
126
+ mime-types (3.4.1)
127
+ mime-types-data (~> 3.2015)
128
+ mime-types-data (3.2021.1115)
129
+ mini_mime (1.1.2)
130
+ mini_portile2 (2.6.1)
131
+ minitest (5.15.0)
132
+ multi_test (0.1.2)
133
+ nio4r (2.5.8)
134
+ nokogiri (1.12.5)
135
+ mini_portile2 (~> 2.6.1)
136
+ racc (~> 1.4)
137
+ public_suffix (4.0.6)
138
+ racc (1.6.0)
139
+ rack (2.2.3)
140
+ rack-test (1.1.0)
141
+ rack (>= 1.0, < 3)
142
+ rails (5.2.6)
143
+ actioncable (= 5.2.6)
144
+ actionmailer (= 5.2.6)
145
+ actionpack (= 5.2.6)
146
+ actionview (= 5.2.6)
147
+ activejob (= 5.2.6)
148
+ activemodel (= 5.2.6)
149
+ activerecord (= 5.2.6)
150
+ activestorage (= 5.2.6)
151
+ activesupport (= 5.2.6)
152
+ bundler (>= 1.3.0)
153
+ railties (= 5.2.6)
154
+ sprockets-rails (>= 2.0.0)
155
+ rails-dom-testing (2.0.3)
156
+ activesupport (>= 4.2.0)
157
+ nokogiri (>= 1.6)
158
+ rails-html-sanitizer (1.4.2)
159
+ loofah (~> 2.3)
160
+ railties (5.2.6)
161
+ actionpack (= 5.2.6)
162
+ activesupport (= 5.2.6)
163
+ method_source
164
+ rake (>= 0.8.7)
165
+ thor (>= 0.19.0, < 2.0)
166
+ rake (13.0.6)
167
+ regexp_parser (2.2.0)
168
+ rspec (3.10.0)
169
+ rspec-core (~> 3.10.0)
170
+ rspec-expectations (~> 3.10.0)
171
+ rspec-mocks (~> 3.10.0)
172
+ rspec-core (3.10.1)
173
+ rspec-support (~> 3.10.0)
174
+ rspec-expectations (3.10.1)
175
+ diff-lcs (>= 1.2.0, < 2.0)
176
+ rspec-support (~> 3.10.0)
177
+ rspec-mocks (3.10.2)
178
+ diff-lcs (>= 1.2.0, < 2.0)
179
+ rspec-support (~> 3.10.0)
180
+ rspec-support (3.10.3)
181
+ slim (4.1.0)
182
+ temple (>= 0.7.6, < 0.9)
183
+ tilt (>= 2.0.6, < 2.1)
184
+ sprockets (4.0.2)
185
+ concurrent-ruby (~> 1.0)
186
+ rack (> 1, < 3)
187
+ sprockets-rails (3.4.2)
188
+ actionpack (>= 5.2)
189
+ activesupport (>= 5.2)
190
+ sprockets (>= 3.0.0)
191
+ sys-uname (1.2.2)
192
+ ffi (~> 1.1)
193
+ temple (0.8.2)
194
+ thor (1.1.0)
195
+ thread_safe (0.3.6)
196
+ tilt (2.0.10)
197
+ tzinfo (1.2.9)
198
+ thread_safe (~> 0.1)
199
+ webrick (1.7.0)
200
+ websocket-driver (0.7.5)
201
+ websocket-extensions (>= 0.1.0)
202
+ websocket-extensions (0.1.5)
203
+ xpath (3.2.0)
204
+ nokogiri (~> 1.8)
205
+
206
+ PLATFORMS
207
+ ruby
208
+
209
+ DEPENDENCIES
210
+ appraisal
211
+ byebug
212
+ capybara (~> 3.35.0)
213
+ chop!
214
+ cuprite
215
+ rails (~> 5.2.0)
216
+ rake
217
+ rspec
218
+ slim
219
+ webrick
220
+
221
+ BUNDLED WITH
222
+ 2.2.32
@@ -0,0 +1,10 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "byebug"
6
+ gem "webrick"
7
+ gem "rails", "~>6.0.0"
8
+ gem "capybara", "~>3.35.0"
9
+
10
+ gemspec path: "../"