lcms-engine 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +1 -1
- data/.env.docker +1 -1
- data/.rubocop.yml +8 -7
- data/.ruby-version +1 -1
- data/CHANGELOG.md +16 -1
- data/Dockerfile +1 -1
- data/Gemfile.lock +223 -184
- data/README.md +3 -2
- data/app/controllers/concerns/lcms/engine/reimportable.rb +11 -1
- data/app/controllers/lcms/engine/admin/admin_controller.rb +1 -1
- data/app/controllers/lcms/engine/admin/documents_controller.rb +19 -4
- data/app/controllers/lcms/engine/admin/materials_controller.rb +12 -3
- data/app/controllers/lcms/engine/admin/standards_controller.rb +6 -1
- data/app/controllers/lcms/engine/admin/users_controller.rb +6 -1
- data/app/entities/lcms/engine/grades.rb +17 -6
- data/app/entities/lcms/engine/media_embed.rb +1 -1
- data/app/entities/lcms/engine/roman_numerals.rb +1 -1
- data/app/forms/lcms/engine/document_form.rb +19 -14
- data/app/forms/lcms/engine/material_form.rb +3 -2
- data/app/helpers/admin/components_helper.rb +2 -2
- data/app/helpers/lcms/engine/view_helper.rb +1 -1
- data/app/interactors/lcms/engine/explore_curriculum_interactor.rb +1 -1
- data/app/javascript/components/admin/ImportStatus.jsx +7 -3
- data/app/javascript/components/admin/MultiSelectedOperation.jsx +1 -0
- data/app/javascript/components/admin/association-picker/AssociationPicker.jsx +1 -0
- data/app/javascript/components/admin/association-picker/AssociationPickerResults.jsx +1 -0
- data/app/javascript/components/admin/association-picker/AssociationPickerWindow.jsx +1 -0
- data/app/javascript/components/admin/curriculum/CurriculumEditor.jsx +1 -0
- data/app/javascript/components/admin/resource-picker/ResourcePicker.jsx +1 -0
- data/app/jobs/concerns/lcms/engine/nested_resque_job.rb +1 -4
- data/app/jobs/lcms/engine/document_generate_gdoc_job.rb +2 -2
- data/app/jobs/lcms/engine/document_generate_job.rb +1 -1
- data/app/jobs/lcms/engine/document_parse_job.rb +1 -1
- data/app/models/lcms/engine/component.rb +3 -3
- data/app/models/lcms/engine/download.rb +1 -1
- data/app/models/lcms/engine/search/document.rb +4 -3
- data/app/presenters/lcms/engine/document_presenter.rb +2 -2
- data/app/queries/lcms/engine/admin_documents_query.rb +1 -1
- data/app/serializers/lcms/engine/previews_material_serializer.rb +1 -0
- data/app/services/lcms/engine/document_build_service.rb +4 -0
- data/app/services/lcms/engine/html_sanitizer.rb +5 -5
- data/app/services/lcms/engine/lessons_gdoc_bundler.rb +1 -1
- data/app/services/lcms/engine/material_build_service.rb +6 -2
- data/app/services/lcms/engine/material_preview_generator.rb +2 -2
- data/app/services/lcms/engine/react_materials_resolver.rb +3 -2
- data/app/views/lcms/engine/admin/batch_reimports/_search_form.html.erb +1 -1
- data/app/views/lcms/engine/admin/curriculums/edit.html.erb +1 -3
- data/app/views/lcms/engine/admin/documents/_materials_links.html.erb +2 -2
- data/app/views/lcms/engine/admin/documents/_search_form.html.erb +1 -1
- data/app/views/lcms/engine/admin/documents/index.html.erb +2 -2
- data/app/views/lcms/engine/admin/documents/new.html.erb +1 -1
- data/app/views/lcms/engine/admin/materials/_search_form.html.erb +1 -1
- data/app/views/lcms/engine/admin/materials/index.html.erb +4 -4
- data/app/views/lcms/engine/admin/resource_bulk_edits/new.html.erb +1 -1
- data/app/views/lcms/engine/admin/resources/_fields.html.erb +3 -0
- data/app/views/lcms/engine/admin/resources/_search_form.html.erb +1 -1
- data/app/views/lcms/engine/documents/gdoc/_agenda.html.erb +1 -1
- data/app/views/lcms/engine/documents/show.html.erb +1 -1
- data/app/views/lcms/engine/materials/show.html.erb +1 -1
- data/app/views/lcms/engine/resources/_download.html.erb +2 -2
- data/app/views/lcms/engine/resources/_unit_bundles.html.erb +2 -2
- data/config/locales/admin/en.yml +1 -1
- data/db/schema.rb +1 -1
- data/lcms-engine.gemspec +12 -10
- data/lib/doc_template.rb +1 -1
- data/lib/doc_template/objects/agenda_metadata.rb +1 -1
- data/lib/doc_template/objects/metadata_helpers.rb +1 -1
- data/lib/doc_template/objects/toc_metadata.rb +2 -2
- data/lib/doc_template/tables/base.rb +3 -2
- data/lib/doc_template/tags/activity_metadata_type_tag.rb +1 -1
- data/lib/doc_template/tags/answer_space_tag.rb +1 -1
- data/lib/doc_template/tags/base_tag.rb +3 -3
- data/lib/doc_template/tags/columns_tag.rb +1 -1
- data/lib/doc_template/tags/def_tag.rb +1 -1
- data/lib/doc_template/tags/expand_tag.rb +1 -0
- data/lib/doc_template/tags/heading_tag.rb +1 -1
- data/lib/doc_template/tags/inset_tag.rb +2 -2
- data/lib/doc_template/tags/latex_tag.rb +1 -1
- data/lib/doc_template/tags/page_break_tag.rb +1 -1
- data/lib/doc_template/tags/pd_tag.rb +4 -4
- data/lib/doc_template/tags/section_tag.rb +2 -2
- data/lib/doc_template/tags/standard_tag.rb +3 -3
- data/lib/doc_template/tags/table_preserve_alignment_tag.rb +1 -1
- data/lib/document_exporter/gdoc/base.rb +1 -1
- data/lib/document_renderer/part.rb +3 -3
- data/lib/elasticsearch/persistence/repository/response/results.rb +1 -1
- data/lib/lcms/engine/engine.rb +1 -1
- data/lib/lcms/engine/version.rb +1 -1
- data/lib/lt/lcms/metadata/base_service.rb +2 -1
- data/lib/lt/lcms/metadata/context.rb +2 -2
- data/lib/lt/lcms/metadata/service.rb +3 -1
- data/lib/resque_job.rb +3 -6
- data/lib/standard_importer.rb +4 -4
- data/lib/tasks/cloud66.rake +6 -4
- data/lib/tasks/document.rake +3 -3
- data/lib/tasks/google.rake +1 -1
- data/package.json +1 -0
- data/spec/controllers/admin/association_picker_controller_spec.rb +6 -8
- data/spec/controllers/admin/documents_controller_spec.rb +3 -1
- data/spec/controllers/admin/materials_controller_spec.rb +1 -1
- data/spec/controllers/admin/resources_controller_spec.rb +2 -2
- data/spec/dummy/.env.docker +5 -0
- data/spec/dummy/config/environments/production.rb +1 -1
- data/spec/dummy/config/puma.rb +3 -3
- data/spec/entities/grades_spec.rb +12 -0
- data/spec/features/admin/lessons/add_lesson_spec.rb +3 -3
- data/spec/features/admin/materials/add_material_spec.rb +3 -3
- data/spec/forms/document_form_spec.rb +11 -1
- data/spec/lib/doc_template/tables/shared_examples/remove_table.rb +1 -1
- data/spec/rails_helper.rb +19 -2
- data/spec/services/document_build_service_spec.rb +1 -1
- data/yarn.lock +145 -170
- metadata +81 -34
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 751798688bc0c5d00166b8cd62754f35dabd94eee94c65338cd27e2d945a6b44
|
4
|
+
data.tar.gz: 0f58272ddf12a36a9f46aacec90f6870d601b2e3ef18a71133b58361392c33c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c80dda3da9f7119a11a1aa8516da0d26f656e54afd930d3c938ac027bc8abdf21e2be1ba74ba5c6f44cb5dd074e12f583fc012e1a9c49e0971f229dbeb9dd82
|
7
|
+
data.tar.gz: 6680bbbeba17ae09dd590370903cc7affebaa492c5a919b155f3e0458469da72bb83f5dc839341c81efc7bf39f56e20e64f592b3d692d4380eef9aec8d06dd2b
|
data/.codeclimate.yml
CHANGED
data/.env.docker
CHANGED
data/.rubocop.yml
CHANGED
@@ -15,7 +15,11 @@ AllCops:
|
|
15
15
|
- spec/dummy/db/schema.rb
|
16
16
|
- spec/dummy/bin/*
|
17
17
|
- templates/*
|
18
|
-
|
18
|
+
NewCops: enable
|
19
|
+
TargetRubyVersion: 2.6
|
20
|
+
|
21
|
+
Layout/LineLength:
|
22
|
+
Max: 120
|
19
23
|
|
20
24
|
Layout/MultilineMethodCallIndentation:
|
21
25
|
EnforcedStyle: indented_relative_to_receiver
|
@@ -38,18 +42,15 @@ Metrics/ClassLength:
|
|
38
42
|
Max: 250
|
39
43
|
|
40
44
|
Metrics/CyclomaticComplexity:
|
41
|
-
Max:
|
42
|
-
|
43
|
-
Metrics/LineLength:
|
44
|
-
Max: 120
|
45
|
+
Max: 10
|
45
46
|
|
46
47
|
Metrics/MethodLength:
|
47
48
|
Max: 50
|
48
49
|
|
49
50
|
Metrics/PerceivedComplexity:
|
50
|
-
Max:
|
51
|
+
Max: 10
|
51
52
|
|
52
|
-
Naming/
|
53
|
+
Naming/MethodParameterName:
|
53
54
|
MinNameLength: 2
|
54
55
|
|
55
56
|
Style/AndOr:
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.5
|
1
|
+
2.6.5
|
data/CHANGELOG.md
CHANGED
@@ -4,7 +4,22 @@ 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.3.
|
7
|
+
## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.3.1...HEAD)
|
8
|
+
|
9
|
+
--
|
10
|
+
|
11
|
+
## [0.3.1](https://github.com/learningtapestry/lcms-engine/compare/v0.3.0...v0.3.1) - 2021.02.12
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
|
15
|
+
- StrongParameters issues - [@paranoicsan](https://github.com/paranoicsan)
|
16
|
+
- Font Awesome Icons issues - [@paranoicsan](https://github.com/paranoicsan)
|
17
|
+
- Correctly search for a queued nested ActiveJob - [@paranoicsan](https://github.com/paranoicsan)
|
18
|
+
- Remove unnecessary redis key deletion - [@aderyabin](https://github.com/aderyabin)
|
19
|
+
|
20
|
+
### Added
|
21
|
+
|
22
|
+
- Explicitly import lodash (To prevent errors in LCMS projects) - [@paranoicsan](https://github.com/paranoicsan)
|
8
23
|
|
9
24
|
## [0.3.0](https://github.com/learningtapestry/lcms-engine/compare/v0.2.0...v0.3.0) - 2020.08.19
|
10
25
|
|
data/Dockerfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -10,7 +10,7 @@ GIT
|
|
10
10
|
PATH
|
11
11
|
remote: .
|
12
12
|
specs:
|
13
|
-
lcms-engine (0.3.
|
13
|
+
lcms-engine (0.3.1)
|
14
14
|
active_model_serializers (~> 0.10.10)
|
15
15
|
activejob-retry (~> 0.6.3)
|
16
16
|
acts-as-taggable-on (~> 6.5)
|
@@ -36,14 +36,14 @@ PATH
|
|
36
36
|
fog-aws (~> 3.5, >= 3.5.2)
|
37
37
|
font-awesome-sass (~> 5.12)
|
38
38
|
foundation-rails (~> 6.6, >= 6.6.1)
|
39
|
-
google-api-client (
|
39
|
+
google-api-client (< 1)
|
40
40
|
hiredis (~> 0.6.3)
|
41
41
|
httparty (~> 0.18)
|
42
42
|
jbuilder (~> 2.10)
|
43
43
|
jquery-rails (~> 4.3, >= 4.3.5)
|
44
44
|
js-routes (~> 1.4, >= 1.4.9)
|
45
|
-
lt-google-api (~> 0.
|
46
|
-
lt-lcms (~> 0.
|
45
|
+
lt-google-api (~> 0.2, >= 0.2.2)
|
46
|
+
lt-lcms (~> 0.4, >= 0.4.1)
|
47
47
|
migration_data (~> 0.6)
|
48
48
|
mini_magick (~> 4.10, >= 4.10.1)
|
49
49
|
nested_form (~> 0.3.2)
|
@@ -79,89 +79,104 @@ PATH
|
|
79
79
|
GEM
|
80
80
|
remote: https://rubygems.org/
|
81
81
|
specs:
|
82
|
-
actioncable (5.2.4.
|
83
|
-
actionpack (= 5.2.4.
|
82
|
+
actioncable (5.2.4.5)
|
83
|
+
actionpack (= 5.2.4.5)
|
84
84
|
nio4r (~> 2.0)
|
85
85
|
websocket-driver (>= 0.6.1)
|
86
|
-
actionmailer (5.2.4.
|
87
|
-
actionpack (= 5.2.4.
|
88
|
-
actionview (= 5.2.4.
|
89
|
-
activejob (= 5.2.4.
|
86
|
+
actionmailer (5.2.4.5)
|
87
|
+
actionpack (= 5.2.4.5)
|
88
|
+
actionview (= 5.2.4.5)
|
89
|
+
activejob (= 5.2.4.5)
|
90
90
|
mail (~> 2.5, >= 2.5.4)
|
91
91
|
rails-dom-testing (~> 2.0)
|
92
|
-
actionpack (5.2.4.
|
93
|
-
actionview (= 5.2.4.
|
94
|
-
activesupport (= 5.2.4.
|
92
|
+
actionpack (5.2.4.5)
|
93
|
+
actionview (= 5.2.4.5)
|
94
|
+
activesupport (= 5.2.4.5)
|
95
95
|
rack (~> 2.0, >= 2.0.8)
|
96
96
|
rack-test (>= 0.6.3)
|
97
97
|
rails-dom-testing (~> 2.0)
|
98
98
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
99
|
-
actionview (5.2.4.
|
100
|
-
activesupport (= 5.2.4.
|
99
|
+
actionview (5.2.4.5)
|
100
|
+
activesupport (= 5.2.4.5)
|
101
101
|
builder (~> 3.1)
|
102
102
|
erubi (~> 1.4)
|
103
103
|
rails-dom-testing (~> 2.0)
|
104
104
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
105
|
-
active_model_serializers (0.10.
|
106
|
-
actionpack (>= 4.1, < 6.
|
107
|
-
activemodel (>= 4.1, < 6.
|
105
|
+
active_model_serializers (0.10.12)
|
106
|
+
actionpack (>= 4.1, < 6.2)
|
107
|
+
activemodel (>= 4.1, < 6.2)
|
108
108
|
case_transform (>= 0.2)
|
109
109
|
jsonapi-renderer (>= 0.1.1.beta1, < 0.3)
|
110
|
-
activejob (5.2.4.
|
111
|
-
activesupport (= 5.2.4.
|
110
|
+
activejob (5.2.4.5)
|
111
|
+
activesupport (= 5.2.4.5)
|
112
112
|
globalid (>= 0.3.6)
|
113
113
|
activejob-retry (0.6.3)
|
114
114
|
activejob (>= 4.2)
|
115
115
|
activesupport (>= 4.2)
|
116
|
-
activemodel (5.2.4.
|
117
|
-
activesupport (= 5.2.4.
|
118
|
-
activerecord (5.2.4.
|
119
|
-
activemodel (= 5.2.4.
|
120
|
-
activesupport (= 5.2.4.
|
116
|
+
activemodel (5.2.4.5)
|
117
|
+
activesupport (= 5.2.4.5)
|
118
|
+
activerecord (5.2.4.5)
|
119
|
+
activemodel (= 5.2.4.5)
|
120
|
+
activesupport (= 5.2.4.5)
|
121
121
|
arel (>= 9.0)
|
122
|
-
activestorage (5.2.4.
|
123
|
-
actionpack (= 5.2.4.
|
124
|
-
activerecord (= 5.2.4.
|
122
|
+
activestorage (5.2.4.5)
|
123
|
+
actionpack (= 5.2.4.5)
|
124
|
+
activerecord (= 5.2.4.5)
|
125
125
|
marcel (~> 0.3.1)
|
126
|
-
activesupport (5.2.4.
|
126
|
+
activesupport (5.2.4.5)
|
127
127
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
128
128
|
i18n (>= 0.7, < 2)
|
129
129
|
minitest (~> 5.1)
|
130
130
|
tzinfo (~> 1.1)
|
131
131
|
acts-as-taggable-on (6.5.0)
|
132
132
|
activerecord (>= 5.0, < 6.1)
|
133
|
-
acts_as_list (1.0.
|
133
|
+
acts_as_list (1.0.3)
|
134
134
|
activerecord (>= 4.2)
|
135
135
|
addressable (2.7.0)
|
136
136
|
public_suffix (>= 2.0.2, < 5.0)
|
137
|
-
airbrake (10.0.
|
137
|
+
airbrake (10.0.6)
|
138
138
|
airbrake-ruby (~> 4.13)
|
139
139
|
airbrake-ruby (4.15.0)
|
140
140
|
rbtree3 (~> 0.5)
|
141
141
|
arel (9.0.0)
|
142
|
-
ast (2.4.
|
143
|
-
autoprefixer-rails (9.
|
142
|
+
ast (2.4.2)
|
143
|
+
autoprefixer-rails (9.8.6.5)
|
144
144
|
execjs
|
145
145
|
aws-eventstream (1.1.0)
|
146
|
-
aws-partitions (1.
|
147
|
-
aws-
|
146
|
+
aws-partitions (1.426.0)
|
147
|
+
aws-record (2.5.0)
|
148
|
+
aws-sdk-dynamodb (~> 1.18)
|
149
|
+
aws-sdk-core (3.112.0)
|
148
150
|
aws-eventstream (~> 1, >= 1.0.2)
|
149
151
|
aws-partitions (~> 1, >= 1.239.0)
|
150
152
|
aws-sigv4 (~> 1.1)
|
151
153
|
jmespath (~> 1.0)
|
152
|
-
aws-sdk-
|
153
|
-
aws-sdk-core (~> 3, >= 3.
|
154
|
+
aws-sdk-dynamodb (1.59.0)
|
155
|
+
aws-sdk-core (~> 3, >= 3.112.0)
|
154
156
|
aws-sigv4 (~> 1.1)
|
155
|
-
aws-sdk-
|
157
|
+
aws-sdk-kms (1.42.0)
|
158
|
+
aws-sdk-core (~> 3, >= 3.112.0)
|
159
|
+
aws-sigv4 (~> 1.1)
|
160
|
+
aws-sdk-rails (3.6.0)
|
161
|
+
aws-record (~> 2)
|
156
162
|
aws-sdk-ses (~> 1)
|
163
|
+
aws-sdk-sqs (~> 1)
|
164
|
+
aws-sessionstore-dynamodb (~> 2)
|
165
|
+
concurrent-ruby (~> 1)
|
157
166
|
railties (>= 5.2.0)
|
158
|
-
aws-sdk-s3 (1.
|
159
|
-
aws-sdk-core (~> 3, >= 3.
|
167
|
+
aws-sdk-s3 (1.88.0)
|
168
|
+
aws-sdk-core (~> 3, >= 3.112.0)
|
160
169
|
aws-sdk-kms (~> 1)
|
161
170
|
aws-sigv4 (~> 1.1)
|
162
|
-
aws-sdk-ses (1.
|
163
|
-
aws-sdk-core (~> 3, >= 3.
|
171
|
+
aws-sdk-ses (1.37.0)
|
172
|
+
aws-sdk-core (~> 3, >= 3.112.0)
|
173
|
+
aws-sigv4 (~> 1.1)
|
174
|
+
aws-sdk-sqs (1.36.0)
|
175
|
+
aws-sdk-core (~> 3, >= 3.112.0)
|
164
176
|
aws-sigv4 (~> 1.1)
|
177
|
+
aws-sessionstore-dynamodb (2.0.1)
|
178
|
+
aws-sdk-dynamodb (~> 1)
|
179
|
+
rack (~> 2)
|
165
180
|
aws-sigv4 (1.2.2)
|
166
181
|
aws-eventstream (~> 1, >= 1.0.2)
|
167
182
|
axiom-types (0.1.1)
|
@@ -172,8 +187,7 @@ GEM
|
|
172
187
|
babel-transpiler (0.7.0)
|
173
188
|
babel-source (>= 4.0, < 6)
|
174
189
|
execjs (~> 2.0)
|
175
|
-
bcrypt (3.1.
|
176
|
-
bigdecimal (2.0.0)
|
190
|
+
bcrypt (3.1.16)
|
177
191
|
bitly (1.1.2)
|
178
192
|
httparty (>= 0.7.6)
|
179
193
|
multi_json (~> 1.3)
|
@@ -182,84 +196,84 @@ GEM
|
|
182
196
|
autoprefixer-rails (>= 5.2.1)
|
183
197
|
sassc (>= 2.0.0)
|
184
198
|
builder (3.2.4)
|
185
|
-
bullet (6.1.
|
199
|
+
bullet (6.1.3)
|
186
200
|
activesupport (>= 3.0.0)
|
187
201
|
uniform_notifier (~> 1.11)
|
188
202
|
byebug (11.1.3)
|
189
|
-
capybara (3.
|
203
|
+
capybara (3.35.3)
|
190
204
|
addressable
|
191
205
|
mini_mime (>= 0.1.3)
|
192
206
|
nokogiri (~> 1.8)
|
193
207
|
rack (>= 1.6.0)
|
194
208
|
rack-test (>= 0.6.3)
|
195
|
-
regexp_parser (
|
209
|
+
regexp_parser (>= 1.5, < 3.0)
|
196
210
|
xpath (~> 3.2)
|
197
|
-
carrierwave (2.1.
|
211
|
+
carrierwave (2.1.1)
|
198
212
|
activemodel (>= 5.0.0)
|
199
213
|
activesupport (>= 5.0.0)
|
200
214
|
addressable (~> 2.6)
|
201
215
|
image_processing (~> 1.1)
|
202
216
|
mimemagic (>= 0.3.0)
|
203
217
|
mini_mime (>= 0.1.3)
|
218
|
+
ssrf_filter (~> 1.0)
|
204
219
|
case_transform (0.2)
|
205
220
|
activesupport
|
206
|
-
childprocess (
|
207
|
-
rake (< 13.0)
|
221
|
+
childprocess (3.0.0)
|
208
222
|
ckeditor (4.3.0)
|
209
223
|
orm_adapter (~> 0.5.0)
|
210
224
|
terrapin
|
211
225
|
climate_control (0.2.0)
|
212
|
-
closure_tree (7.
|
226
|
+
closure_tree (7.2.0)
|
213
227
|
activerecord (>= 4.2.10)
|
214
228
|
with_advisory_lock (>= 4.0.0)
|
215
229
|
coderay (1.1.3)
|
216
230
|
coercible (1.0.0)
|
217
231
|
descendants_tracker (~> 0.0.1)
|
218
|
-
combine_pdf (1.0.
|
232
|
+
combine_pdf (1.0.21)
|
219
233
|
ruby-rc4 (>= 0.1.5)
|
220
|
-
concurrent-ruby (1.1.
|
234
|
+
concurrent-ruby (1.1.8)
|
221
235
|
connection_pool (2.2.3)
|
222
236
|
crass (1.0.6)
|
223
237
|
daemons (1.3.1)
|
224
|
-
database_cleaner (1.
|
225
|
-
database_cleaner-active_record (1.
|
238
|
+
database_cleaner (1.99.0)
|
239
|
+
database_cleaner-active_record (1.99.0)
|
226
240
|
activerecord
|
227
|
-
database_cleaner (~> 1.
|
241
|
+
database_cleaner (~> 1.99.0)
|
228
242
|
declarative (0.0.20)
|
229
243
|
declarative-option (0.1.0)
|
230
244
|
descendants_tracker (0.0.4)
|
231
245
|
thread_safe (~> 0.3, >= 0.3.1)
|
232
|
-
devise (4.7.
|
246
|
+
devise (4.7.3)
|
233
247
|
bcrypt (~> 3.0)
|
234
248
|
orm_adapter (~> 0.1)
|
235
249
|
railties (>= 4.1.0)
|
236
250
|
responders
|
237
251
|
warden (~> 1.2.3)
|
238
|
-
diff-lcs (1.
|
252
|
+
diff-lcs (1.4.4)
|
239
253
|
domain_name (0.5.20190701)
|
240
254
|
unf (>= 0.0.5, < 1.0.0)
|
241
|
-
dotenv (2.7.
|
242
|
-
dotenv-rails (2.7.
|
243
|
-
dotenv (= 2.7.
|
244
|
-
railties (>= 3.2
|
245
|
-
elasticsearch (7.
|
246
|
-
elasticsearch-api (= 7.
|
247
|
-
elasticsearch-transport (= 7.
|
248
|
-
elasticsearch-api (7.
|
255
|
+
dotenv (2.7.6)
|
256
|
+
dotenv-rails (2.7.6)
|
257
|
+
dotenv (= 2.7.6)
|
258
|
+
railties (>= 3.2)
|
259
|
+
elasticsearch (7.11.1)
|
260
|
+
elasticsearch-api (= 7.11.1)
|
261
|
+
elasticsearch-transport (= 7.11.1)
|
262
|
+
elasticsearch-api (7.11.1)
|
249
263
|
multi_json
|
250
264
|
elasticsearch-dsl (0.1.9)
|
251
|
-
elasticsearch-model (7.
|
265
|
+
elasticsearch-model (7.1.1)
|
252
266
|
activesupport (> 3)
|
253
267
|
elasticsearch (> 1)
|
254
268
|
hashie
|
255
|
-
elasticsearch-persistence (7.
|
269
|
+
elasticsearch-persistence (7.1.1)
|
256
270
|
activemodel (> 4)
|
257
271
|
activesupport (> 4)
|
258
272
|
elasticsearch (~> 7)
|
259
|
-
elasticsearch-model (= 7.
|
273
|
+
elasticsearch-model (= 7.1.1)
|
260
274
|
hashie
|
261
|
-
elasticsearch-rails (7.
|
262
|
-
elasticsearch-transport (7.
|
275
|
+
elasticsearch-rails (7.1.1)
|
276
|
+
elasticsearch-transport (7.11.1)
|
263
277
|
faraday (~> 1)
|
264
278
|
multi_json
|
265
279
|
email_spec (2.2.0)
|
@@ -267,24 +281,27 @@ GEM
|
|
267
281
|
launchy (~> 2.1)
|
268
282
|
mail (~> 2.7)
|
269
283
|
equalizer (0.0.11)
|
270
|
-
erubi (1.
|
284
|
+
erubi (1.10.0)
|
271
285
|
et-orbi (1.2.4)
|
272
286
|
tzinfo
|
273
|
-
excon (0.
|
287
|
+
excon (0.79.0)
|
274
288
|
execjs (2.7.0)
|
275
289
|
factory_bot (5.2.0)
|
276
290
|
activesupport (>= 4.2.0)
|
277
|
-
faker (2.
|
291
|
+
faker (2.16.0)
|
278
292
|
i18n (>= 1.6, < 2)
|
279
|
-
faraday (1.0
|
293
|
+
faraday (1.3.0)
|
294
|
+
faraday-net_http (~> 1.0)
|
280
295
|
multipart-post (>= 1.2, < 3)
|
281
|
-
|
282
|
-
|
296
|
+
ruby2_keywords
|
297
|
+
faraday-net_http (1.0.1)
|
298
|
+
ffi (1.14.2)
|
299
|
+
fog-aws (3.8.0)
|
283
300
|
fog-core (~> 2.1)
|
284
301
|
fog-json (~> 1.1)
|
285
302
|
fog-xml (~> 0.1)
|
286
303
|
ipaddress (~> 0.8)
|
287
|
-
fog-core (2.2.
|
304
|
+
fog-core (2.2.3)
|
288
305
|
builder
|
289
306
|
excon (~> 0.71)
|
290
307
|
formatador (~> 0.2)
|
@@ -295,27 +312,41 @@ GEM
|
|
295
312
|
fog-xml (0.1.3)
|
296
313
|
fog-core
|
297
314
|
nokogiri (>= 1.5.11, < 2.0.0)
|
298
|
-
font-awesome-sass (5.
|
315
|
+
font-awesome-sass (5.15.1)
|
299
316
|
sassc (>= 1.11)
|
300
317
|
formatador (0.2.5)
|
301
|
-
foundation-rails (6.6.
|
318
|
+
foundation-rails (6.6.2.0)
|
302
319
|
railties (>= 3.1.0)
|
303
320
|
sass (>= 3.3.0)
|
304
321
|
sprockets-es6 (>= 0.9.0)
|
305
|
-
fugit (1.
|
322
|
+
fugit (1.4.2)
|
306
323
|
et-orbi (~> 1.1, >= 1.1.8)
|
307
|
-
raabro (~> 1.
|
324
|
+
raabro (~> 1.4)
|
325
|
+
gems (1.2.0)
|
308
326
|
globalid (0.4.2)
|
309
327
|
activesupport (>= 4.2.0)
|
310
|
-
google-api-client (0.
|
328
|
+
google-api-client (0.53.0)
|
329
|
+
google-apis-core (~> 0.1)
|
330
|
+
google-apis-generator (~> 0.1)
|
331
|
+
google-apis-core (0.2.1)
|
311
332
|
addressable (~> 2.5, >= 2.5.1)
|
312
|
-
googleauth (~> 0.
|
333
|
+
googleauth (~> 0.14)
|
313
334
|
httpclient (>= 2.8.1, < 3.0)
|
314
335
|
mini_mime (~> 1.0)
|
315
336
|
representable (~> 3.0)
|
316
337
|
retriable (>= 2.0, < 4.0)
|
317
|
-
|
318
|
-
|
338
|
+
rexml
|
339
|
+
signet (~> 0.14)
|
340
|
+
webrick
|
341
|
+
google-apis-discovery_v1 (0.1.0)
|
342
|
+
google-apis-core (~> 0.1)
|
343
|
+
google-apis-generator (0.1.2)
|
344
|
+
activesupport (>= 5.0)
|
345
|
+
gems (~> 1.2)
|
346
|
+
google-apis-core (~> 0.1)
|
347
|
+
google-apis-discovery_v1 (~> 0.0)
|
348
|
+
thor (>= 0.20, < 2.a)
|
349
|
+
googleauth (0.15.1)
|
319
350
|
faraday (>= 0.17.3, < 2.0)
|
320
351
|
jwt (>= 1.4, < 3.0)
|
321
352
|
memoist (~> 0.16)
|
@@ -332,40 +363,39 @@ GEM
|
|
332
363
|
mime-types (~> 3.0)
|
333
364
|
multi_xml (>= 0.5.2)
|
334
365
|
httpclient (2.8.3)
|
335
|
-
i18n (1.8.
|
366
|
+
i18n (1.8.8)
|
336
367
|
concurrent-ruby (~> 1.0)
|
337
368
|
ice_nine (0.11.2)
|
338
|
-
image_processing (1.
|
369
|
+
image_processing (1.12.1)
|
339
370
|
mini_magick (>= 4.9.5, < 5)
|
340
371
|
ruby-vips (>= 2.0.17, < 3)
|
341
372
|
iniparse (1.5.0)
|
342
373
|
ipaddress (0.8.3)
|
343
|
-
|
344
|
-
jbuilder (2.10.0)
|
374
|
+
jbuilder (2.11.2)
|
345
375
|
activesupport (>= 5.0.0)
|
346
376
|
jmespath (1.4.0)
|
347
377
|
jquery-rails (4.4.0)
|
348
378
|
rails-dom-testing (>= 1, < 3)
|
349
379
|
railties (>= 4.2.0)
|
350
380
|
thor (>= 0.14, < 2.0)
|
351
|
-
js-routes (1.4.
|
381
|
+
js-routes (1.4.14)
|
352
382
|
railties (>= 4)
|
353
|
-
|
354
|
-
json (2.3.1)
|
383
|
+
json (2.5.1)
|
355
384
|
jsonapi-renderer (0.2.2)
|
356
385
|
jwt (2.2.2)
|
357
386
|
launchy (2.5.0)
|
358
387
|
addressable (~> 2.7)
|
359
|
-
loofah (2.
|
388
|
+
loofah (2.9.0)
|
360
389
|
crass (~> 1.0.2)
|
361
390
|
nokogiri (>= 1.5.9)
|
362
|
-
lt-google-api (0.
|
363
|
-
google-api-client
|
364
|
-
googleauth
|
365
|
-
lt-lcms (0.
|
366
|
-
google-api-client (~> 0.
|
367
|
-
httparty (~> 0.
|
368
|
-
lt-google-api (~> 0.1)
|
391
|
+
lt-google-api (0.2.2)
|
392
|
+
google-api-client (~> 0.46)
|
393
|
+
googleauth (~> 0.14)
|
394
|
+
lt-lcms (0.4.1)
|
395
|
+
google-api-client (~> 0.38)
|
396
|
+
httparty (~> 0.18)
|
397
|
+
lt-google-api (~> 0.2, >= 0.2.1)
|
398
|
+
nokogiri (~> 1.10, >= 1.10.8)
|
369
399
|
rubyzip (~> 2)
|
370
400
|
mail (2.7.1)
|
371
401
|
mini_mime (>= 0.1.1)
|
@@ -376,12 +406,12 @@ GEM
|
|
376
406
|
migration_data (0.6.0)
|
377
407
|
mime-types (3.3.1)
|
378
408
|
mime-types-data (~> 3.2015)
|
379
|
-
mime-types-data (3.2020.
|
409
|
+
mime-types-data (3.2020.1104)
|
380
410
|
mimemagic (0.3.5)
|
381
|
-
mini_magick (4.
|
411
|
+
mini_magick (4.11.0)
|
382
412
|
mini_mime (1.0.2)
|
383
|
-
mini_portile2 (2.
|
384
|
-
minitest (5.14.
|
413
|
+
mini_portile2 (2.5.0)
|
414
|
+
minitest (5.14.3)
|
385
415
|
mono_logger (1.1.0)
|
386
416
|
multi_json (1.15.0)
|
387
417
|
multi_xml (0.6.0)
|
@@ -394,10 +424,11 @@ GEM
|
|
394
424
|
activesupport
|
395
425
|
nokogiri
|
396
426
|
tzinfo
|
397
|
-
nio4r (2.5.
|
398
|
-
nokogiri (1.
|
399
|
-
mini_portile2 (~> 2.
|
400
|
-
|
427
|
+
nio4r (2.5.5)
|
428
|
+
nokogiri (1.11.1)
|
429
|
+
mini_portile2 (~> 2.5.0)
|
430
|
+
racc (~> 1.4)
|
431
|
+
nokogumbo (2.0.4)
|
401
432
|
nokogiri (~> 1.8, >= 1.8.4)
|
402
433
|
oauth2 (1.4.4)
|
403
434
|
faraday (>= 0.8, < 2.0)
|
@@ -405,29 +436,25 @@ GEM
|
|
405
436
|
multi_json (~> 1.3)
|
406
437
|
multi_xml (~> 0.5)
|
407
438
|
rack (>= 1.2, < 3)
|
408
|
-
oj (3.
|
409
|
-
bigdecimal (~> 2.0)
|
439
|
+
oj (3.11.2)
|
410
440
|
oj_mimic_json (1.0.1)
|
411
441
|
orm_adapter (0.5.0)
|
412
442
|
os (1.1.1)
|
413
|
-
overcommit (0.
|
414
|
-
childprocess (>= 0.6.3, <
|
443
|
+
overcommit (0.57.0)
|
444
|
+
childprocess (>= 0.6.3, < 5)
|
415
445
|
iniparse (~> 1.4)
|
416
|
-
pandoc-ruby (2.
|
417
|
-
parallel (1.
|
418
|
-
parser (
|
419
|
-
ast (~> 2.4.
|
446
|
+
pandoc-ruby (2.1.4)
|
447
|
+
parallel (1.20.1)
|
448
|
+
parser (3.0.0.0)
|
449
|
+
ast (~> 2.4.1)
|
420
450
|
pdfjs_viewer-rails (0.3.1)
|
421
451
|
json (> 1.8.4)
|
422
452
|
rails (> 4.2.0)
|
423
453
|
sass-rails (~> 5.0)
|
424
454
|
pg (1.2.3)
|
425
|
-
pg_search (2.3.
|
455
|
+
pg_search (2.3.5)
|
426
456
|
activerecord (>= 5.2)
|
427
457
|
activesupport (>= 5.2)
|
428
|
-
polyamorous (2.3.2)
|
429
|
-
activerecord (>= 5.2.1)
|
430
|
-
powerpack (0.1.2)
|
431
458
|
pry (0.13.1)
|
432
459
|
coderay (~> 1.1)
|
433
460
|
method_source (~> 1.0)
|
@@ -436,63 +463,63 @@ GEM
|
|
436
463
|
pry (~> 0.13.0)
|
437
464
|
pry-rails (0.3.9)
|
438
465
|
pry (>= 0.10.4)
|
439
|
-
public_suffix (4.0.
|
440
|
-
raabro (1.
|
466
|
+
public_suffix (4.0.6)
|
467
|
+
raabro (1.4.0)
|
468
|
+
racc (1.5.2)
|
441
469
|
rack (2.2.3)
|
442
470
|
rack-mini-profiler (1.1.6)
|
443
471
|
rack (>= 1.2.0)
|
444
|
-
rack-protection (2.0
|
472
|
+
rack-protection (2.1.0)
|
445
473
|
rack
|
446
474
|
rack-proxy (0.6.5)
|
447
475
|
rack
|
448
476
|
rack-test (1.1.0)
|
449
477
|
rack (>= 1.0, < 3)
|
450
|
-
rails (5.2.4.
|
451
|
-
actioncable (= 5.2.4.
|
452
|
-
actionmailer (= 5.2.4.
|
453
|
-
actionpack (= 5.2.4.
|
454
|
-
actionview (= 5.2.4.
|
455
|
-
activejob (= 5.2.4.
|
456
|
-
activemodel (= 5.2.4.
|
457
|
-
activerecord (= 5.2.4.
|
458
|
-
activestorage (= 5.2.4.
|
459
|
-
activesupport (= 5.2.4.
|
478
|
+
rails (5.2.4.5)
|
479
|
+
actioncable (= 5.2.4.5)
|
480
|
+
actionmailer (= 5.2.4.5)
|
481
|
+
actionpack (= 5.2.4.5)
|
482
|
+
actionview (= 5.2.4.5)
|
483
|
+
activejob (= 5.2.4.5)
|
484
|
+
activemodel (= 5.2.4.5)
|
485
|
+
activerecord (= 5.2.4.5)
|
486
|
+
activestorage (= 5.2.4.5)
|
487
|
+
activesupport (= 5.2.4.5)
|
460
488
|
bundler (>= 1.3.0)
|
461
|
-
railties (= 5.2.4.
|
489
|
+
railties (= 5.2.4.5)
|
462
490
|
sprockets-rails (>= 2.0.0)
|
463
491
|
rails-dom-testing (2.0.3)
|
464
492
|
activesupport (>= 4.2.0)
|
465
493
|
nokogiri (>= 1.6)
|
466
494
|
rails-html-sanitizer (1.3.0)
|
467
495
|
loofah (~> 2.3)
|
468
|
-
railties (5.2.4.
|
469
|
-
actionpack (= 5.2.4.
|
470
|
-
activesupport (= 5.2.4.
|
496
|
+
railties (5.2.4.5)
|
497
|
+
actionpack (= 5.2.4.5)
|
498
|
+
activesupport (= 5.2.4.5)
|
471
499
|
method_source
|
472
500
|
rake (>= 0.8.7)
|
473
501
|
thor (>= 0.19.0, < 2.0)
|
474
502
|
rainbow (3.0.0)
|
475
|
-
rake (
|
476
|
-
ransack (2.
|
477
|
-
activerecord (>= 5.2.
|
478
|
-
activesupport (>= 5.2.
|
503
|
+
rake (13.0.3)
|
504
|
+
ransack (2.4.2)
|
505
|
+
activerecord (>= 5.2.4)
|
506
|
+
activesupport (>= 5.2.4)
|
479
507
|
i18n
|
480
|
-
polyamorous (= 2.3.2)
|
481
508
|
rb-fsevent (0.10.4)
|
482
509
|
rb-inotify (0.10.1)
|
483
510
|
ffi (~> 1.0)
|
484
511
|
rbtree3 (0.6.0)
|
485
|
-
rdoc (6.
|
512
|
+
rdoc (6.3.0)
|
486
513
|
react-rails (2.6.1)
|
487
514
|
babel-transpiler (>= 0.7.0)
|
488
515
|
connection_pool
|
489
516
|
execjs
|
490
517
|
railties (>= 3.2)
|
491
518
|
tilt
|
492
|
-
redis (4.
|
493
|
-
redis-namespace (1.
|
519
|
+
redis (4.2.5)
|
520
|
+
redis-namespace (1.8.1)
|
494
521
|
redis (>= 3.0.4)
|
495
|
-
regexp_parser (
|
522
|
+
regexp_parser (2.0.3)
|
496
523
|
representable (3.0.4)
|
497
524
|
declarative (< 0.1.0)
|
498
525
|
declarative-option (< 0.2.0)
|
@@ -517,9 +544,10 @@ GEM
|
|
517
544
|
mime-types (>= 1.16, < 4.0)
|
518
545
|
netrc (~> 0.8)
|
519
546
|
retriable (3.1.2)
|
520
|
-
|
547
|
+
rexml (3.2.4)
|
548
|
+
rspec-core (3.9.3)
|
521
549
|
rspec-support (~> 3.9.3)
|
522
|
-
rspec-expectations (3.9.
|
550
|
+
rspec-expectations (3.9.4)
|
523
551
|
diff-lcs (>= 1.2.0, < 2.0)
|
524
552
|
rspec-support (~> 3.9.0)
|
525
553
|
rspec-mocks (3.9.1)
|
@@ -533,24 +561,29 @@ GEM
|
|
533
561
|
rspec-expectations (~> 3.9.0)
|
534
562
|
rspec-mocks (~> 3.9.0)
|
535
563
|
rspec-support (~> 3.9.0)
|
536
|
-
rspec-support (3.9.
|
537
|
-
rubocop (0.
|
538
|
-
jaro_winkler (~> 1.5.1)
|
564
|
+
rspec-support (3.9.4)
|
565
|
+
rubocop (0.93.1)
|
539
566
|
parallel (~> 1.10)
|
540
|
-
parser (>= 2.
|
541
|
-
powerpack (~> 0.1)
|
567
|
+
parser (>= 2.7.1.5)
|
542
568
|
rainbow (>= 2.2.2, < 4.0)
|
569
|
+
regexp_parser (>= 1.8)
|
570
|
+
rexml
|
571
|
+
rubocop-ast (>= 0.6.0)
|
543
572
|
ruby-progressbar (~> 1.7)
|
544
|
-
unicode-display_width (
|
545
|
-
|
573
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
574
|
+
rubocop-ast (1.4.1)
|
575
|
+
parser (>= 2.7.1.5)
|
576
|
+
ruby-progressbar (1.11.0)
|
546
577
|
ruby-rc4 (0.1.5)
|
547
578
|
ruby-vips (2.0.17)
|
548
579
|
ffi (~> 1.9)
|
549
|
-
ruby2_keywords (0.0.
|
580
|
+
ruby2_keywords (0.0.4)
|
550
581
|
rubyzip (2.3.0)
|
551
|
-
rufus-scheduler (3.
|
582
|
+
rufus-scheduler (3.7.0)
|
552
583
|
fugit (~> 1.1, >= 1.1.6)
|
553
|
-
|
584
|
+
safe_attributes (1.0.10)
|
585
|
+
activerecord (>= 3.0.0)
|
586
|
+
sanitize (5.2.3)
|
554
587
|
crass (~> 1.0.2)
|
555
588
|
nokogiri (>= 1.8.0)
|
556
589
|
nokogumbo (~> 2.0)
|
@@ -567,27 +600,29 @@ GEM
|
|
567
600
|
tilt (>= 1.1, < 3)
|
568
601
|
sassc (2.4.0)
|
569
602
|
ffi (~> 1.9)
|
570
|
-
sdoc (
|
603
|
+
sdoc (2.0.3)
|
571
604
|
rdoc (>= 5.0)
|
605
|
+
seedbank (0.5.0)
|
606
|
+
rake (>= 10.0)
|
572
607
|
selenium-webdriver (3.142.7)
|
573
608
|
childprocess (>= 0.5, < 4.0)
|
574
609
|
rubyzip (>= 1.2.2)
|
575
|
-
shoulda-matchers (4.
|
610
|
+
shoulda-matchers (4.5.1)
|
576
611
|
activesupport (>= 4.2.0)
|
577
|
-
signet (0.14.
|
612
|
+
signet (0.14.1)
|
578
613
|
addressable (~> 2.3)
|
579
614
|
faraday (>= 0.17.3, < 2.0)
|
580
615
|
jwt (>= 1.5, < 3.0)
|
581
616
|
multi_json (~> 1.10)
|
582
|
-
simple_form (5.0
|
583
|
-
actionpack (>= 5.
|
584
|
-
activemodel (>= 5.
|
585
|
-
sinatra (2.0
|
617
|
+
simple_form (5.1.0)
|
618
|
+
actionpack (>= 5.2)
|
619
|
+
activemodel (>= 5.2)
|
620
|
+
sinatra (2.1.0)
|
586
621
|
mustermann (~> 1.0)
|
587
|
-
rack (~> 2.
|
588
|
-
rack-protection (= 2.0
|
622
|
+
rack (~> 2.2)
|
623
|
+
rack-protection (= 2.1.0)
|
589
624
|
tilt (~> 2.0)
|
590
|
-
spring (2.1.
|
625
|
+
spring (2.1.1)
|
591
626
|
spring-commands-rspec (1.0.4)
|
592
627
|
spring (>= 0.9.1)
|
593
628
|
sprockets (3.7.2)
|
@@ -597,14 +632,15 @@ GEM
|
|
597
632
|
babel-source (>= 5.8.11)
|
598
633
|
babel-transpiler
|
599
634
|
sprockets (>= 3.0.0)
|
600
|
-
sprockets-rails (3.2.
|
635
|
+
sprockets-rails (3.2.2)
|
601
636
|
actionpack (>= 4.0)
|
602
637
|
activesupport (>= 4.0)
|
603
638
|
sprockets (>= 3.0.0)
|
639
|
+
ssrf_filter (1.0.7)
|
604
640
|
staccato (0.5.3)
|
605
641
|
terrapin (0.6.0)
|
606
642
|
climate_control (>= 0.0.3, < 1.0)
|
607
|
-
thor (1.0
|
643
|
+
thor (1.1.0)
|
608
644
|
thread_safe (0.3.6)
|
609
645
|
tilt (2.0.10)
|
610
646
|
traceroute (0.8.1)
|
@@ -613,15 +649,15 @@ GEM
|
|
613
649
|
turbolinks (5.2.1)
|
614
650
|
turbolinks-source (~> 5.2)
|
615
651
|
turbolinks-source (5.2.0)
|
616
|
-
tzinfo (1.2.
|
652
|
+
tzinfo (1.2.9)
|
617
653
|
thread_safe (~> 0.1)
|
618
654
|
uber (0.1.0)
|
619
655
|
unf (0.1.4)
|
620
656
|
unf_ext
|
621
657
|
unf_ext (0.0.7.7)
|
622
658
|
unicode-display_width (1.7.0)
|
623
|
-
uniform_notifier (1.13.
|
624
|
-
validate_url (1.0.
|
659
|
+
uniform_notifier (1.13.2)
|
660
|
+
validate_url (1.0.13)
|
625
661
|
activemodel (>= 3.0.0)
|
626
662
|
public_suffix
|
627
663
|
vegas (0.1.11)
|
@@ -631,20 +667,21 @@ GEM
|
|
631
667
|
coercible (~> 1.0)
|
632
668
|
descendants_tracker (~> 0.0, >= 0.0.3)
|
633
669
|
equalizer (~> 0.0, >= 0.0.9)
|
634
|
-
warden (1.2.
|
635
|
-
rack (>= 2.0.
|
636
|
-
webdrivers (4.
|
670
|
+
warden (1.2.9)
|
671
|
+
rack (>= 2.0.9)
|
672
|
+
webdrivers (4.5.0)
|
637
673
|
nokogiri (~> 1.6)
|
638
674
|
rubyzip (>= 1.3.0)
|
639
675
|
selenium-webdriver (>= 3.0, < 4.0)
|
640
|
-
webpacker (4.
|
676
|
+
webpacker (4.3.0)
|
641
677
|
activesupport (>= 4.2)
|
642
678
|
rack-proxy (>= 0.6.1)
|
643
679
|
railties (>= 4.2)
|
644
|
-
|
680
|
+
webrick (1.7.0)
|
681
|
+
websocket-driver (0.7.3)
|
645
682
|
websocket-extensions (>= 0.1.0)
|
646
683
|
websocket-extensions (0.1.5)
|
647
|
-
will_paginate (3.
|
684
|
+
will_paginate (3.3.0)
|
648
685
|
will_paginate-bootstrap (1.0.2)
|
649
686
|
will_paginate (>= 3.0.3)
|
650
687
|
with_advisory_lock (4.6.0)
|
@@ -663,13 +700,15 @@ DEPENDENCIES
|
|
663
700
|
factory_bot (~> 5)
|
664
701
|
faker (~> 2.1)
|
665
702
|
lcms-engine!
|
666
|
-
overcommit (~> 0.
|
703
|
+
overcommit (~> 0.57)
|
667
704
|
pry-byebug (~> 3.7)
|
668
705
|
pry-rails (~> 0.3.5)
|
669
706
|
rspec-rails (~> 3.8)
|
670
|
-
rubocop (~> 0.
|
671
|
-
|
672
|
-
|
707
|
+
rubocop (~> 0.93.1)
|
708
|
+
safe_attributes (~> 1.0.10)
|
709
|
+
sdoc (~> 2)
|
710
|
+
seedbank (~> 0.3)
|
711
|
+
selenium-webdriver (~> 3.142, >= 3.142.7)
|
673
712
|
shoulda-matchers (~> 4.1)
|
674
713
|
spring (~> 2.1)
|
675
714
|
spring-commands-rspec (~> 1.0)
|