lcms-engine 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/CHANGELOG.md +14 -1
  4. data/Dockerfile +1 -0
  5. data/Gemfile.lock +750 -0
  6. data/app/controllers/lcms/engine/admin/admin_controller.rb +2 -0
  7. data/app/controllers/lcms/engine/admin/documents_controller.rb +13 -16
  8. data/app/controllers/lcms/engine/admin/materials_controller.rb +23 -19
  9. data/app/controllers/lcms/engine/admin/resources_controller.rb +77 -41
  10. data/app/forms/lcms/engine/material_form.rb +1 -0
  11. data/app/helpers/lcms/engine/application_helper.rb +6 -2
  12. data/app/presenters/lcms/engine/content_presenter.rb +1 -1
  13. data/app/services/lcms/engine/html_sanitizer.rb +2 -2
  14. data/app/views/layouts/lcms/engine/admin.html.erb +1 -1
  15. data/app/views/lcms/engine/admin/materials/index.html.erb +1 -1
  16. data/config/locales/admin/en.yml +2 -0
  17. data/lcms-engine.gemspec +5 -5
  18. data/lib/doc_template/document.rb +2 -2
  19. data/lib/doc_template/tables/activity.rb +1 -2
  20. data/lib/doc_template/tables/base.rb +4 -0
  21. data/lib/doc_template/tables/section.rb +1 -2
  22. data/lib/doc_template/xpath_functions.rb +3 -1
  23. data/lib/lcms/engine/version.rb +1 -1
  24. data/lib/lt/lcms/metadata/context.rb +5 -7
  25. data/spec/controllers/admin/admin_controller_spec.rb +1 -1
  26. data/spec/controllers/admin/documents_controller_spec.rb +37 -6
  27. data/spec/controllers/admin/materials_controller_spec.rb +62 -0
  28. data/spec/controllers/admin/resources_controller_spec.rb +84 -0
  29. data/spec/dummy/config/lcms-admin.yml +3 -3
  30. data/spec/fixtures/tables/activity-metadata-3activities.html +1 -0
  31. data/spec/fixtures/tables/document-metadata-2paragpraphs.html +97 -0
  32. data/spec/fixtures/tables/document-metadata-2spans.html +96 -0
  33. data/spec/fixtures/tables/document-metadata.html +96 -0
  34. data/spec/lib/doc_template/tables/activity_spec.rb +28 -0
  35. data/spec/lib/doc_template/tables/metadata_spec.rb +40 -0
  36. data/spec/lib/doc_template/tables/shared_examples/remove_table.rb +11 -0
  37. data/spec/rails_helper.rb +1 -0
  38. data/spec/services/html_sanitizer_spec.rb +34 -0
  39. data/spec/support/fixture_helper.rb +16 -0
  40. data/yarn.lock +530 -442
  41. metadata +46 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 231320b0501e5b869cb18ddfbd9303ff59a46f5cbe4d1c1dde514e3e142d0fbc
4
- data.tar.gz: f9a52a55bcdfe1ac8d35a094a744489ab22e683a3ddfab0dc65c8c5fe65f7123
3
+ metadata.gz: '0964b6457ef2fe647785d07f409953718e9a6792c877a3605d421e89228da986'
4
+ data.tar.gz: 035a6e1a70d6f62ad8ac4f46d399b6a7a8b84d2ebdb24afed81572d9762738ff
5
5
  SHA512:
6
- metadata.gz: d864539ad2e681823e9801be80b1ee16051970d4610a197e49e662953bba740a38aa86476a6e43f11427623a3bc6cab63186964792e9452fcaac769f64f23281
7
- data.tar.gz: 996c695e355795f92897b07c39788c9aa1fbe1d9a666d82089175b96a850b847533557f8b7ee2dd7f6347c4a5b10a570a8355a706230077eeb25943ad45437d5
6
+ metadata.gz: f9406806dec837c108d344edcaa176c4a6fe87936e37ab70027016e180ba82ff1cbe8747c1e36df13f9eafec06c1ecfe47e5b0e3c56437a29ec21a14f4975265
7
+ data.tar.gz: d7c45ea8c9bfa1b69e9ecf4fd9e1f5a22f4fa9e9c6d4d219811a5c0497f1f6885dff823b21ca2b9ee11631a96bebb9d5cf9d9b6caa5b81aff2cc5991c703783d
data/.gitignore CHANGED
@@ -1,5 +1,4 @@
1
1
  .bundle/
2
- Gemfile.lock
3
2
  public/javascripts/
4
3
  public/lcms_engine_packs/
