inky-rb 1.3.7.3 → 1.4.2.0

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.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +3 -0
  4. data/.travis.yml +4 -2
  5. data/README.md +1 -1
  6. data/gemfiles/rails_6.gemfile +5 -0
  7. data/inky.gemspec +6 -6
  8. data/lib/inky/component_factory.rb +21 -9
  9. data/lib/inky/configuration.rb +22 -1
  10. data/lib/inky/rails/template_handler.rb +7 -3
  11. data/lib/inky/rails/version.rb +1 -1
  12. data/lib/inky.rb +5 -2
  13. data/spec/_cases_output/button/no_link.inky +1 -0
  14. data/spec/_cases_output/button/with_expand_class.inky +4 -0
  15. data/spec/_cases_output/button/with_extra_attr.inky +3 -0
  16. data/spec/_cases_output/button/with_image.inky +3 -0
  17. data/spec/_cases_output/button/with_link.inky +3 -0
  18. data/spec/_cases_output/button/with_link_and_extra_attr.inky +3 -0
  19. data/spec/_cases_output/button/with_tricky_class.inky +22 -0
  20. data/spec/_cases_output/callout/basic.inky +1 -0
  21. data/spec/_cases_output/callout/with_attributes.inky +3 -0
  22. data/spec/_cases_output/general/empty_attributes.inky +6 -0
  23. data/spec/_cases_output/general/multiple_root.inky +2 -0
  24. data/spec/_cases_output/general/no_tag.inky +1 -0
  25. data/spec/_cases_output/general/root_within_text.inky +7 -0
  26. data/spec/_cases_output/general/void_html_elements.inky +6 -0
  27. data/spec/_cases_output/grid/columns.inky +2 -0
  28. data/spec/_cases_output/grid/container.inky +1 -0
  29. data/spec/_cases_output/grid/container_with_align.inky +1 -0
  30. data/spec/_cases_output/grid/row.inky +1 -0
  31. data/spec/_cases_output/grid/row_with_columns.inky +5 -0
  32. data/spec/_cases_output/h_line/basic.inky +1 -0
  33. data/spec/_cases_output/h_line/h_line.inky +2 -0
  34. data/spec/_cases_output/h_line/multiple.inky +3 -0
  35. data/spec/_cases_output/h_line/with_attr.inky +1 -0
  36. data/spec/_cases_output/menu/item.inky +1 -0
  37. data/spec/_cases_output/menu/menu.inky +2 -0
  38. data/spec/_cases_output/menu/menu_with_align.inky +2 -0
  39. data/spec/_cases_output/menu/menu_with_items.inky +5 -0
  40. data/spec/_cases_output/spacer/basic.inky +5 -0
  41. data/spec/_cases_output/spacer/with_attr.inky +6 -0
  42. data/spec/_cases_output/spacer/with_size.inky +5 -0
  43. data/spec/_cases_output/spacer/with_size_lg.inky +5 -0
  44. data/spec/_cases_output/spacer/with_size_sm.inky +5 -0
  45. data/spec/_cases_output/spacer/with_size_sm_and_lg.inky +5 -0
  46. data/spec/_cases_output/spacer/with_sizes_and_attr.inky +6 -0
  47. data/spec/_cases_output/wrapper/basic.inky +1 -0
  48. data/spec/_cases_output/wrapper/with_align.inky +1 -0
  49. data/spec/_cases_output/wrapper/with_attributes.inky +1 -0
  50. data/spec/cases/button/with_extra_attr.inky +3 -0
  51. data/spec/cases/button/with_link.inky +1 -1
  52. data/spec/cases/button/with_link_and_extra_attr.inky +3 -0
  53. data/spec/cases/h_line/basic.inky +1 -0
  54. data/spec/cases/h_line/multiple.inky +8 -0
  55. data/spec/cases/h_line/with_attr.inky +2 -0
  56. data/spec/cases/spacer/with_attr.inky +6 -0
  57. data/spec/cases/spacer/with_size.inky +1 -1
  58. data/spec/cases/spacer/with_size_lg.inky +1 -1
  59. data/spec/cases/spacer/with_size_sm.inky +1 -1
  60. data/spec/cases/spacer/with_size_sm_and_lg.inky +1 -1
  61. data/spec/cases/spacer/with_sizes_and_attr.inky +6 -0
  62. data/spec/components_spec.rb +48 -48
  63. data/spec/configuration_spec.rb +92 -22
  64. data/spec/grid_spec.rb +38 -38
  65. data/spec/spec_helper.rb +4 -1
  66. data/spec/test_app/log/test.log +5405 -0
  67. data/spec/test_app/spec/features/inky_spec.rb +3 -3
  68. metadata +165 -78
  69. data/Gemfile.lock +0 -188
