iqvoc 4.13.2 → 4.14.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +6 -8
- data/Gemfile.lock +381 -331
- data/app/aides/inline_data_helper.rb +3 -3
- data/app/aides/skos_exporter.rb +1 -1
- data/app/assets/javascripts/iqvoc/iqvoc.js +0 -20
- data/app/assets/stylesheets/iqvoc/_manifest.scss +1 -0
- data/app/assets/stylesheets/iqvoc/_search_results.scss +14 -0
- data/app/controllers/collections/versions_controller.rb +12 -47
- data/app/controllers/collections_controller.rb +15 -8
- data/app/controllers/concepts/alphabetical_controller.rb +1 -1
- data/app/controllers/concepts/hierarchical_controller.rb +9 -13
- data/app/controllers/concepts/versions_controller.rb +13 -48
- data/app/controllers/concepts_controller.rb +19 -15
- data/app/controllers/concepts_movement_controller.rb +1 -1
- data/app/controllers/dashboard_controller.rb +5 -5
- data/app/controllers/imports_controller.rb +9 -6
- data/app/controllers/reverse_matches_controller.rb +2 -4
- data/app/controllers/search_results_controller.rb +13 -19
- data/app/helpers/application_helper.rb +0 -8
- data/app/helpers/link_helper.rb +13 -9
- data/app/helpers/rdf_helper.rb +9 -5
- data/app/jobs/reverse_match_job.rb +8 -4
- data/app/models/ability.rb +7 -7
- data/app/models/collection/base.rb +17 -8
- data/app/models/concept/base.rb +17 -7
- data/app/models/concept/relation/base.rb +1 -1
- data/app/models/concept/relation/reverse_relation_extension.rb +9 -5
- data/app/models/concerns/search_extension.rb +0 -17
- data/app/models/concerns/versioning.rb +1 -31
- data/app/models/dataset/adaptors/iqvoc/alphabetical_search_adaptor.rb +2 -2
- data/app/models/dataset/adaptors/iqvoc/http_adaptor.rb +2 -2
- data/app/models/dataset/adaptors/iqvoc/search_adaptor.rb +2 -2
- data/app/models/export.rb +1 -1
- data/app/models/label/base.rb +5 -5
- data/app/models/note/base.rb +1 -1
- data/app/models/user.rb +2 -0
- data/app/uploaders/rdf_uploader.rb +1 -1
- data/app/views/collections/_data.html.erb +2 -2
- data/app/views/collections/show_unpublished.html.erb +3 -11
- data/app/views/concepts/notifications/_referenced_concepts.html.erb +0 -1
- data/app/views/concepts/show_published.html.erb +2 -0
- data/app/views/concepts/show_unpublished.html.erb +5 -11
- data/app/views/dashboard/_table.html.erb +0 -8
- data/app/views/pages/version.html.erb +1 -1
- data/app/views/partials/concept/_edit_link_base.html.erb +2 -2
- data/app/views/partials/concept/relation/_edit_base.html.erb +13 -10
- data/app/views/search_results/_detailed_search.html.erb +27 -0
- data/app/views/search_results/_form.html.erb +21 -9
- data/app/views/search_results/index.html.erb +4 -4
- data/app/views/search_results/sections/_change_note.html.erb +28 -25
- data/app/views/search_results/sections/_collection.html.erb +5 -5
- data/app/views/search_results/sections/_datasets.html.erb +8 -20
- data/app/views/search_results/sections/_klass.html.erb +7 -9
- data/app/views/search_results/sections/_languages.html.erb +4 -14
- data/app/views/search_results/sections/_mode.html.erb +8 -10
- data/app/views/search_results/sections/_options.html.erb +6 -8
- data/app/views/search_results/sections/_terms.html.erb +13 -10
- data/app/views/search_results/sections/_type.html.erb +13 -13
- data/config/application.rb +1 -1
- data/config/boot.rb +1 -1
- data/config/database.yml +21 -15
- data/config/database.yml.postgresql +1 -1
- data/config/engine.rb +1 -0
- data/config/initializers/active_record.rb +2 -0
- data/config/initializers/content_security_policy.rb +21 -26
- data/config/initializers/filter_parameter_logging.rb +4 -2
- data/config/initializers/inflections.rb +4 -4
- data/config/initializers/iqvoc.rb +1 -0
- data/config/locales/de.yml +13 -18
- data/config/locales/en.yml +13 -18
- data/config/locales/pt.yml +0 -7
- data/config/routes.rb +0 -4
- data/db/migrate/20231012135837_remove_locked_by.rb +6 -0
- data/db/schema.rb +31 -34
- data/iqvoc.gemspec +7 -5
- data/lib/iqvoc/configuration/concept.rb +2 -0
- data/lib/iqvoc/configuration/core.rb +4 -0
- data/lib/iqvoc/configuration/instance_configuration.rb +2 -2
- data/lib/iqvoc/environments/development.rb +5 -2
- data/lib/iqvoc/environments/production.rb +7 -28
- data/lib/iqvoc/environments/test.rb +1 -1
- data/lib/iqvoc/version.rb +1 -1
- data/test/controllers/concepts_movement_controller_test.rb +0 -2
- data/test/controllers/reverse_match_test.rb +1 -1
- data/test/integration/collection_browsing_test.rb +45 -0
- data/test/integration/collection_circularity_test.rb +3 -3
- data/test/integration/concept_collection_assignment_test.rb +1 -1
- data/test/integration/create_concept_test.rb +15 -0
- data/test/integration/reverse_match_job_test.rb +39 -7
- data/test/integration/search_test.rb +9 -9
- data/test/integration/version_page_test.rb +26 -0
- data/test/models/concept_test.rb +37 -0
- data/test/models/deep_cloning_test.rb +9 -7
- data/test/test_helper.rb +3 -0
- metadata +81 -67
- data/app/views/search_results/sections/_note.html.erb +0 -6
- data/bin/bundle +0 -3
- data/bin/delayed_job +0 -5
- data/bin/rails +0 -4
- data/bin/rake +0 -4
- data/bin/setup +0 -36
- data/bin/update +0 -31
- data/bin/yarn +0 -17
data/Gemfile.lock
CHANGED
@@ -1,479 +1,529 @@
|
|
1
1
|
GEM
|
2
2
|
remote: https://rubygems.org/
|
3
3
|
specs:
|
4
|
-
actioncable (
|
5
|
-
actionpack (=
|
6
|
-
activesupport (=
|
4
|
+
actioncable (7.0.8)
|
5
|
+
actionpack (= 7.0.8)
|
6
|
+
activesupport (= 7.0.8)
|
7
7
|
nio4r (~> 2.0)
|
8
8
|
websocket-driver (>= 0.6.1)
|
9
|
-
actionmailbox (
|
10
|
-
actionpack (=
|
11
|
-
activejob (=
|
12
|
-
activerecord (=
|
13
|
-
activestorage (=
|
14
|
-
activesupport (=
|
9
|
+
actionmailbox (7.0.8)
|
10
|
+
actionpack (= 7.0.8)
|
11
|
+
activejob (= 7.0.8)
|
12
|
+
activerecord (= 7.0.8)
|
13
|
+
activestorage (= 7.0.8)
|
14
|
+
activesupport (= 7.0.8)
|
15
15
|
mail (>= 2.7.1)
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
net-imap
|
17
|
+
net-pop
|
18
|
+
net-smtp
|
19
|
+
actionmailer (7.0.8)
|
20
|
+
actionpack (= 7.0.8)
|
21
|
+
actionview (= 7.0.8)
|
22
|
+
activejob (= 7.0.8)
|
23
|
+
activesupport (= 7.0.8)
|
21
24
|
mail (~> 2.5, >= 2.5.4)
|
25
|
+
net-imap
|
26
|
+
net-pop
|
27
|
+
net-smtp
|
22
28
|
rails-dom-testing (~> 2.0)
|
23
|
-
actionpack (
|
24
|
-
actionview (=
|
25
|
-
activesupport (=
|
26
|
-
rack (~> 2.0, >= 2.
|
29
|
+
actionpack (7.0.8)
|
30
|
+
actionview (= 7.0.8)
|
31
|
+
activesupport (= 7.0.8)
|
32
|
+
rack (~> 2.0, >= 2.2.4)
|
27
33
|
rack-test (>= 0.6.3)
|
28
34
|
rails-dom-testing (~> 2.0)
|
29
35
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
30
|
-
actiontext (
|
31
|
-
actionpack (=
|
32
|
-
activerecord (=
|
33
|
-
activestorage (=
|
34
|
-
activesupport (=
|
36
|
+
actiontext (7.0.8)
|
37
|
+
actionpack (= 7.0.8)
|
38
|
+
activerecord (= 7.0.8)
|
39
|
+
activestorage (= 7.0.8)
|
40
|
+
activesupport (= 7.0.8)
|
41
|
+
globalid (>= 0.6.0)
|
35
42
|
nokogiri (>= 1.8.5)
|
36
|
-
actionview (
|
37
|
-
activesupport (=
|
43
|
+
actionview (7.0.8)
|
44
|
+
activesupport (= 7.0.8)
|
38
45
|
builder (~> 3.1)
|
39
46
|
erubi (~> 1.4)
|
40
47
|
rails-dom-testing (~> 2.0)
|
41
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
42
|
-
activejob (
|
43
|
-
activesupport (=
|
49
|
+
activejob (7.0.8)
|
50
|
+
activesupport (= 7.0.8)
|
44
51
|
globalid (>= 0.3.6)
|
45
|
-
activemodel (
|
46
|
-
activesupport (=
|
47
|
-
activerecord (
|
48
|
-
activemodel (=
|
49
|
-
activesupport (=
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
activerecord (= 6.1.5.1)
|
56
|
-
activesupport (= 6.1.5.1)
|
52
|
+
activemodel (7.0.8)
|
53
|
+
activesupport (= 7.0.8)
|
54
|
+
activerecord (7.0.8)
|
55
|
+
activemodel (= 7.0.8)
|
56
|
+
activesupport (= 7.0.8)
|
57
|
+
activestorage (7.0.8)
|
58
|
+
actionpack (= 7.0.8)
|
59
|
+
activejob (= 7.0.8)
|
60
|
+
activerecord (= 7.0.8)
|
61
|
+
activesupport (= 7.0.8)
|
57
62
|
marcel (~> 1.0)
|
58
63
|
mini_mime (>= 1.1.0)
|
59
|
-
activesupport (
|
64
|
+
activesupport (7.0.8)
|
60
65
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
61
66
|
i18n (>= 1.6, < 2)
|
62
67
|
minitest (>= 5.1)
|
63
68
|
tzinfo (~> 2.0)
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
activesupport (>= 5.2, < 7.1)
|
69
|
+
addressable (2.8.6)
|
70
|
+
public_suffix (>= 2.0.2, < 6.0)
|
71
|
+
apipie-rails (1.3.0)
|
72
|
+
actionpack (>= 5.0)
|
73
|
+
activesupport (>= 5.0)
|
74
|
+
authlogic (6.4.3)
|
75
|
+
activemodel (>= 5.2, < 7.2)
|
76
|
+
activerecord (>= 5.2, < 7.2)
|
77
|
+
activesupport (>= 5.2, < 7.2)
|
74
78
|
request_store (~> 1.0)
|
75
|
-
|
76
|
-
|
77
|
-
better_errors (2.8.0)
|
78
|
-
coderay (>= 1.0.0)
|
79
|
+
bcp47_spec (0.2.1)
|
80
|
+
better_errors (2.10.1)
|
79
81
|
erubi (>= 1.0.0)
|
80
82
|
rack (>= 0.9.0)
|
83
|
+
rouge (>= 1.0.0)
|
84
|
+
bigdecimal (3.1.6)
|
85
|
+
bigdecimal (3.1.6-java)
|
81
86
|
bindex (0.8.1)
|
82
|
-
bootsnap (1.
|
83
|
-
msgpack (~> 1.
|
84
|
-
bootsnap (1.4.6-java)
|
85
|
-
msgpack (~> 1.0)
|
87
|
+
bootsnap (1.18.3)
|
88
|
+
msgpack (~> 1.2)
|
86
89
|
bootstrap_form (4.5.0)
|
87
90
|
actionpack (>= 5.2)
|
88
91
|
activemodel (>= 5.2)
|
89
92
|
builder (3.2.4)
|
90
|
-
cancancan (3.
|
91
|
-
capybara (3.
|
93
|
+
cancancan (3.5.0)
|
94
|
+
capybara (3.40.0)
|
92
95
|
addressable
|
96
|
+
matrix
|
93
97
|
mini_mime (>= 0.1.3)
|
94
|
-
nokogiri (~> 1.
|
98
|
+
nokogiri (~> 1.11)
|
95
99
|
rack (>= 1.6.0)
|
96
100
|
rack-test (>= 0.6.3)
|
97
|
-
regexp_parser (
|
101
|
+
regexp_parser (>= 1.5, < 3.0)
|
98
102
|
xpath (~> 3.2)
|
99
|
-
carrierwave (
|
100
|
-
activemodel (>=
|
101
|
-
activesupport (>=
|
103
|
+
carrierwave (3.0.5)
|
104
|
+
activemodel (>= 6.0.0)
|
105
|
+
activesupport (>= 6.0.0)
|
102
106
|
addressable (~> 2.6)
|
103
107
|
image_processing (~> 1.1)
|
104
|
-
|
105
|
-
mini_mime (>= 0.1.3)
|
108
|
+
marcel (~> 1.0.0)
|
106
109
|
ssrf_filter (~> 1.0)
|
107
|
-
|
110
|
+
carrierwave-i18n (3.0.0)
|
111
|
+
carrierwave (>= 3.0.0, < 4)
|
108
112
|
coderay (1.1.3)
|
109
|
-
concurrent-ruby (1.
|
110
|
-
connection_pool (2.
|
111
|
-
crack (0.4.
|
112
|
-
|
113
|
+
concurrent-ruby (1.2.3)
|
114
|
+
connection_pool (2.4.1)
|
115
|
+
crack (0.4.6)
|
116
|
+
bigdecimal
|
117
|
+
rexml
|
113
118
|
crass (1.0.6)
|
114
|
-
cuprite (0.
|
115
|
-
capybara (
|
116
|
-
ferrum (~> 0.
|
117
|
-
daemons (1.3.1)
|
119
|
+
cuprite (0.15)
|
120
|
+
capybara (~> 3.0)
|
121
|
+
ferrum (~> 0.14.0)
|
118
122
|
database_cleaner (1.8.5)
|
119
|
-
|
120
|
-
|
121
|
-
|
123
|
+
date (3.3.4)
|
124
|
+
date (3.3.4-java)
|
125
|
+
deep_cloneable (3.2.0)
|
126
|
+
activerecord (>= 3.1.0, < 8)
|
127
|
+
delayed_job (4.1.11)
|
122
128
|
activesupport (>= 3.0, < 8.0)
|
123
|
-
delayed_job_active_record (4.1.
|
129
|
+
delayed_job_active_record (4.1.8)
|
124
130
|
activerecord (>= 3.0, < 8.0)
|
125
131
|
delayed_job (>= 3.0, < 5)
|
126
|
-
ebnf (2.
|
127
|
-
amazing_print (~> 1.2)
|
132
|
+
ebnf (2.4.0)
|
128
133
|
htmlentities (~> 4.3)
|
129
|
-
rdf (~> 3.
|
134
|
+
rdf (~> 3.3)
|
130
135
|
scanf (~> 1.0)
|
131
|
-
sxp (~> 1.
|
132
|
-
unicode-types (~> 1.
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
faraday (
|
136
|
+
sxp (~> 1.3)
|
137
|
+
unicode-types (~> 1.8)
|
138
|
+
erubi (1.12.0)
|
139
|
+
faraday (1.10.3)
|
140
|
+
faraday-em_http (~> 1.0)
|
141
|
+
faraday-em_synchrony (~> 1.0)
|
142
|
+
faraday-excon (~> 1.1)
|
143
|
+
faraday-httpclient (~> 1.0)
|
144
|
+
faraday-multipart (~> 1.0)
|
145
|
+
faraday-net_http (~> 1.0)
|
146
|
+
faraday-net_http_persistent (~> 1.0)
|
147
|
+
faraday-patron (~> 1.0)
|
148
|
+
faraday-rack (~> 1.0)
|
149
|
+
faraday-retry (~> 1.0)
|
150
|
+
ruby2_keywords (>= 0.0.4)
|
151
|
+
faraday-em_http (1.0.0)
|
152
|
+
faraday-em_synchrony (1.0.0)
|
153
|
+
faraday-excon (1.1.0)
|
154
|
+
faraday-httpclient (1.0.1)
|
155
|
+
faraday-multipart (1.0.4)
|
156
|
+
multipart-post (~> 2)
|
157
|
+
faraday-net_http (1.0.1)
|
158
|
+
faraday-net_http_persistent (1.2.0)
|
159
|
+
faraday-patron (1.0.0)
|
160
|
+
faraday-rack (1.0.0)
|
161
|
+
faraday-retry (1.0.3)
|
162
|
+
faraday_middleware (1.2.0)
|
163
|
+
faraday (~> 1.0)
|
140
164
|
faucet_pipeline_rails (1.0.1)
|
141
165
|
rails (>= 4.2.10)
|
142
|
-
ferrum (0.
|
166
|
+
ferrum (0.14)
|
143
167
|
addressable (~> 2.5)
|
144
|
-
cliver (~> 0.3)
|
145
168
|
concurrent-ruby (~> 1.1)
|
169
|
+
webrick (~> 1.7)
|
146
170
|
websocket-driver (>= 0.6, < 0.8)
|
147
|
-
ffi (1.
|
148
|
-
ffi (1.
|
171
|
+
ffi (1.16.3)
|
172
|
+
ffi (1.16.3-java)
|
149
173
|
ffi-compiler (1.0.1)
|
150
174
|
ffi (>= 1.0.0)
|
151
175
|
rake
|
152
|
-
globalid (1.
|
153
|
-
activesupport (>=
|
154
|
-
haml (
|
155
|
-
temple (>= 0.8.
|
176
|
+
globalid (1.2.1)
|
177
|
+
activesupport (>= 6.1)
|
178
|
+
haml (6.3.0)
|
179
|
+
temple (>= 0.8.2)
|
180
|
+
thor
|
156
181
|
tilt
|
157
182
|
hamster (3.0.0)
|
158
183
|
concurrent-ruby (~> 1.0)
|
159
|
-
hashdiff (1.0
|
184
|
+
hashdiff (1.1.0)
|
160
185
|
htmlentities (4.3.4)
|
161
|
-
i18n (1.
|
186
|
+
i18n (1.14.1)
|
162
187
|
concurrent-ruby (~> 1.0)
|
163
188
|
image_processing (1.12.2)
|
164
189
|
mini_magick (>= 4.9.5, < 5)
|
165
190
|
ruby-vips (>= 2.0.17, < 3)
|
166
|
-
iq_rdf (0.
|
191
|
+
iq_rdf (0.2.0)
|
167
192
|
activesupport
|
168
193
|
builder
|
169
194
|
bundler
|
170
195
|
iq_triplestorage (0.2.2)
|
171
|
-
|
172
|
-
json (2.
|
173
|
-
json
|
174
|
-
json-
|
196
|
+
jar-dependencies (0.4.1)
|
197
|
+
json (2.7.1)
|
198
|
+
json (2.7.1-java)
|
199
|
+
json-canonicalization (1.0.0)
|
200
|
+
json-ld (3.3.1)
|
175
201
|
htmlentities (~> 4.3)
|
176
|
-
json-canonicalization (~> 0
|
202
|
+
json-canonicalization (~> 1.0)
|
177
203
|
link_header (~> 0.0, >= 0.0.8)
|
178
|
-
multi_json (~> 1.
|
179
|
-
rack (
|
180
|
-
rdf (~> 3.
|
181
|
-
json-ld-preloaded (3.
|
182
|
-
json-ld (~> 3.
|
183
|
-
rdf (~> 3.
|
184
|
-
kaminari (1.2.
|
204
|
+
multi_json (~> 1.15)
|
205
|
+
rack (>= 2.2, < 4)
|
206
|
+
rdf (~> 3.3)
|
207
|
+
json-ld-preloaded (3.3.0)
|
208
|
+
json-ld (~> 3.3)
|
209
|
+
rdf (~> 3.3)
|
210
|
+
kaminari (1.2.2)
|
185
211
|
activesupport (>= 4.1.0)
|
186
|
-
kaminari-actionview (= 1.2.
|
187
|
-
kaminari-activerecord (= 1.2.
|
188
|
-
kaminari-core (= 1.2.
|
189
|
-
kaminari-actionview (1.2.
|
212
|
+
kaminari-actionview (= 1.2.2)
|
213
|
+
kaminari-activerecord (= 1.2.2)
|
214
|
+
kaminari-core (= 1.2.2)
|
215
|
+
kaminari-actionview (1.2.2)
|
190
216
|
actionview
|
191
|
-
kaminari-core (= 1.2.
|
192
|
-
kaminari-activerecord (1.2.
|
217
|
+
kaminari-core (= 1.2.2)
|
218
|
+
kaminari-activerecord (1.2.2)
|
193
219
|
activerecord
|
194
|
-
kaminari-core (= 1.2.
|
195
|
-
kaminari-core (1.2.
|
196
|
-
ld-patch (3.
|
197
|
-
ebnf (~> 2.
|
198
|
-
rdf (~> 3.
|
199
|
-
rdf-xsd (~> 3.
|
200
|
-
sparql (~> 3.
|
201
|
-
sxp (~> 1.
|
220
|
+
kaminari-core (= 1.2.2)
|
221
|
+
kaminari-core (1.2.2)
|
222
|
+
ld-patch (3.3.0)
|
223
|
+
ebnf (~> 2.4)
|
224
|
+
rdf (~> 3.3)
|
225
|
+
rdf-xsd (~> 3.3)
|
226
|
+
sparql (~> 3.3)
|
227
|
+
sxp (~> 1.3)
|
202
228
|
link_header (0.0.8)
|
203
|
-
linkeddata (3.1
|
204
|
-
|
205
|
-
json-ld (~> 3.
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
rdf (~> 3.
|
210
|
-
rdf-
|
211
|
-
rdf-isomorphic (~> 3.
|
212
|
-
rdf-json (~> 3.
|
213
|
-
rdf-microdata (~> 3.
|
214
|
-
rdf-n3 (~> 3.
|
215
|
-
rdf-normalize (~> 0.
|
216
|
-
rdf-ordered-repo (~> 3.
|
217
|
-
rdf-rdfa (~> 3.
|
218
|
-
rdf-rdfxml (~> 3.
|
219
|
-
rdf-reasoner (~> 0.
|
220
|
-
rdf-tabular (~> 3.
|
221
|
-
rdf-trig (~> 3.
|
222
|
-
rdf-trix (~> 3.
|
223
|
-
rdf-turtle (~> 3.
|
224
|
-
rdf-vocab (~> 3.
|
225
|
-
rdf-xsd (~> 3.
|
226
|
-
shacl (~> 0.
|
227
|
-
shex (~> 0.
|
228
|
-
sparql (~> 3.
|
229
|
-
sparql-client (~> 3.
|
230
|
-
|
229
|
+
linkeddata (3.3.1)
|
230
|
+
json-ld (~> 3.3)
|
231
|
+
json-ld-preloaded (~> 3.3)
|
232
|
+
ld-patch (~> 3.3)
|
233
|
+
nokogiri (~> 1.15, >= 1.15.4)
|
234
|
+
rdf (~> 3.2, >= 3.2.1)
|
235
|
+
rdf-aggregate-repo (~> 3.2)
|
236
|
+
rdf-hamster-repo (~> 3.3)
|
237
|
+
rdf-isomorphic (~> 3.3)
|
238
|
+
rdf-json (~> 3.3)
|
239
|
+
rdf-microdata (~> 3.3)
|
240
|
+
rdf-n3 (~> 3.3)
|
241
|
+
rdf-normalize (~> 0.7)
|
242
|
+
rdf-ordered-repo (~> 3.3)
|
243
|
+
rdf-rdfa (~> 3.3)
|
244
|
+
rdf-rdfxml (~> 3.3)
|
245
|
+
rdf-reasoner (~> 0.9)
|
246
|
+
rdf-tabular (~> 3.3)
|
247
|
+
rdf-trig (~> 3.3)
|
248
|
+
rdf-trix (~> 3.3)
|
249
|
+
rdf-turtle (~> 3.3)
|
250
|
+
rdf-vocab (~> 3.3)
|
251
|
+
rdf-xsd (~> 3.3)
|
252
|
+
shacl (~> 0.4)
|
253
|
+
shex (~> 0.8)
|
254
|
+
sparql (~> 3.3)
|
255
|
+
sparql-client (~> 3.3)
|
256
|
+
yaml-ld (~> 0.0)
|
257
|
+
listen (3.8.0)
|
231
258
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
232
259
|
rb-inotify (~> 0.9, >= 0.9.10)
|
233
|
-
logger (1.
|
234
|
-
loofah (2.
|
260
|
+
logger (1.6.0)
|
261
|
+
loofah (2.22.0)
|
235
262
|
crass (~> 1.0.2)
|
236
|
-
nokogiri (>= 1.
|
237
|
-
mail (2.
|
263
|
+
nokogiri (>= 1.12.0)
|
264
|
+
mail (2.8.1)
|
238
265
|
mini_mime (>= 0.1.1)
|
266
|
+
net-imap
|
267
|
+
net-pop
|
268
|
+
net-smtp
|
239
269
|
marcel (1.0.2)
|
240
270
|
maruku (0.7.3)
|
271
|
+
matrix (0.4.2)
|
241
272
|
method_source (1.0.0)
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
minitest (5.15.0)
|
249
|
-
msgpack (1.3.3)
|
250
|
-
msgpack (1.3.3-java)
|
273
|
+
mini_magick (4.12.0)
|
274
|
+
mini_mime (1.1.5)
|
275
|
+
mini_portile2 (2.8.5)
|
276
|
+
minitest (5.21.2)
|
277
|
+
msgpack (1.7.2)
|
278
|
+
msgpack (1.7.2-java)
|
251
279
|
multi_json (1.15.0)
|
252
|
-
multipart-post (2.
|
253
|
-
net-http
|
280
|
+
multipart-post (2.3.0)
|
281
|
+
net-http (0.4.1)
|
282
|
+
uri
|
283
|
+
net-http-persistent (4.0.2)
|
254
284
|
connection_pool (~> 2.2)
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
285
|
+
net-imap (0.4.9.1)
|
286
|
+
date
|
287
|
+
net-protocol
|
288
|
+
net-pop (0.1.2)
|
289
|
+
net-protocol
|
290
|
+
net-protocol (0.2.2)
|
291
|
+
timeout
|
292
|
+
net-smtp (0.4.0.1)
|
293
|
+
net-protocol
|
294
|
+
nio4r (2.7.0)
|
295
|
+
nio4r (2.7.0-java)
|
296
|
+
nokogiri (1.16.0)
|
297
|
+
mini_portile2 (~> 2.8.2)
|
259
298
|
racc (~> 1.4)
|
260
|
-
nokogiri (1.
|
299
|
+
nokogiri (1.16.0-java)
|
261
300
|
racc (~> 1.4)
|
262
|
-
|
263
|
-
|
264
|
-
rake (>= 0.8.1)
|
265
|
-
pg (1.3.5)
|
266
|
-
pry (0.13.1)
|
301
|
+
pg (1.5.4)
|
302
|
+
pry (0.14.2)
|
267
303
|
coderay (~> 1.1)
|
268
304
|
method_source (~> 1.0)
|
269
|
-
pry (0.
|
305
|
+
pry (0.14.2-java)
|
270
306
|
coderay (~> 1.1)
|
271
307
|
method_source (~> 1.0)
|
272
308
|
spoon (~> 0.0)
|
273
309
|
pry-rails (0.3.9)
|
274
310
|
pry (>= 0.10.4)
|
275
|
-
|
276
|
-
|
311
|
+
psych (5.1.2)
|
312
|
+
stringio
|
313
|
+
psych (5.1.2-java)
|
314
|
+
jar-dependencies (>= 0.1.7)
|
315
|
+
public_suffix (5.0.4)
|
316
|
+
puma (6.4.2)
|
277
317
|
nio4r (~> 2.0)
|
278
|
-
puma (
|
318
|
+
puma (6.4.2-java)
|
279
319
|
nio4r (~> 2.0)
|
280
|
-
racc (1.
|
281
|
-
racc (1.
|
282
|
-
rack (2.2.
|
283
|
-
rack-mini-profiler (
|
320
|
+
racc (1.7.3)
|
321
|
+
racc (1.7.3-java)
|
322
|
+
rack (2.2.8)
|
323
|
+
rack-mini-profiler (3.3.0)
|
284
324
|
rack (>= 1.2.0)
|
285
|
-
rack-test (
|
286
|
-
rack (>= 1.
|
287
|
-
rails (
|
288
|
-
actioncable (=
|
289
|
-
actionmailbox (=
|
290
|
-
actionmailer (=
|
291
|
-
actionpack (=
|
292
|
-
actiontext (=
|
293
|
-
actionview (=
|
294
|
-
activejob (=
|
295
|
-
activemodel (=
|
296
|
-
activerecord (=
|
297
|
-
activestorage (=
|
298
|
-
activesupport (=
|
325
|
+
rack-test (2.1.0)
|
326
|
+
rack (>= 1.3)
|
327
|
+
rails (7.0.8)
|
328
|
+
actioncable (= 7.0.8)
|
329
|
+
actionmailbox (= 7.0.8)
|
330
|
+
actionmailer (= 7.0.8)
|
331
|
+
actionpack (= 7.0.8)
|
332
|
+
actiontext (= 7.0.8)
|
333
|
+
actionview (= 7.0.8)
|
334
|
+
activejob (= 7.0.8)
|
335
|
+
activemodel (= 7.0.8)
|
336
|
+
activerecord (= 7.0.8)
|
337
|
+
activestorage (= 7.0.8)
|
338
|
+
activesupport (= 7.0.8)
|
299
339
|
bundler (>= 1.15.0)
|
300
|
-
railties (=
|
301
|
-
|
302
|
-
|
303
|
-
|
340
|
+
railties (= 7.0.8)
|
341
|
+
rails-dom-testing (2.2.0)
|
342
|
+
activesupport (>= 5.0.0)
|
343
|
+
minitest
|
304
344
|
nokogiri (>= 1.6)
|
305
|
-
rails-html-sanitizer (1.
|
306
|
-
loofah (~> 2.
|
345
|
+
rails-html-sanitizer (1.6.0)
|
346
|
+
loofah (~> 2.21)
|
347
|
+
nokogiri (~> 1.14)
|
307
348
|
rails_12factor (0.0.3)
|
308
349
|
rails_serve_static_assets
|
309
350
|
rails_stdout_logging
|
310
|
-
rails_autolink (1.1.
|
311
|
-
|
351
|
+
rails_autolink (1.1.8)
|
352
|
+
actionview (> 3.1)
|
353
|
+
activesupport (> 3.1)
|
354
|
+
railties (> 3.1)
|
312
355
|
rails_serve_static_assets (0.0.5)
|
313
356
|
rails_stdout_logging (0.0.5)
|
314
|
-
railties (
|
315
|
-
actionpack (=
|
316
|
-
activesupport (=
|
357
|
+
railties (7.0.8)
|
358
|
+
actionpack (= 7.0.8)
|
359
|
+
activesupport (= 7.0.8)
|
317
360
|
method_source
|
318
361
|
rake (>= 12.2)
|
319
362
|
thor (~> 1.0)
|
320
|
-
|
321
|
-
|
363
|
+
zeitwerk (~> 2.5)
|
364
|
+
rake (13.1.0)
|
365
|
+
rb-fsevent (0.11.2)
|
322
366
|
rb-inotify (0.10.1)
|
323
367
|
ffi (~> 1.0)
|
324
|
-
rdf (3.1
|
325
|
-
|
368
|
+
rdf (3.3.1)
|
369
|
+
bcp47_spec (~> 0.2)
|
326
370
|
link_header (~> 0.0, >= 0.0.8)
|
327
|
-
rdf-aggregate-repo (3.
|
328
|
-
rdf (~> 3.
|
329
|
-
rdf-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
371
|
+
rdf-aggregate-repo (3.3.0)
|
372
|
+
rdf (~> 3.3)
|
373
|
+
rdf-hamster-repo (3.3.0)
|
374
|
+
hamster (~> 3.0)
|
375
|
+
rdf (~> 3.3)
|
376
|
+
rdf-isomorphic (3.3.0)
|
377
|
+
rdf (~> 3.3)
|
378
|
+
rdf-json (3.3.0)
|
379
|
+
rdf (~> 3.3)
|
380
|
+
rdf-microdata (3.3.0)
|
334
381
|
htmlentities (~> 4.3)
|
335
|
-
nokogiri (~> 1.
|
336
|
-
rdf (~> 3.
|
337
|
-
rdf-rdfa (~> 3.
|
338
|
-
rdf-xsd (~> 3.
|
339
|
-
rdf-n3 (3.
|
340
|
-
ebnf (~> 2.
|
341
|
-
rdf (~> 3.
|
342
|
-
sparql (~> 3.
|
343
|
-
sxp (~> 1.
|
344
|
-
rdf-normalize (0.
|
345
|
-
rdf (~> 3.
|
346
|
-
rdf-ordered-repo (3.
|
347
|
-
rdf (~> 3.
|
348
|
-
rdf-rdfa (3.
|
349
|
-
haml (~>
|
382
|
+
nokogiri (~> 1.15, >= 1.15.4)
|
383
|
+
rdf (~> 3.3)
|
384
|
+
rdf-rdfa (~> 3.3)
|
385
|
+
rdf-xsd (~> 3.3)
|
386
|
+
rdf-n3 (3.3.0)
|
387
|
+
ebnf (~> 2.4)
|
388
|
+
rdf (~> 3.3)
|
389
|
+
sparql (~> 3.3)
|
390
|
+
sxp (~> 1.3)
|
391
|
+
rdf-normalize (0.7.0)
|
392
|
+
rdf (~> 3.3)
|
393
|
+
rdf-ordered-repo (3.3.0)
|
394
|
+
rdf (~> 3.3)
|
395
|
+
rdf-rdfa (3.3.0)
|
396
|
+
haml (~> 6.1)
|
350
397
|
htmlentities (~> 4.3)
|
351
|
-
rdf (~> 3.
|
352
|
-
rdf-aggregate-repo (~> 3.
|
353
|
-
rdf-vocab (~> 3.
|
354
|
-
rdf-xsd (~> 3.
|
355
|
-
rdf-rdfxml (3.
|
398
|
+
rdf (~> 3.3)
|
399
|
+
rdf-aggregate-repo (~> 3.3)
|
400
|
+
rdf-vocab (~> 3.3)
|
401
|
+
rdf-xsd (~> 3.3)
|
402
|
+
rdf-rdfxml (3.3.0)
|
403
|
+
builder (~> 3.2, >= 3.2.4)
|
356
404
|
htmlentities (~> 4.3)
|
357
|
-
rdf (~> 3.
|
358
|
-
rdf-
|
359
|
-
|
360
|
-
|
361
|
-
rdf (~> 3.
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
rdf (~> 3.
|
368
|
-
rdf-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
rdf (~> 3.
|
373
|
-
|
374
|
-
|
375
|
-
rdf (~> 3.
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
rdf (~> 3.1)
|
405
|
+
rdf (~> 3.3)
|
406
|
+
rdf-xsd (~> 3.3)
|
407
|
+
rdf-reasoner (0.9.0)
|
408
|
+
rdf (~> 3.3)
|
409
|
+
rdf-xsd (~> 3.3)
|
410
|
+
rdf-tabular (3.3.0)
|
411
|
+
addressable (~> 2.8)
|
412
|
+
bcp47_spec (~> 0.2)
|
413
|
+
json-ld (~> 3.3)
|
414
|
+
rdf (~> 3.3)
|
415
|
+
rdf-vocab (~> 3.3)
|
416
|
+
rdf-xsd (~> 3.3)
|
417
|
+
rdf-trig (3.3.0)
|
418
|
+
ebnf (~> 2.4)
|
419
|
+
rdf (~> 3.3)
|
420
|
+
rdf-turtle (~> 3.3)
|
421
|
+
rdf-trix (3.3.0)
|
422
|
+
rdf (~> 3.3)
|
423
|
+
rdf-xsd (~> 3.3)
|
424
|
+
rdf-turtle (3.3.0)
|
425
|
+
ebnf (~> 2.4)
|
426
|
+
rdf (~> 3.3)
|
427
|
+
rdf-vocab (3.3.0)
|
428
|
+
rdf (~> 3.3)
|
429
|
+
rdf-xsd (3.3.0)
|
430
|
+
rdf (~> 3.3)
|
384
431
|
rexml (~> 3.2)
|
385
|
-
regexp_parser (
|
432
|
+
regexp_parser (2.9.0)
|
386
433
|
request_store (1.5.1)
|
387
434
|
rack (>= 1.4)
|
388
|
-
rexml (3.2.
|
389
|
-
|
435
|
+
rexml (3.2.6)
|
436
|
+
rouge (4.2.0)
|
437
|
+
ruby-vips (2.2.0)
|
390
438
|
ffi (~> 1.12)
|
391
|
-
|
439
|
+
ruby2_keywords (0.0.5)
|
392
440
|
scanf (1.0.0)
|
393
441
|
scrypt (3.0.7)
|
394
442
|
ffi-compiler (>= 1.0, < 2.0)
|
395
|
-
shacl (0.
|
396
|
-
json-ld (~> 3.
|
397
|
-
rdf (~> 3.
|
398
|
-
sparql (~> 3.
|
399
|
-
sxp (~> 1.
|
400
|
-
shex (0.
|
401
|
-
ebnf (~> 2.
|
443
|
+
shacl (0.4.1)
|
444
|
+
json-ld (~> 3.3)
|
445
|
+
rdf (~> 3.3)
|
446
|
+
sparql (~> 3.3)
|
447
|
+
sxp (~> 1.2)
|
448
|
+
shex (0.8.0)
|
449
|
+
ebnf (~> 2.4)
|
402
450
|
htmlentities (~> 4.3)
|
403
|
-
json-ld (~> 3.
|
404
|
-
json-ld-preloaded (~> 3.
|
405
|
-
rdf (~> 3.
|
406
|
-
rdf-xsd (~> 3.
|
407
|
-
sparql (~> 3.
|
408
|
-
sxp (~> 1.
|
409
|
-
sparql (3.
|
410
|
-
builder (~> 3.2)
|
411
|
-
ebnf (~> 2.
|
412
|
-
logger (~> 1.
|
413
|
-
rdf (~> 3.
|
414
|
-
rdf-aggregate-repo (~> 3.
|
415
|
-
rdf-xsd (~> 3.
|
416
|
-
sparql-client (~> 3.
|
417
|
-
sxp (~> 1.
|
418
|
-
sparql-client (3.
|
419
|
-
net-http-persistent (~> 4.0, >= 4.0.
|
420
|
-
rdf (~> 3.
|
451
|
+
json-ld (~> 3.3)
|
452
|
+
json-ld-preloaded (~> 3.3)
|
453
|
+
rdf (~> 3.3)
|
454
|
+
rdf-xsd (~> 3.3)
|
455
|
+
sparql (~> 3.3)
|
456
|
+
sxp (~> 1.3)
|
457
|
+
sparql (3.3.0)
|
458
|
+
builder (~> 3.2, >= 3.2.4)
|
459
|
+
ebnf (~> 2.4)
|
460
|
+
logger (~> 1.5)
|
461
|
+
rdf (~> 3.3)
|
462
|
+
rdf-aggregate-repo (~> 3.3)
|
463
|
+
rdf-xsd (~> 3.3)
|
464
|
+
sparql-client (~> 3.3)
|
465
|
+
sxp (~> 1.3)
|
466
|
+
sparql-client (3.3.0)
|
467
|
+
net-http-persistent (~> 4.0, >= 4.0.2)
|
468
|
+
rdf (~> 3.3)
|
421
469
|
spoon (0.0.6)
|
422
470
|
ffi
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
temple (0.8.2)
|
434
|
-
thor (1.2.1)
|
435
|
-
tilt (2.0.10)
|
436
|
-
tzinfo (2.0.4)
|
471
|
+
ssrf_filter (1.1.2)
|
472
|
+
stringio (3.1.0)
|
473
|
+
sxp (1.3.0)
|
474
|
+
matrix (~> 0.4)
|
475
|
+
rdf (~> 3.3)
|
476
|
+
temple (0.10.3)
|
477
|
+
thor (1.3.0)
|
478
|
+
tilt (2.3.0)
|
479
|
+
timeout (0.4.1)
|
480
|
+
tzinfo (2.0.6)
|
437
481
|
concurrent-ruby (~> 1.0)
|
438
|
-
unicode-types (1.
|
439
|
-
|
482
|
+
unicode-types (1.9.0)
|
483
|
+
uri (0.13.0)
|
484
|
+
web-console (4.2.1)
|
440
485
|
actionview (>= 6.0.0)
|
441
486
|
activemodel (>= 6.0.0)
|
442
487
|
bindex (>= 0.4.0)
|
443
488
|
railties (>= 6.0.0)
|
444
|
-
webmock (3.
|
445
|
-
addressable (>= 2.
|
489
|
+
webmock (3.19.1)
|
490
|
+
addressable (>= 2.8.0)
|
446
491
|
crack (>= 0.3.2)
|
447
492
|
hashdiff (>= 0.4.0, < 2.0.0)
|
448
|
-
|
493
|
+
webrick (1.8.1)
|
494
|
+
websocket-driver (0.7.6)
|
449
495
|
websocket-extensions (>= 0.1.0)
|
450
|
-
websocket-driver (0.7.
|
496
|
+
websocket-driver (0.7.6-java)
|
451
497
|
websocket-extensions (>= 0.1.0)
|
452
498
|
websocket-extensions (0.1.5)
|
453
499
|
xpath (3.2.0)
|
454
500
|
nokogiri (~> 1.8)
|
455
|
-
|
501
|
+
yaml-ld (0.0.3)
|
502
|
+
json-ld (~> 3.3)
|
503
|
+
psych (>= 3.3)
|
504
|
+
rdf (~> 3.3)
|
505
|
+
rdf-xsd (~> 3.3)
|
506
|
+
zeitwerk (2.6.12)
|
456
507
|
|
457
508
|
PLATFORMS
|
458
509
|
java
|
459
510
|
ruby
|
460
511
|
|
461
512
|
DEPENDENCIES
|
462
|
-
activerecord-nulldb-adapter
|
463
513
|
apipie-rails
|
464
514
|
authlogic
|
465
515
|
better_errors
|
466
|
-
bootsnap
|
516
|
+
bootsnap
|
467
517
|
bootstrap_form (~> 4.0)
|
468
518
|
cancancan
|
469
519
|
capybara
|
470
520
|
carrierwave
|
521
|
+
carrierwave-i18n
|
471
522
|
cuprite
|
472
|
-
daemons
|
473
523
|
database_cleaner (~> 1.8.5)
|
474
524
|
deep_cloneable
|
475
525
|
delayed_job_active_record
|
476
|
-
faraday
|
526
|
+
faraday
|
477
527
|
faraday_middleware
|
478
528
|
faucet_pipeline_rails
|
479
529
|
iq_rdf
|
@@ -483,13 +533,13 @@ DEPENDENCIES
|
|
483
533
|
linkeddata
|
484
534
|
listen (~> 3.3)
|
485
535
|
maruku
|
536
|
+
net-http
|
486
537
|
nokogiri
|
487
|
-
passenger (= 5.3.7)
|
488
538
|
pg
|
489
539
|
pry-rails
|
490
|
-
puma (<
|
540
|
+
puma (< 7.0)
|
491
541
|
rack-mini-profiler
|
492
|
-
rails (~>
|
542
|
+
rails (~> 7.0.8)
|
493
543
|
rails_12factor
|
494
544
|
rails_autolink
|
495
545
|
rdf-vocab
|
@@ -498,4 +548,4 @@ DEPENDENCIES
|
|
498
548
|
webmock
|
499
549
|
|
500
550
|
BUNDLED WITH
|
501
|
-
2.
|
551
|
+
2.3.26
|