5
4
  public/packs-test/
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.1.3...HEAD)
8
+
9
+ ## [0.1.3](https://github.com/learningtapestry/lcms-engine/compare/v0.1.2...v0.1.3) - 2020.08.19
10
+
11
+ ### Changed
12
+ - [Update gems and NodeJS packages](https://github.com/learningtapestry/lcms-engine/pull/134) to address high severity security issues
13
+ - Add possibility to [extend permitted parameters](https://github.com/learningtapestry/lcms-engine/pull/114) inside decorators [@paranoicsan](https://github.com/paranoicsan)
14
+ - Introduced method `lcms_engine_javascript_pack_tag` to be used instead of `javascript_pack_tag` when one needs to include the JS assets from the engine [@paranoicsan](https://github.com/paranoicsan)
15
+
16
+ ### Fixed
17
+ - [Fix missing content](https://github.com/learningtapestry/lcms-engine/pull/132) while sanitizing source HTML [@paranoicsan](https://github.com/paranoicsan)
18
+ - Fix case insensitive metadata table HTML header searching [@shlag3n](https://github.com/shlag3n)
19
+
7
20
  ## [0.1.2](https://github.com/learningtapestry/lcms-engine/compare/v0.1.0...v0.1.2) - 2020.04.23
8
21
 
9
22
  ### Added
@@ -12,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
25
  ### Changed
13
26
  - Assets optimization [@paranoicsan](https://github.com/paranoicsan)
14
27
  - Replace [capybara-selenium](https://github.com/dsaenztagarro/capybara-selenium) with [selenium-webdriver](https://rubygems.org/gems/selenium-webdriver) [@paranoicsan](https://github.com/paranoicsan)
15
-
28
+
16
29
  ### Removed
17
30
  - Remove [I18n.js gem](https://github.com/fnando/i18n-js) [@paranoicsan](https://github.com/paranoicsan)
18
31
 
data/Dockerfile CHANGED
@@ -1,6 +1,7 @@
1
1
  FROM ruby:2.5.7
2
2
 
3
3
  ENV APP_PATH /app/
4
+ ENV LANG C.UTF-8
4
5
 
5
6
  WORKDIR $APP_PATH
6
7
 
@@ -0,0 +1,750 @@
1
+ GIT
2
+ remote: https://github.com/learningtapestry/wicked_pdf.git
3
+ revision: 964a0906c9284d97927322e4c1e474b1d68373cf
4
+ ref: 964a090
5
+ branch: puppeteer-support
6
+ specs:
7
+ wicked_pdf (2.0.2)
8
+ activesupport
9
+
10
+ PATH
11
+ remote: .
12
+ specs:
13
+ lcms-engine (0.1.3)
14
+ active_model_serializers (~> 0.9.3)
15
+ activejob-retry (~> 0.6.3)
16
+ acts-as-taggable-on (~> 5.0)
17
+ acts_as_list (~> 0.9.10)
18
+ addressable (~> 2.5.1)
19
+ airbrake (~> 10)
20
+ autoprefixer-rails (~> 6.4.0)
21
+ aws-sdk-rails (~> 1.0)
22
+ backport_new_renderer (~> 1.0.0)
23
+ bitly (~> 1.0)
24
+ bootstrap-sass (~> 3.4.1)
25
+ bullet (~> 5.7.3)
26
+ carrierwave (~> 1)
27
+ ckeditor (~> 4)
28
+ closure_tree (~> 7)
29
+ coffee-rails (~> 4.1.1)
30
+ combine_pdf (~> 1.0.15)
31
+ daemons (~> 1.2, >= 1.2.3)
32
+ devise (~> 4)
33
+ elasticsearch-dsl (~> 0.1.6)
34
+ elasticsearch-model (~> 6.0)
35
+ elasticsearch-persistence (~> 6.0)
36
+ elasticsearch-rails (~> 6.0)
37
+ fog-aws (~> 2.0)
38
+ font-awesome-sass (~> 4.7.0)
39
+ foreman (~> 0.78.0)
40
+ foundation-rails (~> 6.2.1)
41
+ google-api-client (~> 0.30)
42
+ heap (~> 1.0)
43
+ hiredis (~> 0.6)
44
+ httparty (~> 0.16)
45
+ jbuilder (~> 2.0)
46
+ jquery-rails (~> 4.3)
47
+ js-routes (~> 1.1.2)
48
+ lt-google-api (~> 0.1)
49
+ lt-lcms (~> 0.3.0)
50
+ migration_data (~> 0.2.1)
51
+ mini_magick (~> 4.9, >= 4.9.4)
52
+ nested_form (~> 0.3)
53
+ newrelic_rpm (~> 6.9)
54
+ nikkou (~> 0.0.5)
55
+ nokogiri (~> 1.10, >= 1.10.4)
56
+ oj (~> 3)
57
+ oj_mimic_json (~> 1.0.1)
58
+ pandoc-ruby (~> 2.0.1)
59
+ pdfjs_viewer-rails (~> 0.0.9)
60
+ pg (= 0.20)
61
+ pg_search (~> 2.1)
62
+ postgres_ext (~> 3.0)
63
+ rack-mini-profiler (~> 2)
64
+ rails (~> 4.2.11)
65
+ rails-assets-classnames (~> 2.2.3)
66
+ rails-assets-es6-promise (~> 3.1.2)
67
+ rails-assets-eventemitter3 (~> 1.2.0)
68
+ rails-assets-fetch (~> 0.11.0)
69
+ rails-assets-jstree (~> 3.3.4)
70
+ rails-assets-knockout (~> 3.3.0)
71
+ rails-assets-lodash (~> 4.17.11)
72
+ rails-assets-selectize (~> 0.12.1)
73
+ ransack (~> 1.7.0)
74
+ react-rails (~> 2.6.0)
75
+ readthis (~> 2)
76
+ redis (< 4)
77
+ resque (~> 2)
78
+ resque-scheduler (~> 4.4)
79
+ rest-client (~> 2.1)
80
+ ruby-progressbar (~> 1.7, >= 1.7.5)
81
+ rubyzip (~> 2)
82
+ sanitize (>= 5.1, < 5.3)
83
+ sass-rails (~> 5.0)
84
+ simple_form (~> 3.5)
85
+ staccato (~> 0.4.7)
86
+ thor (= 0.19.1)
87
+ truncate_html (~> 0.9.3)
88
+ turbolinks (~> 5.1.0)
89
+ uglifier (~> 3.0, >= 3.0.4)
90
+ validate_url (~> 1.0)
91
+ virtus (~> 1.0.5)
92
+ will_paginate (~> 3.0.7)
93
+ will_paginate-bootstrap (~> 1)
94
+
95
+ GEM
96
+ remote: https://rubygems.org/
97
+ remote: https://rails-assets.org/
98
+ specs:
99
+ actionmailer (4.2.11.3)
100
+ actionpack (= 4.2.11.3)
101
+ actionview (= 4.2.11.3)
102
+ activejob (= 4.2.11.3)
103
+ mail (~> 2.5, >= 2.5.4)
104
+ rails-dom-testing (~> 1.0, >= 1.0.5)
105
+ actionpack (4.2.11.3)
106
+ actionview (= 4.2.11.3)
107
+ activesupport (= 4.2.11.3)
108
+ rack (~> 1.6)
109
+ rack-test (~> 0.6.2)
110
+ rails-dom-testing (~> 1.0, >= 1.0.5)
111
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
112
+ actionview (4.2.11.3)
113
+ activesupport (= 4.2.11.3)
114
+ builder (~> 3.1)
115
+ erubis (~> 2.7.0)
116
+ rails-dom-testing (~> 1.0, >= 1.0.5)
117
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
118
+ active_model_serializers (0.9.7)
119
+ activemodel (>= 3.2)
120
+ concurrent-ruby (~> 1.0)
121
+ activejob (4.2.11.3)
122
+ activesupport (= 4.2.11.3)
123
+ globalid (>= 0.3.0)
124
+ activejob-retry (0.6.3)
125
+ activejob (>= 4.2)
126
+ activesupport (>= 4.2)
127
+ activemodel (4.2.11.3)
128
+ activesupport (= 4.2.11.3)
129
+ builder (~> 3.1)
130
+ activerecord (4.2.11.3)
131
+ activemodel (= 4.2.11.3)
132
+ activesupport (= 4.2.11.3)
133
+ arel (~> 6.0)
134
+ activesupport (4.2.11.3)
135
+ i18n (~> 0.7)
136
+ minitest (~> 5.1)
137
+ thread_safe (~> 0.3, >= 0.3.4)
138
+ tzinfo (~> 1.1)
139
+ acts-as-taggable-on (5.0.0)
140
+ activerecord (>= 4.2.8)
141
+ acts_as_list (0.9.19)
142
+ activerecord (>= 3.0)
143
+ addressable (2.5.2)
144
+ public_suffix (>= 2.0.2, < 4.0)
145
+ airbrake (10.0.5)
146
+ airbrake-ruby (~> 4.13)
147
+ airbrake-ruby (4.15.0)
148
+ rbtree3 (~> 0.5)
149
+ arel (6.0.4)
150
+ ast (2.4.1)
151
+ autoprefixer-rails (6.4.1.1)
152
+ execjs
153
+ aws-eventstream (1.1.0)
154
+ aws-sdk-core (2.11.567)
155
+ aws-sigv4 (~> 1.0)
156
+ jmespath (~> 1.0)
157
+ aws-sdk-rails (1.0.1)
158
+ aws-sdk-resources (~> 2)
159
+ railties (>= 3)
160
+ aws-sdk-resources (2.11.567)
161
+ aws-sdk-core (= 2.11.567)
162
+ aws-sigv4 (1.2.2)
163
+ aws-eventstream (~> 1, >= 1.0.2)
164
+ axiom-types (0.1.1)
165
+ descendants_tracker (~> 0.0.4)
166
+ ice_nine (~> 0.11.0)
167
+ thread_safe (~> 0.3, >= 0.3.1)
168
+ babel-source (5.8.35)
169
+ babel-transpiler (0.7.0)
170
+ babel-source (>= 4.0, < 6)
171
+ execjs (~> 2.0)
172
+ backport_new_renderer (1.0.0)
173
+ rails
174
+ bcrypt (3.1.15)
175
+ bitly (1.1.2)
176
+ httparty (>= 0.7.6)
177
+ multi_json (~> 1.3)
178
+ oauth2 (>= 0.5.0, < 2.0)
179
+ bootstrap-sass (3.4.1)
180
+ autoprefixer-rails (>= 5.2.1)
181
+ sassc (>= 2.0.0)
182
+ builder (3.2.4)
183
+ bullet (5.7.6)
184
+ activesupport (>= 3.0.0)
185
+ uniform_notifier (~> 1.11.0)
186
+ byebug (11.1.3)
187
+ capybara (3.32.2)
188
+ addressable
189
+ mini_mime (>= 0.1.3)
190
+ nokogiri (~> 1.8)
191
+ rack (>= 1.6.0)
192
+ rack-test (>= 0.6.3)
193
+ regexp_parser (~> 1.5)
194
+ xpath (~> 3.2)
195
+ capybara-screenshot (1.0.24)
196
+ capybara (>= 1.0, < 4)
197
+ launchy
198
+ carrierwave (1.3.1)
199
+ activemodel (>= 4.0.0)
200
+ activesupport (>= 4.0.0)
201
+ mime-types (>= 1.16)
202
+ childprocess (1.0.0)
203
+ ckeditor (4.3.0)
204
+ orm_adapter (~> 0.5.0)
205
+ terrapin
206
+ climate_control (0.2.0)
207
+ closure_tree (7.1.0)
208
+ activerecord (>= 4.2.10)
209
+ with_advisory_lock (>= 4.0.0)
210
+ coderay (1.1.3)
211
+ coercible (1.0.0)
212
+ descendants_tracker (~> 0.0.1)
213
+ coffee-rails (4.1.1)
214
+ coffee-script (>= 2.2.0)
215
+ railties (>= 4.0.0, < 5.1.x)
216
+ coffee-script (2.4.1)
217
+ coffee-script-source
218
+ execjs
219
+ coffee-script-source (1.12.2)
220
+ combine_pdf (1.0.18)
221
+ ruby-rc4 (>= 0.1.5)
222
+ concurrent-ruby (1.1.6)
223
+ connection_pool (2.2.3)
224
+ crass (1.0.6)
225
+ daemons (1.3.1)
226
+ database_cleaner (1.8.5)
227
+ declarative (0.0.20)
228
+ declarative-option (0.1.0)
229
+ descendants_tracker (0.0.4)
230
+ thread_safe (~> 0.3, >= 0.3.1)
231
+ devise (4.7.2)
232
+ bcrypt (~> 3.0)
233
+ orm_adapter (~> 0.1)
234
+ railties (>= 4.1.0)
235
+ responders
236
+ warden (~> 1.2.3)
237
+ diff-lcs (1.3)
238
+ domain_name (0.5.20190701)
239
+ unf (>= 0.0.5, < 1.0.0)
240
+ dotenv (2.7.5)
241
+ dotenv-rails (2.7.5)
242
+ dotenv (= 2.7.5)
243
+ railties (>= 3.2, < 6.1)
244
+ elasticsearch (6.8.2)
245
+ elasticsearch-api (= 6.8.2)
246
+ elasticsearch-transport (= 6.8.2)
247
+ elasticsearch-api (6.8.2)
248
+ multi_json
249
+ elasticsearch-dsl (0.1.9)
250
+ elasticsearch-model (6.1.0)
251
+ activesupport (> 3)
252
+ elasticsearch (> 1)
253
+ hashie
254
+ elasticsearch-persistence (6.1.0)
255
+ activemodel (> 4)
256
+ activesupport (> 4)
257
+ elasticsearch (~> 6)
258
+ elasticsearch-model (>= 5)
259
+ hashie
260
+ elasticsearch-rails (6.1.0)
261
+ elasticsearch-transport (6.8.2)
262
+ faraday (~> 1)
263
+ multi_json
264
+ em-websocket (0.5.1)
265
+ eventmachine (>= 0.12.9)
266
+ http_parser.rb (~> 0.6.0)
267
+ email_spec (2.2.0)
268
+ htmlentities (~> 4.3.3)
269
+ launchy (~> 2.1)
270
+ mail (~> 2.7)
271
+ equalizer (0.0.11)
272
+ erubis (2.7.0)
273
+ et-orbi (1.2.4)
274
+ tzinfo
275
+ eventmachine (1.0.9.1)
276
+ excon (0.76.0)
277
+ execjs (2.7.0)
278
+ factory_bot (5.2.0)
279
+ activesupport (>= 4.2.0)
280
+ faker (2.2.1)
281
+ i18n (>= 0.8)
282
+ faraday (1.0.1)
283
+ multipart-post (>= 1.2, < 3)
284
+ faraday_middleware (1.0.0)
285
+ faraday (~> 1.0)
286
+ ffi (1.13.1)
287
+ fog-aws (2.0.1)
288
+ fog-core (~> 1.38)
289
+ fog-json (~> 1.0)
290
+ fog-xml (~> 0.1)
291
+ ipaddress (~> 0.8)
292
+ fog-core (1.45.0)
293
+ builder
294
+ excon (~> 0.58)
295
+ formatador (~> 0.2)
296
+ fog-json (1.2.0)
297
+ fog-core
298
+ multi_json (~> 1.10)
299
+ fog-xml (0.1.3)
300
+ fog-core
301
+ nokogiri (>= 1.5.11, < 2.0.0)
302
+ font-awesome-sass (4.7.0)
303
+ sass (>= 3.2)
304
+ foreman (0.78.0)
305
+ thor (~> 0.19.1)
306
+ formatador (0.2.5)
307
+ foundation-rails (6.2.4.0)
308
+ railties (>= 3.1.0)
309
+ sass (>= 3.3.0, < 3.5)
310
+ sprockets-es6 (>= 0.9.0)
311
+ fugit (1.3.8)
312
+ et-orbi (~> 1.1, >= 1.1.8)
313
+ raabro (~> 1.3)
314
+ globalid (0.4.2)
315
+ activesupport (>= 4.2.0)
316
+ google-api-client (0.43.0)
317
+ addressable (~> 2.5, >= 2.5.1)
318
+ googleauth (~> 0.9)
319
+ httpclient (>= 2.8.1, < 3.0)
320
+ mini_mime (~> 1.0)
321
+ representable (~> 3.0)
322
+ retriable (>= 2.0, < 4.0)
323
+ signet (~> 0.12)
324
+ googleauth (0.13.1)
325
+ faraday (>= 0.17.3, < 2.0)
326
+ jwt (>= 1.4, < 3.0)
327
+ memoist (~> 0.16)
328
+ multi_json (~> 1.11)
329
+ os (>= 0.9, < 2.0)
330
+ signet (~> 0.14)
331
+ guard (2.16.2)
332
+ formatador (>= 0.2.4)
333
+ listen (>= 2.7, < 4.0)
334
+ lumberjack (>= 1.0.12, < 2.0)
335
+ nenv (~> 0.1)
336
+ notiffany (~> 0.0)
337
+ pry (>= 0.9.12)
338
+ shellany (~> 0.0)
339
+ thor (>= 0.18.1)
340
+ guard-compat (1.2.1)
341
+ guard-livereload (2.5.2)
342
+ em-websocket (~> 0.5)
343
+ guard (~> 2.8)
344
+ guard-compat (~> 1.0)
345
+ multi_json (~> 1.8)
346
+ hashie (4.1.0)
347
+ heap (1.0.2)
348
+ faraday (>= 0.8.11)
349
+ faraday_middleware (>= 0.8.0)
350
+ hiredis (0.6.3)
351
+ htmlentities (4.3.4)
352
+ http-accept (1.7.0)
353
+ http-cookie (1.0.3)
354
+ domain_name (~> 0.5)
355
+ http_parser.rb (0.6.0)
356
+ httparty (0.18.1)
357
+ mime-types (~> 3.0)
358
+ multi_xml (>= 0.5.2)
359
+ httpclient (2.8.3)
360
+ i18n (0.9.5)
361
+ concurrent-ruby (~> 1.0)
362
+ ice_nine (0.11.2)
363
+ iniparse (1.5.0)
364
+ ipaddress (0.8.3)
365
+ jaro_winkler (1.5.4)
366
+ jbuilder (2.9.1)
367
+ activesupport (>= 4.2.0)
368
+ jmespath (1.4.0)
369
+ jquery-rails (4.4.0)
370
+ rails-dom-testing (>= 1, < 3)
371
+ railties (>= 4.2.0)
372
+ thor (>= 0.14, < 2.0)
373
+ js-routes (1.1.2)
374
+ railties (>= 3.2)
375
+ sprockets-rails
376
+ json (1.8.6)
377
+ jwt (2.2.1)
378
+ launchy (2.4.3)
379
+ addressable (~> 2.3)
380
+ listen (3.2.1)
381
+ rb-fsevent (~> 0.10, >= 0.10.3)
382
+ rb-inotify (~> 0.9, >= 0.9.10)
383
+ loofah (2.5.0)
384
+ crass (~> 1.0.2)
385
+ nokogiri (>= 1.5.9)
386
+ lt-google-api (0.1.1)
387
+ google-api-client
388
+ googleauth
389
+ lt-lcms (0.3.0)
390
+ google-api-client (~> 0.36)
391
+ httparty (~> 0.17)
392
+ lt-google-api (~> 0.1)
393
+ rubyzip (~> 2)
394
+ lumberjack (1.2.5)
395
+ mail (2.7.1)
396
+ mini_mime (>= 0.1.1)
397
+ mailcatcher (0.7.1)
398
+ eventmachine (= 1.0.9.1)
399
+ mail (~> 2.3)
400
+ rack (~> 1.5)
401
+ sinatra (~> 1.2)
402
+ skinny (~> 0.2.3)
403
+ sqlite3 (~> 1.3)
404
+ thin (~> 1.5.0)
405
+ memoist (0.16.2)
406
+ method_source (1.0.0)
407
+ migration_data (0.2.1)
408
+ mime-types (3.3.1)
409
+ mime-types-data (~> 3.2015)
410
+ mime-types-data (3.2020.0512)
411
+ mini_magick (4.10.1)
412
+ mini_mime (1.0.2)
413
+ mini_portile2 (2.4.0)
414
+ minitest (5.14.1)
415
+ mono_logger (1.1.0)
416
+ multi_json (1.14.1)
417
+ multi_xml (0.6.0)
418
+ multipart-post (2.1.1)
419
+ nenv (0.3.0)
420
+ nested_form (0.3.2)
421
+ netrc (0.11.0)
422
+ newrelic_rpm (6.12.0.367)
423
+ nikkou (0.0.5)
424
+ activesupport
425
+ nokogiri
426
+ tzinfo
427
+ nio4r (2.5.2)
428
+ nokogiri (1.10.9)
429
+ mini_portile2 (~> 2.4.0)
430
+ nokogumbo (2.0.2)
431
+ nokogiri (~> 1.8, >= 1.8.4)
432
+ notiffany (0.1.3)
433
+ nenv (~> 0.1)
434
+ shellany (~> 0.0)
435
+ oauth2 (1.4.4)
436
+ faraday (>= 0.8, < 2.0)
437
+ jwt (>= 1.0, < 3.0)
438
+ multi_json (~> 1.3)
439
+ multi_xml (~> 0.5)
440
+ rack (>= 1.2, < 3)
441
+ oj (3.10.8)
442
+ oj_mimic_json (1.0.1)
443
+ orm_adapter (0.5.0)
444
+ os (1.1.1)
445
+ overcommit (0.49.1)
446
+ childprocess (>= 0.6.3, < 2.0)
447
+ iniparse (~> 1.4)
448
+ pandoc-ruby (2.0.2)
449
+ parallel (1.19.1)
450
+ parser (2.7.1.3)
451
+ ast (~> 2.4.0)
452
+ pdfjs_viewer-rails (0.0.9)
453
+ rails (> 4.2.0)
454
+ sass-rails (~> 5.0)
455
+ pg (0.20.0)
456
+ pg_array_parser (0.0.9)
457
+ pg_search (2.3.0)
458
+ activerecord (>= 4.2)
459
+ activesupport (>= 4.2)
460
+ polyamorous (1.3.3)
461
+ activerecord (>= 3.0)
462
+ postgres_ext (3.0.1)
463
+ activerecord (~> 4.0)
464
+ arel (>= 4.0.1)
465
+ pg_array_parser (~> 0.0.9)
466
+ powerpack (0.1.2)
467
+ pry (0.13.1)
468
+ coderay (~> 1.1)
469
+ method_source (~> 1.0)
470
+ pry-byebug (3.9.0)
471
+ byebug (~> 11.0)
472
+ pry (~> 0.13.0)
473
+ pry-rails (0.3.9)
474
+ pry (>= 0.10.4)
475
+ public_suffix (3.1.1)
476
+ puma (4.3.5)
477
+ nio4r (~> 2.0)
478
+ quiet_assets (1.1.0)
479
+ railties (>= 3.1, < 5.0)
480
+ raabro (1.3.1)
481
+ rack (1.6.13)
482
+ rack-livereload (0.3.17)
483
+ rack
484
+ rack-mini-profiler (2.0.4)
485
+ rack (>= 1.2.0)
486
+ rack-protection (1.5.5)
487
+ rack
488
+ rack-proxy (0.6.5)
489
+ rack
490
+ rack-test (0.6.3)
491
+ rack (>= 1.0)
492
+ rails (4.2.11.3)
493
+ actionmailer (= 4.2.11.3)
494
+ actionpack (= 4.2.11.3)
495
+ actionview (= 4.2.11.3)
496
+ activejob (= 4.2.11.3)
497
+ activemodel (= 4.2.11.3)
498
+ activerecord (= 4.2.11.3)
499
+ activesupport (= 4.2.11.3)
500
+ bundler (>= 1.3.0, < 2.0)
501
+ railties (= 4.2.11.3)
502
+ sprockets-rails
503
+ rails-assets-classnames (2.2.5)
504
+ rails-assets-es6-promise (3.1.2)
505
+ rails-assets-eventemitter3 (1.2.0)
506
+ rails-assets-fetch (0.11.1)
507
+ rails-assets-jquery (3.4.1)
508
+ rails-assets-jstree (3.3.8)
509
+ rails-assets-jquery (>= 1.9.1)
510
+ rails-assets-knockout (3.3.0)
511
+ rails-assets-lodash (4.17.15)
512
+ rails-assets-microplugin (0.0.3)
513
+ rails-assets-selectize (0.12.6)
514
+ rails-assets-jquery (>= 1.7.0)
515
+ rails-assets-microplugin (~> 0.0.0)
516
+ rails-assets-sifter (~> 0.5.0)
517
+ rails-assets-sifter (0.5.3)
518
+ rails-deprecated_sanitizer (1.0.3)
519
+ activesupport (>= 4.2.0.alpha)
520
+ rails-dom-testing (1.0.9)
521
+ activesupport (>= 4.2.0, < 5.0)
522
+ nokogiri (~> 1.6)
523
+ rails-deprecated_sanitizer (>= 1.0.1)
524
+ rails-html-sanitizer (1.3.0)
525
+ loofah (~> 2.3)
526
+ railties (4.2.11.3)
527
+ actionpack (= 4.2.11.3)
528
+ activesupport (= 4.2.11.3)
529
+ rake (>= 0.8.7)
530
+ thor (>= 0.18.1, < 2.0)
531
+ rainbow (3.0.0)
532
+ rake (13.0.1)
533
+ ransack (1.7.0)
534
+ actionpack (>= 3.0)
535
+ activerecord (>= 3.0)
536
+ activesupport (>= 3.0)
537
+ i18n
538
+ polyamorous (~> 1.2)
539
+ rb-fsevent (0.10.4)
540
+ rb-inotify (0.10.1)
541
+ ffi (~> 1.0)
542
+ rbtree3 (0.6.0)
543
+ rdoc (4.3.0)
544
+ react-rails (2.6.1)
545
+ babel-transpiler (>= 0.7.0)
546
+ connection_pool
547
+ execjs
548
+ railties (>= 3.2)
549
+ tilt
550
+ readthis (2.2.0)
551
+ connection_pool (~> 2.1)
552
+ redis (>= 3.0, < 5.0)
553
+ redis (3.3.5)
554
+ redis-namespace (1.7.0)
555
+ redis (>= 3.0.4)
556
+ regexp_parser (1.7.1)
557
+ representable (3.0.4)
558
+ declarative (< 0.1.0)
559
+ declarative-option (< 0.2.0)
560
+ uber (< 0.2.0)
561
+ responders (2.4.1)
562
+ actionpack (>= 4.2.0, < 6.0)
563
+ railties (>= 4.2.0, < 6.0)
564
+ resque (2.0.0)
565
+ mono_logger (~> 1.0)
566
+ multi_json (~> 1.0)
567
+ redis-namespace (~> 1.6)
568
+ sinatra (>= 0.9.2)
569
+ vegas (~> 0.1.2)
570
+ resque-scheduler (4.4.0)
571
+ mono_logger (~> 1.0)
572
+ redis (>= 3.3)
573
+ resque (>= 1.26)
574
+ rufus-scheduler (~> 3.2)
575
+ rest-client (2.1.0)
576
+ http-accept (>= 1.7.0, < 2.0)
577
+ http-cookie (>= 1.0.2, < 2.0)
578
+ mime-types (>= 1.16, < 4.0)
579
+ netrc (~> 0.8)
580
+ retriable (3.1.2)
581
+ rspec-core (3.9.2)
582
+ rspec-support (~> 3.9.3)
583
+ rspec-expectations (3.9.2)
584
+ diff-lcs (>= 1.2.0, < 2.0)
585
+ rspec-support (~> 3.9.0)
586
+ rspec-mocks (3.9.1)
587
+ diff-lcs (>= 1.2.0, < 2.0)
588
+ rspec-support (~> 3.9.0)
589
+ rspec-rails (3.9.1)
590
+ actionpack (>= 3.0)
591
+ activesupport (>= 3.0)
592
+ railties (>= 3.0)
593
+ rspec-core (~> 3.9.0)
594
+ rspec-expectations (~> 3.9.0)
595
+ rspec-mocks (~> 3.9.0)
596
+ rspec-support (~> 3.9.0)
597
+ rspec-support (3.9.3)
598
+ rubocop (0.59.2)
599
+ jaro_winkler (~> 1.5.1)
600
+ parallel (~> 1.10)
601
+ parser (>= 2.5, != 2.5.1.1)
602
+ powerpack (~> 0.1)
603
+ rainbow (>= 2.2.2, < 4.0)
604
+ ruby-progressbar (~> 1.7)
605
+ unicode-display_width (~> 1.0, >= 1.0.1)
606
+ ruby-progressbar (1.10.1)
607
+ ruby-rc4 (0.1.5)
608
+ rubyzip (2.3.0)
609
+ rufus-scheduler (3.6.0)
610
+ fugit (~> 1.1, >= 1.1.6)
611
+ safe_attributes (1.0.10)
612
+ activerecord (>= 3.0.0)
613
+ sanitize (5.2.1)
614
+ crass (~> 1.0.2)
615
+ nokogiri (>= 1.8.0)
616
+ nokogumbo (~> 2.0)
617
+ sass (3.4.25)
618
+ sass-rails (5.0.7)
619
+ railties (>= 4.0.0, < 6)
620
+ sass (~> 3.1)
621
+ sprockets (>= 2.8, < 4.0)
622
+ sprockets-rails (>= 2.0, < 4.0)
623
+ tilt (>= 1.1, < 3)
624
+ sassc (2.4.0)
625
+ ffi (~> 1.9)
626
+ sdoc (0.4.2)
627
+ json (~> 1.7, >= 1.7.7)
628
+ rdoc (~> 4.0)
629
+ seedbank (0.5.0)
630
+ rake (>= 10.0)
631
+ selenium-webdriver (3.142.7)
632
+ childprocess (>= 0.5, < 4.0)
633
+ rubyzip (>= 1.2.2)
634
+ shellany (0.0.1)
635
+ shoulda-matchers (4.3.0)
636
+ activesupport (>= 4.2.0)
637
+ signet (0.14.0)
638
+ addressable (~> 2.3)
639
+ faraday (>= 0.17.3, < 2.0)
640
+ jwt (>= 1.5, < 3.0)
641
+ multi_json (~> 1.10)
642
+ simple_form (3.5.1)
643
+ actionpack (> 4, < 5.2)
644
+ activemodel (> 4, < 5.2)
645
+ sinatra (1.4.8)
646
+ rack (~> 1.5)
647
+ rack-protection (~> 1.4)
648
+ tilt (>= 1.3, < 3)
649
+ skinny (0.2.4)
650
+ eventmachine (~> 1.0.0)
651
+ thin (>= 1.5, < 1.7)
652
+ spring (2.1.0)
653
+ spring-commands-rspec (1.0.4)
654
+ spring (>= 0.9.1)
655
+ sprockets (3.7.2)
656
+ concurrent-ruby (~> 1.0)
657
+ rack (> 1, < 3)
658
+ sprockets-es6 (0.9.2)
659
+ babel-source (>= 5.8.11)
660
+ babel-transpiler
661
+ sprockets (>= 3.0.0)
662
+ sprockets-rails (3.2.1)
663
+ actionpack (>= 4.0)
664
+ activesupport (>= 4.0)
665
+ sprockets (>= 3.0.0)
666
+ sqlite3 (1.4.2)
667
+ staccato (0.4.7)
668
+ terrapin (0.6.0)
669
+ climate_control (>= 0.0.3, < 1.0)
670
+ thin (1.5.1)
671
+ daemons (>= 1.0.9)
672
+ eventmachine (>= 0.12.6)
673
+ rack (>= 1.0.0)
674
+ thor (0.19.1)
675
+ thread_safe (0.3.6)
676
+ tilt (2.0.10)
677
+ traceroute (0.8.1)
678
+ rails (>= 3.0.0)
679
+ truncate_html (0.9.3)
680
+ turbolinks (5.1.1)
681
+ turbolinks-source (~> 5.1)
682
+ turbolinks-source (5.2.0)
683
+ tzinfo (1.2.7)
684
+ thread_safe (~> 0.1)
685
+ uber (0.1.0)
686
+ uglifier (3.2.0)
687
+ execjs (>= 0.3.0, < 3)
688
+ unf (0.1.4)
689
+ unf_ext
690
+ unf_ext (0.0.7.7)
691
+ unicode-display_width (1.7.0)
692
+ uniform_notifier (1.11.0)
693
+ validate_url (1.0.11)
694
+ activemodel (>= 3.0.0)
695
+ public_suffix
696
+ vegas (0.1.11)
697
+ rack (>= 1.0.0)
698
+ virtus (1.0.5)
699
+ axiom-types (~> 0.1)
700
+ coercible (~> 1.0)
701
+ descendants_tracker (~> 0.0, >= 0.0.3)
702
+ equalizer (~> 0.0, >= 0.0.9)
703
+ warden (1.2.7)
704
+ rack (>= 1.0)
705
+ webpacker (4.0.7)
706
+ activesupport (>= 4.2)
707
+ rack-proxy (>= 0.6.1)
708
+ railties (>= 4.2)
709
+ will_paginate (3.0.12)
710
+ will_paginate-bootstrap (1.0.2)
711
+ will_paginate (>= 3.0.3)
712
+ with_advisory_lock (4.6.0)
713
+ activerecord (>= 4.2)
714
+ xpath (3.2.0)
715
+ nokogiri (~> 1.8)
716
+
717
+ PLATFORMS
718
+ ruby
719
+
720
+ DEPENDENCIES
721
+ capybara-screenshot (~> 1)
722
+ database_cleaner (~> 1)
723
+ dotenv-rails (~> 2.2)
724
+ email_spec (~> 2.1)
725
+ factory_bot (~> 5)
726
+ faker (~> 2.1)
727
+ guard-livereload (~> 2.5, >= 2.5.2)
728
+ lcms-engine!
729
+ mailcatcher (~> 0.7)
730
+ overcommit (~> 0.49.1)
731
+ pry-byebug (~> 3.7)
732
+ pry-rails (~> 0.3.5)
733
+ puma (~> 4, >= 4.3.5)
734
+ quiet_assets (~> 1.1)
735
+ rack-livereload (~> 0.3.16)
736
+ rspec-rails (~> 3.8)
737
+ rubocop (~> 0.59.2)
738
+ safe_attributes (~> 1.0.10)
739
+ sdoc (~> 0.4.0)
740
+ seedbank (~> 0.3)
741
+ selenium-webdriver (~> 3.142, >= 3.142.7)
742
+ shoulda-matchers (~> 4.1)
743
+ spring (~> 2.1)
744
+ spring-commands-rspec (~> 1)
745
+ traceroute (~> 0.8)
746
+ webpacker (~> 4.0.6)
747
+ wicked_pdf!
748
+
749
+ BUNDLED WITH
750
+ 1.17.3