blacklight 7.42.0 → 7.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/assets/javascripts/blacklight/blacklight.esm.js +596 -0
- data/app/assets/javascripts/blacklight/blacklight.esm.js.map +1 -0
- data/app/assets/javascripts/blacklight/blacklight.js +5 -10
- data/app/assets/javascripts/blacklight/blacklight.js.map +1 -0
- data/blacklight.gemspec +1 -0
- data/lib/blacklight/abstract_repository.rb +2 -0
- data/lib/blacklight/controller_runtime.rb +42 -0
- data/lib/blacklight/engine.rb +9 -0
- data/lib/blacklight/log_subscriber.rb +25 -0
- data/lib/blacklight/runtime_registry.rb +24 -0
- data/lib/blacklight/solr/repository.rb +15 -10
- data/package.json +1 -1
- data/spec/controllers/application_controller_spec.rb +23 -0
- data/spec/lib/blacklight/runtime_registry_spec.rb +46 -0
- data/spec/models/blacklight/document/dublin_core_spec.rb +2 -2
- data/spec/models/blacklight/solr/repository_spec.rb +69 -0
- metadata +24 -6
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blacklight
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.
|
|
4
|
+
version: 7.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Rochkind
|
|
@@ -14,10 +14,9 @@ authors:
|
|
|
14
14
|
- Dan Funk
|
|
15
15
|
- Naomi Dushay
|
|
16
16
|
- Justin Coyne
|
|
17
|
-
autorequire:
|
|
18
17
|
bindir: exe
|
|
19
18
|
cert_chain: []
|
|
20
|
-
date:
|
|
19
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
21
20
|
dependencies:
|
|
22
21
|
- !ruby/object:Gem::Dependency
|
|
23
22
|
name: rails
|
|
@@ -67,6 +66,20 @@ dependencies:
|
|
|
67
66
|
- - "~>"
|
|
68
67
|
- !ruby/object:Gem::Version
|
|
69
68
|
version: '2.7'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: json
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "<"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '3.0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "<"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '3.0'
|
|
70
83
|
- !ruby/object:Gem::Dependency
|
|
71
84
|
name: kaminari
|
|
72
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -440,7 +453,10 @@ files:
|
|
|
440
453
|
- app/assets/images/blacklight/logo.png
|
|
441
454
|
- app/assets/images/blacklight/search.svg
|
|
442
455
|
- app/assets/images/favicon.ico
|
|
456
|
+
- app/assets/javascripts/blacklight/blacklight.esm.js
|
|
457
|
+
- app/assets/javascripts/blacklight/blacklight.esm.js.map
|
|
443
458
|
- app/assets/javascripts/blacklight/blacklight.js
|
|
459
|
+
- app/assets/javascripts/blacklight/blacklight.js.map
|
|
444
460
|
- app/assets/stylesheets/blacklight/_balanced_list.scss
|
|
445
461
|
- app/assets/stylesheets/blacklight/_blacklight_base.scss
|
|
446
462
|
- app/assets/stylesheets/blacklight/_bookmark.scss
|
|
@@ -763,10 +779,12 @@ files:
|
|
|
763
779
|
- lib/blacklight/configuration/sort_field.rb
|
|
764
780
|
- lib/blacklight/configuration/tool_config.rb
|
|
765
781
|
- lib/blacklight/configuration/view_config.rb
|
|
782
|
+
- lib/blacklight/controller_runtime.rb
|
|
766
783
|
- lib/blacklight/deprecations/engine_configuration.rb
|
|
767
784
|
- lib/blacklight/deprecations/search_state_normalization.rb
|
|
768
785
|
- lib/blacklight/engine.rb
|
|
769
786
|
- lib/blacklight/exceptions.rb
|
|
787
|
+
- lib/blacklight/log_subscriber.rb
|
|
770
788
|
- lib/blacklight/nested_open_struct_with_hash_access.rb
|
|
771
789
|
- lib/blacklight/open_struct_with_hash_access.rb
|
|
772
790
|
- lib/blacklight/parameters.rb
|
|
@@ -908,6 +926,7 @@ files:
|
|
|
908
926
|
- spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb
|
|
909
927
|
- spec/lib/blacklight/open_struct_with_hash_access_spec.rb
|
|
910
928
|
- spec/lib/blacklight/parameters_spec.rb
|
|
929
|
+
- spec/lib/blacklight/runtime_registry_spec.rb
|
|
911
930
|
- spec/lib/blacklight/search_state/filter_field_spec.rb
|
|
912
931
|
- spec/lib/blacklight/search_state_spec.rb
|
|
913
932
|
- spec/lib/blacklight_spec.rb
|
|
@@ -1001,7 +1020,6 @@ homepage: http://projectblacklight.org/
|
|
|
1001
1020
|
licenses:
|
|
1002
1021
|
- Apache 2.0
|
|
1003
1022
|
metadata: {}
|
|
1004
|
-
post_install_message:
|
|
1005
1023
|
rdoc_options: []
|
|
1006
1024
|
require_paths:
|
|
1007
1025
|
- lib
|
|
@@ -1016,8 +1034,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1016
1034
|
- !ruby/object:Gem::Version
|
|
1017
1035
|
version: '0'
|
|
1018
1036
|
requirements: []
|
|
1019
|
-
rubygems_version:
|
|
1020
|
-
signing_key:
|
|
1037
|
+
rubygems_version: 4.0.18
|
|
1021
1038
|
specification_version: 4
|
|
1022
1039
|
summary: Blacklight provides a discovery interface for any Solr (http://lucene.apache.org/solr)
|
|
1023
1040
|
index.
|
|
@@ -1098,6 +1115,7 @@ test_files:
|
|
|
1098
1115
|
- spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb
|
|
1099
1116
|
- spec/lib/blacklight/open_struct_with_hash_access_spec.rb
|
|
1100
1117
|
- spec/lib/blacklight/parameters_spec.rb
|
|
1118
|
+
- spec/lib/blacklight/runtime_registry_spec.rb
|
|
1101
1119
|
- spec/lib/blacklight/search_state/filter_field_spec.rb
|
|
1102
1120
|
- spec/lib/blacklight/search_state_spec.rb
|
|
1103
1121
|
- spec/lib/blacklight_spec.rb
|