@@ -38,9 +38,9 @@ describe 'Rails', type: :feature do
38
38
  <!DOCTYPE html>
39
39
  <html><body>
40
40
  <container>
41
- <table class="button"><tr><td>
42
- <table><tr><td><a href="bar">Click me</a></td></tr></table>
43
- </td></tr></table>
41
+ <table class="button"><tbody><tr><td>
42
+ <table><tbody><tr><td><a href="bar">Click me</a></td></tr></tbody></table>
43
+ </td></tr></tbody></table>
44
44
  </container>
45
45
  </body></html>
46
46
  HTML
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inky-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.7.3
4
+ version: 1.4.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - ZURB
8
- autorequire:
7
+ - Foundation
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-23 00:00:00.000000000 Z
11
+ date: 2021-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foundation_emails
@@ -42,16 +42,16 @@ dependencies:
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '1.6'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '1.6'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: capybara
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -136,11 +136,10 @@ dependencies:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0'
139
- description: 'Inky is an HTML-based templating language that converts simple HTML
140
- into complex, responsive email-ready HTML. Designed for Foundation for Emails, a
141
- responsive email framework from ZURB. '
139
+ description: Inky is an HTML-based templating language that converts simple HTML into
140
+ complex, responsive email-ready HTML. Designed for Foundation for Emails
142
141
  email:
143
- - foundation@zurb.com
142
+ - contact@get.foundation
144
143
  executables: []
145
144
  extensions: []
146
145
  extra_rdoc_files: []
@@ -149,13 +148,13 @@ files:
149
148
  - ".rubocop.yml"
150
149
  - ".travis.yml"
151
150
  - Gemfile
152
- - Gemfile.lock
153
151
  - LICENSE.txt
154
152
  - README.md
155
153
  - Rakefile
156
154
  - gemfiles/rails_3.gemfile
157
155
  - gemfiles/rails_4.gemfile
158
156
  - gemfiles/rails_5.gemfile
157
+ - gemfiles/rails_6.gemfile
159
158
  - inky.gemspec
160
159
  - lib/generators/inky/install_generator.rb
161
160
  - lib/generators/inky/templates/foundation_emails.scss
@@ -168,10 +167,49 @@ files:
168
167
  - lib/inky/rails/engine.rb
169
168
  - lib/inky/rails/template_handler.rb
170
169
  - lib/inky/rails/version.rb
170
+ - spec/_cases_output/button/no_link.inky
171
+ - spec/_cases_output/button/with_expand_class.inky
172
+ - spec/_cases_output/button/with_extra_attr.inky
173
+ - spec/_cases_output/button/with_image.inky
174
+ - spec/_cases_output/button/with_link.inky
175
+ - spec/_cases_output/button/with_link_and_extra_attr.inky
176
+ - spec/_cases_output/button/with_tricky_class.inky
177
+ - spec/_cases_output/callout/basic.inky
178
+ - spec/_cases_output/callout/with_attributes.inky
179
+ - spec/_cases_output/general/empty_attributes.inky
180
+ - spec/_cases_output/general/multiple_root.inky
181
+ - spec/_cases_output/general/no_tag.inky
182
+ - spec/_cases_output/general/root_within_text.inky
183
+ - spec/_cases_output/general/void_html_elements.inky
184
+ - spec/_cases_output/grid/columns.inky
185
+ - spec/_cases_output/grid/container.inky
186
+ - spec/_cases_output/grid/container_with_align.inky
187
+ - spec/_cases_output/grid/row.inky
188
+ - spec/_cases_output/grid/row_with_columns.inky
189
+ - spec/_cases_output/h_line/basic.inky
190
+ - spec/_cases_output/h_line/h_line.inky
191
+ - spec/_cases_output/h_line/multiple.inky
192
+ - spec/_cases_output/h_line/with_attr.inky
193
+ - spec/_cases_output/menu/item.inky
194
+ - spec/_cases_output/menu/menu.inky
195
+ - spec/_cases_output/menu/menu_with_align.inky
196
+ - spec/_cases_output/menu/menu_with_items.inky
197
+ - spec/_cases_output/spacer/basic.inky
198
+ - spec/_cases_output/spacer/with_attr.inky
199
+ - spec/_cases_output/spacer/with_size.inky
200
+ - spec/_cases_output/spacer/with_size_lg.inky
201
+ - spec/_cases_output/spacer/with_size_sm.inky
202
+ - spec/_cases_output/spacer/with_size_sm_and_lg.inky
203
+ - spec/_cases_output/spacer/with_sizes_and_attr.inky
204
+ - spec/_cases_output/wrapper/basic.inky
205
+ - spec/_cases_output/wrapper/with_align.inky
206
+ - spec/_cases_output/wrapper/with_attributes.inky
171
207
  - spec/cases/button/no_link.inky
