iqvoc 4.13.2 → 4.14.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +6 -8
  3. data/Gemfile.lock +381 -331
  4. data/app/aides/inline_data_helper.rb +3 -3
  5. data/app/aides/skos_exporter.rb +1 -1
  6. data/app/assets/javascripts/iqvoc/iqvoc.js +0 -20
  7. data/app/assets/stylesheets/iqvoc/_manifest.scss +1 -0
  8. data/app/assets/stylesheets/iqvoc/_search_results.scss +14 -0
  9. data/app/controllers/collections/versions_controller.rb +12 -47
  10. data/app/controllers/collections_controller.rb +15 -8
  11. data/app/controllers/concepts/alphabetical_controller.rb +1 -1
  12. data/app/controllers/concepts/hierarchical_controller.rb +9 -13
  13. data/app/controllers/concepts/versions_controller.rb +13 -48
  14. data/app/controllers/concepts_controller.rb +19 -15
  15. data/app/controllers/concepts_movement_controller.rb +1 -1
  16. data/app/controllers/dashboard_controller.rb +5 -5
  17. data/app/controllers/imports_controller.rb +9 -6
  18. data/app/controllers/reverse_matches_controller.rb +2 -4
  19. data/app/controllers/search_results_controller.rb +13 -19
  20. data/app/helpers/application_helper.rb +0 -8
  21. data/app/helpers/link_helper.rb +13 -9
  22. data/app/helpers/rdf_helper.rb +9 -5
  23. data/app/jobs/reverse_match_job.rb +8 -4
  24. data/app/models/ability.rb +7 -7
  25. data/app/models/collection/base.rb +17 -8
  26. data/app/models/concept/base.rb +17 -7
  27. data/app/models/concept/relation/base.rb +1 -1
  28. data/app/models/concept/relation/reverse_relation_extension.rb +9 -5
  29. data/app/models/concerns/search_extension.rb +0 -17
  30. data/app/models/concerns/versioning.rb +1 -31
  31. data/app/models/dataset/adaptors/iqvoc/alphabetical_search_adaptor.rb +2 -2
  32. data/app/models/dataset/adaptors/iqvoc/http_adaptor.rb +2 -2
  33. data/app/models/dataset/adaptors/iqvoc/search_adaptor.rb +2 -2
  34. data/app/models/export.rb +1 -1
  35. data/app/models/label/base.rb +5 -5
  36. data/app/models/note/base.rb +1 -1
  37. data/app/models/user.rb +2 -0
  38. data/app/uploaders/rdf_uploader.rb +1 -1
  39. data/app/views/collections/_data.html.erb +2 -2
  40. data/app/views/collections/show_unpublished.html.erb +3 -11
  41. data/app/views/concepts/notifications/_referenced_concepts.html.erb +0 -1
  42. data/app/views/concepts/show_published.html.erb +2 -0
  43. data/app/views/concepts/show_unpublished.html.erb +5 -11
  44. data/app/views/dashboard/_table.html.erb +0 -8
  45. data/app/views/pages/version.html.erb +1 -1
  46. data/app/views/partials/concept/_edit_link_base.html.erb +2 -2
  47. data/app/views/partials/concept/relation/_edit_base.html.erb +13 -10
  48. data/app/views/search_results/_detailed_search.html.erb +27 -0
  49. data/app/views/search_results/_form.html.erb +21 -9
  50. data/app/views/search_results/index.html.erb +4 -4
  51. data/app/views/search_results/sections/_change_note.html.erb +28 -25
  52. data/app/views/search_results/sections/_collection.html.erb +5 -5
  53. data/app/views/search_results/sections/_datasets.html.erb +8 -20
  54. data/app/views/search_results/sections/_klass.html.erb +7 -9
  55. data/app/views/search_results/sections/_languages.html.erb +4 -14
  56. data/app/views/search_results/sections/_mode.html.erb +8 -10
  57. data/app/views/search_results/sections/_options.html.erb +6 -8
  58. data/app/views/search_results/sections/_terms.html.erb +13 -10
  59. data/app/views/search_results/sections/_type.html.erb +13 -13
  60. data/config/application.rb +1 -1
  61. data/config/boot.rb +1 -1
  62. data/config/database.yml +21 -15
  63. data/config/database.yml.postgresql +1 -1
  64. data/config/engine.rb +1 -0
  65. data/config/initializers/active_record.rb +2 -0
  66. data/config/initializers/content_security_policy.rb +21 -26
  67. data/config/initializers/filter_parameter_logging.rb +4 -2
  68. data/config/initializers/inflections.rb +4 -4
  69. data/config/initializers/iqvoc.rb +1 -0
  70. data/config/locales/de.yml +13 -18
  71. data/config/locales/en.yml +13 -18
  72. data/config/locales/pt.yml +0 -7
  73. data/config/routes.rb +0 -4
  74. data/db/migrate/20231012135837_remove_locked_by.rb +6 -0
  75. data/db/schema.rb +31 -34
  76. data/iqvoc.gemspec +7 -5
  77. data/lib/iqvoc/configuration/concept.rb +2 -0
  78. data/lib/iqvoc/configuration/core.rb +4 -0
  79. data/lib/iqvoc/configuration/instance_configuration.rb +2 -2
  80. data/lib/iqvoc/environments/development.rb +5 -2
  81. data/lib/iqvoc/environments/production.rb +7 -28
  82. data/lib/iqvoc/environments/test.rb +1 -1
  83. data/lib/iqvoc/version.rb +1 -1
  84. data/test/controllers/concepts_movement_controller_test.rb +0 -2
  85. data/test/controllers/reverse_match_test.rb +1 -1
  86. data/test/integration/collection_browsing_test.rb +45 -0
  87. data/test/integration/collection_circularity_test.rb +3 -3
  88. data/test/integration/concept_collection_assignment_test.rb +1 -1
  89. data/test/integration/create_concept_test.rb +15 -0
  90. data/test/integration/reverse_match_job_test.rb +39 -7
  91. data/test/integration/search_test.rb +9 -9
  92. data/test/integration/version_page_test.rb +26 -0
  93. data/test/models/concept_test.rb +37 -0
  94. data/test/models/deep_cloning_test.rb +9 -7
  95. data/test/test_helper.rb +3 -0
  96. metadata +81 -67
  97. data/app/views/search_results/sections/_note.html.erb +0 -6
  98. data/bin/bundle +0 -3
  99. data/bin/delayed_job +0 -5
  100. data/bin/rails +0 -4
  101. data/bin/rake +0 -4
  102. data/bin/setup +0 -36
  103. data/bin/update +0 -31
  104. 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 (6.1.5.1)
