blacklight-gallery 0.5.0 → 0.6.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/.travis.yml +4 -5
- data/Gemfile +18 -11
- data/Rakefile +15 -29
- data/app/assets/stylesheets/blacklight_gallery/_gallery.scss +2 -1
- data/app/views/catalog/_grid_slideshow.html.erb +5 -1
- data/app/views/catalog/_index_masonry_default.html.erb +1 -1
- data/app/views/catalog/_index_slideshow.html.erb +2 -2
- data/blacklight-gallery.gemspec +2 -2
- data/config/locales/blacklight-gallery.en.yml +2 -0
- data/lib/blacklight/gallery/version.rb +1 -1
- data/solr/conf/_rest_managed.json +3 -0
- data/solr/conf/admin-extra.html +31 -0
- data/solr/conf/elevate.xml +36 -0
- data/solr/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/solr/conf/protwords.txt +21 -0
- data/solr/conf/schema.xml +635 -0
- data/solr/conf/scripts.conf +24 -0
- data/solr/conf/solrconfig.xml +411 -0
- data/solr/conf/spellings.txt +2 -0
- data/solr/conf/stopwords.txt +58 -0
- data/solr/conf/stopwords_en.txt +58 -0
- data/solr/conf/synonyms.txt +31 -0
- data/solr/conf/xslt/example.xsl +132 -0
- data/solr/conf/xslt/example_atom.xsl +67 -0
- data/solr/conf/xslt/example_rss.xsl +66 -0
- data/solr/conf/xslt/luke.xsl +337 -0
- metadata +24 -16
- data/config/jetty.yml +0 -7
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blacklight-gallery
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Beer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -28,22 +28,16 @@ dependencies:
|
|
28
28
|
name: blacklight
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 6.0.0.pre
|
34
|
-
- - "<"
|
31
|
+
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
|
-
version: '
|
33
|
+
version: '6.3'
|
37
34
|
type: :runtime
|
38
35
|
prerelease: false
|
39
36
|
version_requirements: !ruby/object:Gem::Requirement
|
40
37
|
requirements:
|
41
|
-
- - "
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 6.0.0.pre
|
44
|
-
- - "<"
|
38
|
+
- - "~>"
|
45
39
|
- !ruby/object:Gem::Version
|
46
|
-
version: '
|
40
|
+
version: '6.3'
|
47
41
|
- !ruby/object:Gem::Dependency
|
48
42
|
name: bootstrap-sass
|
49
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -171,7 +165,7 @@ dependencies:
|
|
171
165
|
- !ruby/object:Gem::Version
|
172
166
|
version: '0'
|
173
167
|
- !ruby/object:Gem::Dependency
|
174
|
-
name:
|
168
|
+
name: solr_wrapper
|
175
169
|
requirement: !ruby/object:Gem::Requirement
|
176
170
|
requirements:
|
177
171
|
- - ">="
|
@@ -265,7 +259,6 @@ files:
|
|
265
259
|
- app/views/catalog/_slideshow.html.erb
|
266
260
|
- app/views/catalog/_slideshow_modal.html.erb
|
267
261
|
- blacklight-gallery.gemspec
|
268
|
-
- config/jetty.yml
|
269
262
|
- config/locales/blacklight-gallery.en.yml
|
270
263
|
- docs/screen_shot.png
|
271
264
|
- lib/blacklight/gallery.rb
|
@@ -274,6 +267,22 @@ files:
|
|
274
267
|
- lib/generators/blacklight_gallery/install_generator.rb
|
275
268
|
- lib/generators/blacklight_gallery/templates/blacklight_gallery.css.scss
|
276
269
|
- lib/generators/blacklight_gallery/templates/blacklight_gallery.js
|
270
|
+
- solr/conf/_rest_managed.json
|
271
|
+
- solr/conf/admin-extra.html
|
272
|
+
- solr/conf/elevate.xml
|
273
|
+
- solr/conf/mapping-ISOLatin1Accent.txt
|
274
|
+
- solr/conf/protwords.txt
|
275
|
+
- solr/conf/schema.xml
|
276
|
+
- solr/conf/scripts.conf
|
277
|
+
- solr/conf/solrconfig.xml
|
278
|
+
- solr/conf/spellings.txt
|
279
|
+
- solr/conf/stopwords.txt
|
280
|
+
- solr/conf/stopwords_en.txt
|
281
|
+
- solr/conf/synonyms.txt
|
282
|
+
- solr/conf/xslt/example.xsl
|
283
|
+
- solr/conf/xslt/example_atom.xsl
|
284
|
+
- solr/conf/xslt/example_rss.xsl
|
285
|
+
- solr/conf/xslt/luke.xsl
|
277
286
|
- spec/features/gallery_spec.rb
|
278
287
|
- spec/features/masonry_spec.rb
|
279
288
|
- spec/features/slideshow_spec.rb
|
@@ -307,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
307
316
|
version: '0'
|
308
317
|
requirements: []
|
309
318
|
rubyforge_project:
|
310
|
-
rubygems_version: 2.4
|
319
|
+
rubygems_version: 2.6.4
|
311
320
|
signing_key:
|
312
321
|
specification_version: 4
|
313
322
|
summary: Gallery display for Blacklight
|
@@ -323,4 +332,3 @@ test_files:
|
|
323
332
|
- spec/views/catalog/_index_gallery.html.erb_spec.rb
|
324
333
|
- spec/views/catalog/_index_masonry.html.erb_spec.rb
|
325
334
|
- spec/views/catalog/_openseadragon_default.html.erb_spec.rb
|
326
|
-
has_rdoc:
|