172
208
  - spec/cases/button/with_expand_class.inky
209
+ - spec/cases/button/with_extra_attr.inky
173
210
  - spec/cases/button/with_image.inky
174
211
  - spec/cases/button/with_link.inky
212
+ - spec/cases/button/with_link_and_extra_attr.inky
175
213
  - spec/cases/button/with_tricky_class.inky
176
214
  - spec/cases/callout/basic.inky
177
215
  - spec/cases/callout/with_attributes.inky
@@ -184,15 +222,20 @@ files:
184
222
  - spec/cases/grid/container_with_align.inky
185
223
  - spec/cases/grid/row.inky
186
224
  - spec/cases/grid/row_with_columns.inky
225
+ - spec/cases/h_line/basic.inky
226
+ - spec/cases/h_line/multiple.inky
227
+ - spec/cases/h_line/with_attr.inky
187
228
  - spec/cases/menu/item.inky
188
229
  - spec/cases/menu/menu.inky
189
230
  - spec/cases/menu/menu_with_align.inky
190
231
  - spec/cases/menu/menu_with_items.inky
191
232
  - spec/cases/spacer/basic.inky
233
+ - spec/cases/spacer/with_attr.inky
192
234
  - spec/cases/spacer/with_size.inky
193
235
  - spec/cases/spacer/with_size_lg.inky
194
236
  - spec/cases/spacer/with_size_sm.inky
195
237
  - spec/cases/spacer/with_size_sm_and_lg.inky
238
+ - spec/cases/spacer/with_sizes_and_attr.inky
196
239
  - spec/cases/wrapper/basic.inky
197
240
  - spec/cases/wrapper/with_align.inky
198
241
  - spec/cases/wrapper/with_attributes.inky
@@ -242,13 +285,14 @@ files:
242
285
  - spec/test_app/config/secrets.yml
243
286
  - spec/test_app/config/spring.rb
244
287
  - spec/test_app/log/.keep
288
+ - spec/test_app/log/test.log
245
289
  - spec/test_app/spec/features/inky_spec.rb
246
290
  - spec/test_app/spec/helper.rb
247
- homepage: https://github.com/zurb/inky-rb
291
+ homepage: https://github.com/foundation/inky-rb
248
292
  licenses:
249
293
  - MIT
250
294
  metadata: {}
251
- post_install_message:
295
+ post_install_message:
252
296
  rdoc_options: []
253
297
  require_paths:
254
298
  - lib
@@ -263,86 +307,129 @@ required_rubygems_version: !ruby/object:Gem::Requirement
263
307
  - !ruby/object:Gem::Version
264
308
  version: '0'
265
309
  requirements: []
266
- rubyforge_project:
267
- rubygems_version: 2.7.6
268
- signing_key:
310
+ rubygems_version: 3.2.3
311
+ signing_key:
269
312
  specification_version: 4
270
313
  summary: Inky is an HTML-based templating language that converts simple HTML into
271
- complex, responsive email-ready HTML. Designed for Foundation for Emails, a responsive
272
- email framework from ZURB.
314
+ complex, responsive email-ready HTML. Designed for Foundation for Emails
273
315
  test_files:
