blacklight 5.19.0 → 5.19.1
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 +0 -2
- data/Gemfile +18 -10
- data/VERSION +1 -1
- data/app/assets/javascripts/blacklight/core.js +1 -1
- data/blacklight.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 195c6e9deec84caeaf43ef573441ba6d3fe7ce52
|
|
4
|
+
data.tar.gz: 3be7035ee0b3d982e5ecf50d5279acd946b99037
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1d672d2675415d25115ab32d6b006eef8baa8abfa9b75a9669738826de016f23cf45cda488b6126213c736d0c8fd38b1c1f7610be53852825e9e7c0a18571996
|
|
7
|
+
data.tar.gz: 52886ee7c067416f2298101bfd04b5a6a4251a0b5d0e93af3cbd7b548847c003ebdf13d0d4fd29b49a6b93627e714605f5853f2cfcc7fe147fc5525aa71dd974
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -13,10 +13,10 @@ group :test do
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
# BEGIN ENGINE_CART BLOCK
|
|
16
|
-
# engine_cart: 0.
|
|
17
|
-
# engine_cart stanza: 0.
|
|
16
|
+
# engine_cart: 0.10.0
|
|
17
|
+
# engine_cart stanza: 0.10.0
|
|
18
18
|
# the below comes from engine_cart, a gem used to test this Rails engine gem in the context of a Rails app.
|
|
19
|
-
file = File.expand_path(
|
|
19
|
+
file = File.expand_path('Gemfile', ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path('.internal_test_app', File.dirname(__FILE__)))
|
|
20
20
|
if File.exist?(file)
|
|
21
21
|
begin
|
|
22
22
|
eval_gemfile file
|
|
@@ -27,14 +27,22 @@ if File.exist?(file)
|
|
|
27
27
|
else
|
|
28
28
|
Bundler.ui.warn "[EngineCart] Unable to find test application dependencies in #{file}, using placeholder dependencies"
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
if ENV['RAILS_VERSION']
|
|
31
|
+
if ENV['RAILS_VERSION'] == 'edge'
|
|
32
|
+
gem 'rails', github: 'rails/rails'
|
|
33
|
+
ENV['ENGINE_CART_RAILS_OPTIONS'] = '--edge --skip-turbolinks'
|
|
34
|
+
else
|
|
35
|
+
gem 'rails', ENV['RAILS_VERSION']
|
|
36
|
+
end
|
|
37
|
+
end
|
|
31
38
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
gem '
|
|
35
|
-
|
|
36
|
-
gem '
|
|
37
|
-
|
|
39
|
+
case ENV['RAILS_VERSION']
|
|
40
|
+
when /^4.2/
|
|
41
|
+
gem 'responders', '~> 2.0'
|
|
42
|
+
gem 'sass-rails', '>= 5.0'
|
|
43
|
+
gem 'coffee-rails', '~> 4.1.0'
|
|
44
|
+
when /^4.[01]/
|
|
45
|
+
gem 'sass-rails', '< 5.0'
|
|
38
46
|
end
|
|
39
47
|
end
|
|
40
48
|
# END ENGINE_CART BLOCK
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.19.
|
|
1
|
+
5.19.1
|
|
@@ -13,7 +13,7 @@ Blacklight = function() {
|
|
|
13
13
|
|
|
14
14
|
listeners: function () {
|
|
15
15
|
var listeners = [];
|
|
16
|
-
if (Turbolinks && Turbolinks.supported) {
|
|
16
|
+
if (typeof Turbolinks !== 'undefined' && Turbolinks.supported) {
|
|
17
17
|
// Turbolinks 5
|
|
18
18
|
if (Turbolinks.BrowserAdapter) {
|
|
19
19
|
listeners.push('turbolinks:load');
|
data/blacklight.gemspec
CHANGED
|
@@ -31,6 +31,6 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.add_development_dependency "rspec-collection_matchers", ">= 1.0"
|
|
32
32
|
s.add_development_dependency "capybara"
|
|
33
33
|
s.add_development_dependency "poltergeist"
|
|
34
|
-
s.add_development_dependency 'engine_cart', '~>
|
|
34
|
+
s.add_development_dependency 'engine_cart', '~> 1.0'
|
|
35
35
|
s.add_development_dependency "equivalent-xml"
|
|
36
36
|
end
|
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: 5.19.
|
|
4
|
+
version: 5.19.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Rochkind
|
|
@@ -17,7 +17,7 @@ authors:
|
|
|
17
17
|
autorequire:
|
|
18
18
|
bindir: bin
|
|
19
19
|
cert_chain: []
|
|
20
|
-
date: 2016-
|
|
20
|
+
date: 2016-10-07 00:00:00.000000000 Z
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
23
23
|
name: rails
|
|
@@ -213,14 +213,14 @@ dependencies:
|
|
|
213
213
|
requirements:
|
|
214
214
|
- - "~>"
|
|
215
215
|
- !ruby/object:Gem::Version
|
|
216
|
-
version:
|
|
216
|
+
version: '1.0'
|
|
217
217
|
type: :development
|
|
218
218
|
prerelease: false
|
|
219
219
|
version_requirements: !ruby/object:Gem::Requirement
|
|
220
220
|
requirements:
|
|
221
221
|
- - "~>"
|
|
222
222
|
- !ruby/object:Gem::Version
|
|
223
|
-
version:
|
|
223
|
+
version: '1.0'
|
|
224
224
|
- !ruby/object:Gem::Dependency
|
|
225
225
|
name: equivalent-xml
|
|
226
226
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -609,7 +609,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
609
609
|
version: '0'
|
|
610
610
|
requirements: []
|
|
611
611
|
rubyforge_project:
|
|
612
|
-
rubygems_version: 2.
|
|
612
|
+
rubygems_version: 2.6.7
|
|
613
613
|
signing_key:
|
|
614
614
|
specification_version: 4
|
|
615
615
|
summary: Blacklight provides a discovery interface for any Solr (http://lucene.apache.org/solr)
|