5
- actionpack (= 6.1.5.1)
6
- activesupport (= 6.1.5.1)
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 (6.1.5.1)
10
- actionpack (= 6.1.5.1)
11
- activejob (= 6.1.5.1)
12
- activerecord (= 6.1.5.1)
13
- activestorage (= 6.1.5.1)
14
- activesupport (= 6.1.5.1)
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
- actionmailer (6.1.5.1)
17
- actionpack (= 6.1.5.1)
18
- actionview (= 6.1.5.1)
19
- activejob (= 6.1.5.1)
20
- activesupport (= 6.1.5.1)
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 (6.1.5.1)
24
- actionview (= 6.1.5.1)
25
- activesupport (= 6.1.5.1)
26
- rack (~> 2.0, >= 2.0.9)
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 (6.1.5.1)
31
- actionpack (= 6.1.5.1)
32
- activerecord (= 6.1.5.1)
33
- activestorage (= 6.1.5.1)
34
- activesupport (= 6.1.5.1)
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 (6.1.5.1)
37
- activesupport (= 6.1.5.1)
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 (6.1.5.1)
43
- activesupport (= 6.1.5.1)
49
+ activejob (7.0.8)
50
+ activesupport (= 7.0.8)
44
51
  globalid (>= 0.3.6)
45
- activemodel (6.1.5.1)
46
- activesupport (= 6.1.5.1)
47
- activerecord (6.1.5.1)
48
- activemodel (= 6.1.5.1)
49
- activesupport (= 6.1.5.1)
50
- activerecord-nulldb-adapter (0.4.0)
51
- activerecord (>= 2.0.0)
52
- activestorage (6.1.5.1)
53
- actionpack (= 6.1.5.1)
54
- activejob (= 6.1.5.1)
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 (6.1.5.1)
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
- zeitwerk (~> 2.3)
65
- addressable (2.8.0)
66
- public_suffix (>= 2.0.2, < 5.0)
67
- amazing_print (1.4.0)
68
- apipie-rails (0.5.17)
69
- rails (>= 4.1)
70
- authlogic (6.4.2)
71
- activemodel (>= 5.2, < 7.1)
72
- activerecord (>= 5.2, < 7.1)
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
- bcp47 (0.3.3)
76
- i18n
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.4.6)
83
- msgpack (~> 1.0)
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.1.0)
91
- capybara (3.32.1)
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.8)
98
+ nokogiri (~> 1.11)
95
99
  rack (>= 1.6.0)