316
+ - spec/_cases_output/button/no_link.inky
317
+ - spec/_cases_output/button/with_expand_class.inky
318
+ - spec/_cases_output/button/with_extra_attr.inky
319
+ - spec/_cases_output/button/with_image.inky
320
+ - spec/_cases_output/button/with_link.inky
321
+ - spec/_cases_output/button/with_link_and_extra_attr.inky
322
+ - spec/_cases_output/button/with_tricky_class.inky
323
+ - spec/_cases_output/callout/basic.inky
324
+ - spec/_cases_output/callout/with_attributes.inky
325
+ - spec/_cases_output/general/empty_attributes.inky
326
+ - spec/_cases_output/general/multiple_root.inky
327
+ - spec/_cases_output/general/no_tag.inky
328
+ - spec/_cases_output/general/root_within_text.inky
329
+ - spec/_cases_output/general/void_html_elements.inky
330
+ - spec/_cases_output/grid/columns.inky
331
+ - spec/_cases_output/grid/container.inky
332
+ - spec/_cases_output/grid/container_with_align.inky
333
+ - spec/_cases_output/grid/row.inky
334
+ - spec/_cases_output/grid/row_with_columns.inky
335
+ - spec/_cases_output/h_line/basic.inky
336
+ - spec/_cases_output/h_line/h_line.inky
337
+ - spec/_cases_output/h_line/multiple.inky
338
+ - spec/_cases_output/h_line/with_attr.inky
339
+ - spec/_cases_output/menu/item.inky
340
+ - spec/_cases_output/menu/menu.inky
341
+ - spec/_cases_output/menu/menu_with_align.inky
342
+ - spec/_cases_output/menu/menu_with_items.inky
343
+ - spec/_cases_output/spacer/basic.inky
344
+ - spec/_cases_output/spacer/with_attr.inky
345
+ - spec/_cases_output/spacer/with_size.inky
346
+ - spec/_cases_output/spacer/with_size_lg.inky
347
+ - spec/_cases_output/spacer/with_size_sm.inky
348
+ - spec/_cases_output/spacer/with_size_sm_and_lg.inky
349
+ - spec/_cases_output/spacer/with_sizes_and_attr.inky
350
+ - spec/_cases_output/wrapper/basic.inky
351
+ - spec/_cases_output/wrapper/with_align.inky
352
+ - spec/_cases_output/wrapper/with_attributes.inky
353
+ - spec/cases/button/no_link.inky
354
+ - spec/cases/button/with_expand_class.inky
355
+ - spec/cases/button/with_extra_attr.inky
356
+ - spec/cases/button/with_image.inky
357
+ - spec/cases/button/with_link.inky
358
+ - spec/cases/button/with_link_and_extra_attr.inky
359
+ - spec/cases/button/with_tricky_class.inky
360
+ - spec/cases/callout/basic.inky
361
+ - spec/cases/callout/with_attributes.inky
362
+ - spec/cases/general/multiple_root.inky
363
+ - spec/cases/general/no_tag.inky
364
+ - spec/cases/general/root_within_text.inky
365
+ - spec/cases/general/void_html_elements.inky
366
+ - spec/cases/grid/columns.inky
367
+ - spec/cases/grid/container.inky
368
+ - spec/cases/grid/container_with_align.inky
369
+ - spec/cases/grid/row.inky
370
+ - spec/cases/grid/row_with_columns.inky
371
+ - spec/cases/h_line/basic.inky
372
+ - spec/cases/h_line/multiple.inky
373
+ - spec/cases/h_line/with_attr.inky
374
+ - spec/cases/menu/item.inky
375
+ - spec/cases/menu/menu.inky
376
+ - spec/cases/menu/menu_with_align.inky
377
+ - spec/cases/menu/menu_with_items.inky
378
+ - spec/cases/spacer/basic.inky
379
+ - spec/cases/spacer/with_attr.inky
380
+ - spec/cases/spacer/with_size.inky
381
+ - spec/cases/spacer/with_size_lg.inky
382
+ - spec/cases/spacer/with_size_sm.inky
383
+ - spec/cases/spacer/with_size_sm_and_lg.inky
384
+ - spec/cases/spacer/with_sizes_and_attr.inky
385
+ - spec/cases/wrapper/basic.inky
386
+ - spec/cases/wrapper/with_align.inky
387
+ - spec/cases/wrapper/with_attributes.inky
388
+ - spec/cases_spec.rb
389
+ - spec/components_spec.rb
390
+ - spec/configuration_spec.rb
391
+ - spec/grid_spec.rb
392
+ - spec/inky_spec.rb
274
393
  - spec/spec_helper.rb
