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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d95698b0c62bbcfda4b25ab964d44e561038f2a
4
- data.tar.gz: bf198778fca1e08d985d5f25bcdb81d618d265d4
3
+ metadata.gz: 195c6e9deec84caeaf43ef573441ba6d3fe7ce52
4
+ data.tar.gz: 3be7035ee0b3d982e5ecf50d5279acd946b99037
5
5
  SHA512:
6
- metadata.gz: 920425d9d9c2a45bde71b8fb12dc53071bfcca0e4e26579052ca8e8e7b40d9d9a0e01dae1c4a1665d7525a7302dca3cb612217fc23b6da272db702d6bff08a7b
7
- data.tar.gz: 646bb31cea472f1211ea0d3bca51e422eec059a473b4c56cc0a2b43489039071e4c212992d30b3daf93122ec784590931f08ba15c7f03823077b9d3372e1be73
6
+ metadata.gz: 1d672d2675415d25115ab32d6b006eef8baa8abfa9b75a9669738826de016f23cf45cda488b6126213c736d0c8fd38b1c1f7610be53852825e9e7c0a18571996
7
+ data.tar.gz: 52886ee7c067416f2298101bfd04b5a6a4251a0b5d0e93af3cbd7b548847c003ebdf13d0d4fd29b49a6b93627e714605f5853f2cfcc7fe147fc5525aa71dd974
@@ -9,8 +9,6 @@ rvm:
9
9
 
10
10
  matrix:
11
11
  include:
12
- - rvm: 2.2.5
13
- env: "RAILS_VERSION=4.0.13"
14
12
  - rvm: 2.2.5
15
13
  env: "RAILS_VERSION=4.1.13"
16
14
  - rvm: 2.1.5
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.8.0
17
- # engine_cart stanza: 0.8.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("Gemfile", ENV['ENGINE_CART_DESTINATION'] || ENV['RAILS_ROOT'] || File.expand_path(".internal_test_app", File.dirname(__FILE__)))
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
- gem 'rails', ENV['RAILS_VERSION'] if ENV['RAILS_VERSION']
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
- if ENV['RAILS_VERSION'].nil? || ENV['RAILS_VERSION'] =~ /^4.2/
33
- gem 'responders', "~> 2.0"
34
- gem 'sass-rails', ">= 5.0"
35
- else
36
- gem 'bootstrap-sass', '< 3.3.5' # 3.3.5 requires sass 3.3, incompatible with sass-rails 4.x
37
- gem 'sass-rails', "< 5.0"
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.0
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');
@@ -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', '~> 0.8.0'
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.0
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-08-30 00:00:00.000000000 Z
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: 0.8.0
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: 0.8.0
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.5.1
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)