96
100
  rack-test (>= 0.6.3)
97
- regexp_parser (~> 1.5)
101
+ regexp_parser (>= 1.5, < 3.0)
98
102
  xpath (~> 3.2)
99
- carrierwave (2.1.1)
100
- activemodel (>= 5.0.0)
101
- activesupport (>= 5.0.0)
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
- mimemagic (>= 0.3.0)
105
- mini_mime (>= 0.1.3)
108
+ marcel (~> 1.0.0)
106
109
  ssrf_filter (~> 1.0)
107
- cliver (0.3.2)
110
+ carrierwave-i18n (3.0.0)
111
+ carrierwave (>= 3.0.0, < 4)
108
112
  coderay (1.1.3)
109
- concurrent-ruby (1.1.10)
110
- connection_pool (2.2.5)
111
- crack (0.4.3)
112
- safe_yaml (~> 1.0.0)
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.13)
115
- capybara (>= 2.1, < 4)
116
- ferrum (~> 0.11.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
- deep_cloneable (3.0.0)
120
- activerecord (>= 3.1.0, < 7)
121
- delayed_job (4.1.10)
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.7)
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.2.1)
127
- amazing_print (~> 1.2)
132
+ ebnf (2.4.0)
128
133
  htmlentities (~> 4.3)
129
- rdf (~> 3.1)
134
+ rdf (~> 3.3)
130
135
  scanf (~> 1.0)
131
- sxp (~> 1.1)
132
- unicode-types (~> 1.6)
133
- equivalent-xml (0.6.0)
134
- nokogiri (>= 1.4.3)
135
- erubi (1.10.0)
136
- faraday (0.9.0)
137
- multipart-post (>= 1.2, < 3)
138
- faraday_middleware (0.14.0)
139
- faraday (>= 0.7.4, < 1.0)
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.11)
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.15.5)
148
- ffi (1.15.5-java)
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.0.0)
153
- activesupport (>= 5.0)
154
- haml (5.2.2)
155
- temple (>= 0.8.0)
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.1)
184
+ hashdiff (1.1.0)
160
185
  htmlentities (4.3.4)
161
- i18n (1.10.0)
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.1.17)
191
+ iq_rdf (0.2.0)
167
192
  activesupport
168
193
  builder
169
194
  bundler
170
195
  iq_triplestorage (0.2.2)
171
- json (2.5.1)
172
- json (2.5.1-java)
173
- json-canonicalization (0.2.1)
174
- json-ld (3.1.10)
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.2)
202
+ json-canonicalization (~> 1.0)
177
203
  link_header (~> 0.0, >= 0.0.8)
178
- multi_json (~> 1.14)
179
- rack (~> 2.0)
180
- rdf (~> 3.1)
181
- json-ld-preloaded (3.1.6)
182
- json-ld (~> 3.1)
183
- rdf (~> 3.1)
184
- kaminari (1.2.1)
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.1)
187
- kaminari-activerecord (= 1.2.1)
188
- kaminari-core (= 1.2.1)
189
- kaminari-actionview (1.2.1)
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.1)
192
- kaminari-activerecord (1.2.1)
217
+ kaminari-core (= 1.2.2)
218
+ kaminari-activerecord (1.2.2)
193
219
  activerecord