275
- - spec/test_app/app/mailers/application_mailer.rb
394
+ - spec/test_app/Rakefile
276
395
  - spec/test_app/app/controllers/application_controller.rb
277
396
  - spec/test_app/app/controllers/inky_controller.rb
278
- - spec/test_app/app/views/inky/simple.html.inky
279
- - spec/test_app/app/views/inky/layout.html.erb
280
- - spec/test_app/app/views/inky/explicit_slim.html.inky-slim
397
+ - spec/test_app/app/helpers/application_helper.rb
398
+ - spec/test_app/app/mailers/application_mailer.rb
281
399
  - spec/test_app/app/views/inky/_inky_partial.html.inky
282
- - spec/test_app/app/views/inky/non_inky.html.erb
283
400
  - spec/test_app/app/views/inky/explicit_builder.html.inky-builder
401
+ - spec/test_app/app/views/inky/explicit_slim.html.inky-slim
402
+ - spec/test_app/app/views/inky/layout.html.erb
403
+ - spec/test_app/app/views/inky/non_inky.html.erb
404
+ - spec/test_app/app/views/inky/simple.html.inky
284
405
  - spec/test_app/app/views/inky/slim.html.inky
285
- - spec/test_app/app/views/layouts/inky_layout.html.inky
286
406
  - spec/test_app/app/views/layouts/application.html.erb
287
- - spec/test_app/app/helpers/application_helper.rb
288
- - spec/test_app/config/secrets.yml
289
- - spec/test_app/config/routes.rb
290
- - spec/test_app/config/locales/en.yml
407
+ - spec/test_app/app/views/layouts/inky_layout.html.inky
408
+ - spec/test_app/config/application.rb
409
+ - spec/test_app/config/boot.rb
291
410
  - spec/test_app/config/cable.yml
292
- - spec/test_app/config/environments/production.rb
411
+ - spec/test_app/config/database.yml
412
+ - spec/test_app/config/environment.rb
293
413
  - spec/test_app/config/environments/development.rb
414
+ - spec/test_app/config/environments/production.rb
294
415
  - spec/test_app/config/environments/test.rb
295
- - spec/test_app/config/spring.rb
296
- - spec/test_app/config/environment.rb
297
- - spec/test_app/config/application.rb
298
- - spec/test_app/config/puma.rb
299
- - spec/test_app/config/database.yml
300
- - spec/test_app/config/boot.rb
301
416
  - spec/test_app/config/initializers/application_controller_renderer.rb
417
+ - spec/test_app/config/initializers/assets.rb
302
418
  - spec/test_app/config/initializers/backtrace_silencers.rb
303
- - spec/test_app/config/initializers/mime_types.rb
419
+ - spec/test_app/config/initializers/cookies_serializer.rb
304
420
  - spec/test_app/config/initializers/filter_parameter_logging.rb
305
- - spec/test_app/config/initializers/session_store.rb
306
- - spec/test_app/config/initializers/wrap_parameters.rb
421
+ - spec/test_app/config/initializers/inflections.rb
422
+ - spec/test_app/config/initializers/mime_types.rb
307
423
  - spec/test_app/config/initializers/new_framework_defaults.rb
308
- - spec/test_app/config/initializers/assets.rb
309
- - spec/test_app/config/initializers/cookies_serializer.rb
310
424
  - spec/test_app/config/initializers/secret_token.rb
311
- - spec/test_app/config/initializers/inflections.rb
425
+ - spec/test_app/config/initializers/session_store.rb
426
+ - spec/test_app/config/initializers/wrap_parameters.rb
427
+ - spec/test_app/config/locales/en.yml
428
+ - spec/test_app/config/puma.rb
429
+ - spec/test_app/config/routes.rb
430
+ - spec/test_app/config/secrets.yml
431
+ - spec/test_app/config/spring.rb
312
432
  - spec/test_app/config.ru
