cdmbl 0.1.1 → 0.1.2
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/README.md +11 -2
- data/lib/cdmbl/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7e429cb47c7da0c901fa8a8ce4442dabb7026b2
|
|
4
|
+
data.tar.gz: f74c3d1a4fc3c3ddef1a24b1e9970732adbd128d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15106e790243ea1fef442e615753c2066cbacafc872599acfa15e00ad94ec08a52123d156a3c2aa0d7b2227850aa38829c298ad42b58963ec88eb0cddda67a13
|
|
7
|
+
data.tar.gz: 53b1164b69cb53d145c6f4945db87b30ecd0c2123ee4f77ecf1d7185400cb5ee5bc2532e5343e81374544f27dd1698ee0e088a9e57c86bbc72e0af2dee4833cf
|
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://travis-ci.org/UMNLibraries/cdmbl)
|
|
2
|
+
|
|
1
3
|
# CDMBL: CONTENTdm on Blacklight
|
|
2
4
|
|
|
3
5
|
Use [Blacklight](https://github.com/projectblacklight/blacklight) as a front end for your CONTENTdm instance.
|
|
@@ -63,7 +65,6 @@ namespace :cdmbl do
|
|
|
63
65
|
CDMBL::ETLWorker.perform_async(solr_config, etl_config)
|
|
64
66
|
end
|
|
65
67
|
```
|
|
66
|
-
|
|
67
68
|
### Your Own Custom Solr Field Mappings (see above code snippet)
|
|
68
69
|
|
|
69
70
|
The default CONTENTdm to Solr field transformation rules may be overriden by calling the CDMBL::ETLWorker (a [Sidekiq worker](https://github.com/mperham/sidekiq)) directly. These rules may be found in the default_mappings method of the [CDMBL::Transformer Class](https://github.com/UMNLibraries/cdmbl/blob/master/lib/cdmbl/transformer.rb).
|
|
@@ -125,4 +126,12 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/UMNLib
|
|
|
125
126
|
|
|
126
127
|
## License
|
|
127
128
|
|
|
128
|
-
[MIT](/LICENSE.txt)
|
|
129
|
+
[MIT](/LICENSE.txt)
|
|
130
|
+
|
|
131
|
+
## Roadmap
|
|
132
|
+
|
|
133
|
+
CDMBL could be expanded to include some features from the [MDL](https://github.com/UMNLibraries/mdl_search) project (and be converted intoto a Rails Engine):
|
|
134
|
+
|
|
135
|
+
* Asyncronous thumbnail caching (e.g. https://github.com/UMNLibraries/mdl_search/blob/master/app/controllers/catalog_controller.rb#L34)
|
|
136
|
+
* A (very simple) model to keep track of indexing runs (used like this: https://github.com/UMNLibraries/mdl_search/blob/master/lib/tasks/ingester.rake#L6)
|
|
137
|
+
* A template to over-write the standard BL catalog controller to make use of the CDM solr fields?
|
data/lib/cdmbl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cdmbl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- chadfennell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: hash_at_path
|