194
- kaminari-core (= 1.2.1)
195
- kaminari-core (1.2.1)
196
- ld-patch (3.1.3)
197
- ebnf (~> 2.1)
198
- rdf (~> 3.1)
199
- rdf-xsd (~> 3.1)
200
- sparql (~> 3.1)
201
- sxp (~> 1.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.6)
204
- equivalent-xml (~> 0.6)
205
- json-ld (~> 3.1, >= 3.1.10)
206
- json-ld-preloaded (~> 3.1, >= 3.1.6)
207
- ld-patch (~> 3.1, >= 3.1.3)
208
- nokogiri (~> 1.12)
209
- rdf (~> 3.1, >= 3.1.15)
210
- rdf-aggregate-repo (~> 3.1)
211
- rdf-isomorphic (~> 3.1, >= 3.1.1)
212
- rdf-json (~> 3.1)
213
- rdf-microdata (~> 3.1, >= 3.1.4)
214
- rdf-n3 (~> 3.1, >= 3.1.2)
215
- rdf-normalize (~> 0.4)
216
- rdf-ordered-repo (~> 3.1, >= 3.1.1)
217
- rdf-rdfa (~> 3.1, >= 3.1.3)
218
- rdf-rdfxml (~> 3.1, >= 3.1.1)
219
- rdf-reasoner (~> 0.7, >= 0.7.2)
220
- rdf-tabular (~> 3.1, >= 3.1.1)
221
- rdf-trig (~> 3.1, >= 3.1.2)
222
- rdf-trix (~> 3.1, >= 3.1.1)
223
- rdf-turtle (~> 3.1, >= 3.1.3)
224
- rdf-vocab (~> 3.1, >= 3.1.14)
225
- rdf-xsd (~> 3.1, >= 3.1.1)
226
- shacl (~> 0.1, >= 0.1.1)
227
- shex (~> 0.6, >= 0.6.4)
228
- sparql (~> 3.1, >= 3.1.8)
229
- sparql-client (~> 3.1, >= 3.1.2)
230
- listen (3.7.1)
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.5.0)
234
- loofah (2.16.0)
260
+ logger (1.6.0)
261
+ loofah (2.22.0)
235
262
  crass (~> 1.0.2)
236
- nokogiri (>= 1.5.9)
237
- mail (2.7.1)
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
- mimemagic (0.4.3)
243
- nokogiri (~> 1)
244
- rake
245
- mini_magick (4.11.0)
246
- mini_mime (1.1.2)
247
- mini_portile2 (2.8.0)
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.1.1)
253
- net-http-persistent (4.0.1)
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
- nio4r (2.5.8)
256
- nio4r (2.5.8-java)
257
- nokogiri (1.13.6)
258
- mini_portile2 (~> 2.8.0)
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.13.6-java)
299
+ nokogiri (1.16.0-java)
261
300
  racc (~> 1.4)
262
- passenger (5.3.7)
263
- rack
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.13.1-java)
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
- public_suffix (4.0.6)
276
- puma (5.6.4)
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 (5.6.4-java)
318
+ puma (6.4.2-java)
279
319
  nio4r (~> 2.0)
280
- racc (1.6.0)
281
- racc (1.6.0-java)
282
- rack (2.2.3)
283
- rack-mini-profiler (2.0.1)
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 (1.1.0)
286
- rack (>= 1.0, < 3)
287
- rails (6.1.5.1)
288
- actioncable (= 6.1.5.1)
289
- actionmailbox (= 6.1.5.1)
290
- actionmailer (= 6.1.5.1)
291
- actionpack (= 6.1.5.1)
292
- actiontext (= 6.1.5.1)
293
- actionview (= 6.1.5.1)
294
- activejob (= 6.1.5.1)
295
- activemodel (= 6.1.5.1)
296
- activerecord (= 6.1.5.1)
297
- activestorage (= 6.1.5.1)
298
- activesupport (= 6.1.5.1)
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 (= 6.1.5.1)
301
- sprockets-rails (>= 2.0.0)
302
- rails-dom-testing (2.0.3)
303
- activesupport (>= 4.2.0)
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.4.2)
306
- loofah (~> 2.3)
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.6)
311
- rails (> 3.1)
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 (6.1.5.1)
315
- actionpack (= 6.1.5.1)
316
- activesupport (= 6.1.5.1)
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
- rake (13.0.6)
321
- rb-fsevent (0.11.1)
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.15)
325
- hamster (~> 3.0)
368
+ rdf (3.3.1)
369
+ bcp47_spec (~> 0.2)
326
370
  link_header (~> 0.0, >= 0.0.8)