313
- - spec/test_app/spec/helper.rb
433
+ - spec/test_app/log/test.log
314
434
  - spec/test_app/spec/features/inky_spec.rb
315
- - spec/test_app/Rakefile
316
- - spec/cases_spec.rb
317
- - spec/grid_spec.rb
318
- - spec/configuration_spec.rb
319
- - spec/cases/wrapper/basic.inky
320
- - spec/cases/wrapper/with_align.inky
321
- - spec/cases/wrapper/with_attributes.inky
322
- - spec/cases/general/no_tag.inky
323
- - spec/cases/general/multiple_root.inky
324
- - spec/cases/general/void_html_elements.inky
325
- - spec/cases/general/root_within_text.inky
326
- - spec/cases/spacer/basic.inky
327
- - spec/cases/spacer/with_size_sm.inky
328
- - spec/cases/spacer/with_size_lg.inky
329
- - spec/cases/spacer/with_size_sm_and_lg.inky
330
- - spec/cases/spacer/with_size.inky
331
- - spec/cases/callout/basic.inky
332
- - spec/cases/callout/with_attributes.inky
333
- - spec/cases/button/with_tricky_class.inky
334
- - spec/cases/button/with_expand_class.inky
335
- - spec/cases/button/with_link.inky
336
- - spec/cases/button/no_link.inky
337
- - spec/cases/button/with_image.inky
338
- - spec/cases/menu/menu_with_items.inky
339
- - spec/cases/menu/menu_with_align.inky
340
- - spec/cases/menu/menu.inky
341
- - spec/cases/menu/item.inky
342
- - spec/cases/grid/row.inky
343
- - spec/cases/grid/row_with_columns.inky
344
- - spec/cases/grid/columns.inky
345
- - spec/cases/grid/container.inky
346
- - spec/cases/grid/container_with_align.inky
347
- - spec/components_spec.rb
348
- - spec/inky_spec.rb
435
+ - spec/test_app/spec/helper.rb
data/Gemfile.lock DELETED
@@ -1,188 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- inky-rb (1.3.7.2)
5
- foundation_emails (~> 2)
6
- nokogiri
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.1)
12
- actionpack (= 5.2.1)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.1)
16
- actionpack (= 5.2.1)
17
- actionview (= 5.2.1)
18
- activejob (= 5.2.1)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.1)
22
- actionview (= 5.2.1)
23
- activesupport (= 5.2.1)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.1)
29
- activesupport (= 5.2.1)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.1)
35
- activesupport (= 5.2.1)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.1)
38
- activesupport (= 5.2.1)
39
- activerecord (5.2.1)
40
- activemodel (= 5.2.1)
41
- activesupport (= 5.2.1)
42
- arel (>= 9.0)
43
- activestorage (5.2.1)
44
- actionpack (= 5.2.1)
45
- activerecord (= 5.2.1)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.1)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- addressable (2.5.2)
53
- public_suffix (>= 2.0.2, < 4.0)
54
- arel (9.0.0)
55
- ast (2.4.0)
56
- builder (3.2.3)
57
- capybara (3.9.0)
58
- addressable
59
- mini_mime (>= 0.1.3)
60
- nokogiri (~> 1.8)
61
- rack (>= 1.6.0)
62
- rack-test (>= 0.6.3)
63
- xpath (~> 3.1)
64
- concurrent-ruby (1.0.5)
65
- crass (1.0.4)
66
- diff-lcs (1.3)
67
- erubi (1.7.1)
68
- foundation_emails (2.2.1.0)
69
- globalid (0.4.1)
70
- activesupport (>= 4.2.0)
71
- i18n (1.1.1)
72
- concurrent-ruby (~> 1.0)
73
- jaro_winkler (1.5.1)
74
- loofah (2.2.2)
75
- crass (~> 1.0.2)
76
- nokogiri (>= 1.5.9)
77
- mail (2.7.1)
78
- mini_mime (>= 0.1.1)
79
- marcel (0.3.3)
80
- mimemagic (~> 0.3.2)
81
- method_source (0.9.0)
82
- mimemagic (0.3.2)
83
- mini_mime (1.0.1)
84
- mini_portile2 (2.3.0)
85
- minitest (5.11.3)
86
- nio4r (2.3.1)
87
- nokogiri (1.8.5)
88
- mini_portile2 (~> 2.3.0)
89
- parallel (1.12.1)
90
- parser (2.5.1.2)
91
- ast (~> 2.4.0)
92
- powerpack (0.1.2)
93
- public_suffix (3.0.3)
94
- rack (2.0.5)
95
- rack-test (1.1.0)
96
- rack (>= 1.0, < 3)
97
- rails (5.2.1)
98
- actioncable (= 5.2.1)
99
- actionmailer (= 5.2.1)
100
- actionpack (= 5.2.1)
101
- actionview (= 5.2.1)
102
- activejob (= 5.2.1)
103
- activemodel (= 5.2.1)
104
- activerecord (= 5.2.1)
105
- activestorage (= 5.2.1)
106
- activesupport (= 5.2.1)
107
- bundler (>= 1.3.0)
108
- railties (= 5.2.1)
109
- sprockets-rails (>= 2.0.0)
110
- rails-dom-testing (2.0.3)
111
- activesupport (>= 4.2.0)
112
- nokogiri (>= 1.6)
113
- rails-html-sanitizer (1.0.4)
114
- loofah (~> 2.2, >= 2.2.2)
115
- railties (5.2.1)
116
- actionpack (= 5.2.1)
117
- activesupport (= 5.2.1)
118
- method_source
119
- rake (>= 0.8.7)
120
- thor (>= 0.19.0, < 2.0)
121
- rainbow (3.0.0)
122
- rake (12.3.1)
123
- rspec-core (3.8.0)
124
- rspec-support (~> 3.8.0)
125
- rspec-expectations (3.8.2)
126
- diff-lcs (>= 1.2.0, < 2.0)
127
- rspec-support (~> 3.8.0)
128
- rspec-mocks (3.8.0)
129
- diff-lcs (>= 1.2.0, < 2.0)
130
- rspec-support (~> 3.8.0)
131
- rspec-rails (3.8.0)
132
- actionpack (>= 3.0)
133
- activesupport (>= 3.0)
134
- railties (>= 3.0)
135
- rspec-core (~> 3.8.0)
136
- rspec-expectations (~> 3.8.0)
137
- rspec-mocks (~> 3.8.0)
138
- rspec-support (~> 3.8.0)
139
- rspec-support (3.8.0)
140
- rubocop (0.59.2)
141
- jaro_winkler (~> 1.5.1)
142
- parallel (~> 1.10)
143
- parser (>= 2.5, != 2.5.1.1)
144
- powerpack (~> 0.1)
145
- rainbow (>= 2.2.2, < 4.0)
146
- ruby-progressbar (~> 1.7)
147
- unicode-display_width (~> 1.0, >= 1.0.1)
148
- ruby-progressbar (1.10.0)
149
- slim (4.0.1)
150
- temple (>= 0.7.6, < 0.9)
151
- tilt (>= 2.0.6, < 2.1)
152
- sprockets (3.7.2)
153
- concurrent-ruby (~> 1.0)
154
- rack (> 1, < 3)
155
- sprockets-rails (3.2.1)
156
- actionpack (>= 4.0)
157
- activesupport (>= 4.0)
158
- sprockets (>= 3.0.0)
159
- temple (0.8.0)
160
- thor (0.20.0)
161
- thread_safe (0.3.6)
162
- tilt (2.0.8)
163
- tzinfo (1.2.5)
164
- thread_safe (~> 0.1)
165
- unicode-display_width (1.4.0)
166
- websocket-driver (0.7.0)
167
- websocket-extensions (>= 0.1.0)
168
- websocket-extensions (0.1.3)
169
- xpath (3.2.0)
170
- nokogiri (~> 1.8)
171
-
172
- PLATFORMS
173
- ruby
174
-
175
- DEPENDENCIES
176
- bundler (~> 1.6)
177
- capybara
178
- inky-rb!
179
- rails
180
- rake
181
- rspec-core
182
- rspec-expectations
183
- rspec-rails
184
- rubocop
185
- slim
186
-
187
- BUNDLED WITH
188
- 1.16.4