327
- rdf-aggregate-repo (3.1.0)
328
- rdf (~> 3.1)
329
- rdf-isomorphic (3.1.1)
330
- rdf (~> 3.1)
331
- rdf-json (3.1.0)
332
- rdf (~> 3.1)
333
- rdf-microdata (3.1.4)
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.12)
336
- rdf (~> 3.1, >= 3.1.13)
337
- rdf-rdfa (~> 3.1, >= 3.1.3)
338
- rdf-xsd (~> 3.1)
339
- rdf-n3 (3.1.2)
340
- ebnf (~> 2.1)
341
- rdf (~> 3.1, >= 3.1.8)
342
- sparql (~> 3.1, >= 3.1.4)
343
- sxp (~> 1.1)
344
- rdf-normalize (0.4.0)
345
- rdf (~> 3.1)
346
- rdf-ordered-repo (3.1.1)
347
- rdf (~> 3.1)
348
- rdf-rdfa (3.1.3)
349
- haml (~> 5.2)
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.1, >= 3.1.13)
352
- rdf-aggregate-repo (~> 3.1)
353
- rdf-vocab (~> 3.1, >= 3.1.11)
354
- rdf-xsd (~> 3.1)
355
- rdf-rdfxml (3.1.1)
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.1)
358
- rdf-rdfa (~> 3.1)
359
- rdf-xsd (~> 3.1)
360
- rdf-reasoner (0.7.2)
361
- rdf (~> 3.1, >= 3.1.12)
362
- rdf-xsd (~> 3.1)
363
- rdf-tabular (3.1.1)
364
- addressable (~> 2.3)
365
- bcp47 (~> 0.3, >= 0.3.3)
366
- json-ld (~> 3.1)
367
- rdf (~> 3.1)
368
- rdf-vocab (~> 3.1)
369
- rdf-xsd (~> 3.1)
370
- rdf-trig (3.1.2)
371
- ebnf (~> 2.1)
372
- rdf (~> 3.1)
373
- rdf-turtle (~> 3.1)
374
- rdf-trix (3.1.1)
375
- rdf (~> 3.1)
376
- rdf-xsd (~> 3.1)
377
- rdf-turtle (3.1.3)
378
- ebnf (~> 2.1)
379
- rdf (~> 3.1, >= 3.1.8)
380
- rdf-vocab (3.1.14)
381
- rdf (~> 3.1, >= 3.1.12)
382
- rdf-xsd (3.1.1)
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 (1.7.0)
432
+ regexp_parser (2.9.0)
386
433
  request_store (1.5.1)
387
434
  rack (>= 1.4)
388
- rexml (3.2.5)
389
- ruby-vips (2.1.4)
435
+ rexml (3.2.6)
436
+ rouge (4.2.0)
437
+ ruby-vips (2.2.0)
390
438
  ffi (~> 1.12)
391
- safe_yaml (1.0.5)
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.1.1)
396
- json-ld (~> 3.1, >= 3.1.7)
397
- rdf (~> 3.1, >= 3.1.8)
398
- sparql (~> 3.1)
399
- sxp (~> 1.1)
400
- shex (0.6.4)
401
- ebnf (~> 2.1, >= 2.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.1)
404
- json-ld-preloaded (~> 3.1)
405
- rdf (~> 3.1)
406
- rdf-xsd (~> 3.1)
407
- sparql (~> 3.1)
408
- sxp (~> 1.1)
409
- sparql (3.1.8)
410
- builder (~> 3.2)
411
- ebnf (~> 2.1)
412
- logger (~> 1.4)
413
- rdf (~> 3.1, >= 3.1.14)
414
- rdf-aggregate-repo (~> 3.1)
415
- rdf-xsd (~> 3.1)
416
- sparql-client (~> 3.1, >= 3.1.2)
417
- sxp (~> 1.1)
418
- sparql-client (3.1.2)
419
- net-http-persistent (~> 4.0, >= 4.0.1)
420
- rdf (~> 3.1)
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
- sprockets (4.0.3)
424
- concurrent-ruby (~> 1.0)
425
- rack (> 1, < 3)
426
- sprockets-rails (3.4.2)
427
- actionpack (>= 5.2)
428
- activesupport (>= 5.2)
429
- sprockets (>= 3.0.0)
430
- ssrf_filter (1.0.7)
431
- sxp (1.1.0)
432
- rdf (~> 3.1)
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.7.0)
439
- web-console (4.2.0)
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.8.3)
445
- addressable (>= 2.3.6)
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
- websocket-driver (0.7.5)
493
+ webrick (1.8.1)
494
+ websocket-driver (0.7.6)
449
495
  websocket-extensions (>= 0.1.0)
450
- websocket-driver (0.7.5-java)
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
- zeitwerk (2.5.4)
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 (>= 1.4.4)
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 (= 0.9.0)
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 (< 6.0)
540
+ puma (< 7.0)
491
541
  rack-mini-profiler
492
- rails (~> 6.1.5, >= 6.1.5.1)
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.2.32
551
+ 2.3.26