Skip to content

Commit bc865fa

Browse files
committed
Merge pull request #1074 from projectblacklight/bump-dependencies
Bump dependencies
2 parents 517be4e + 96ab652 commit bc865fa

File tree

6 files changed

+8
-11
lines changed

6 files changed

+8
-11
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
language: ruby
2-
cache: bundler
32
sudo: false
43

54
notifications:

lib/generators/blacklight/install_generator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ class Install < Rails::Generators::Base
2222

2323
def install_jettywrapper
2424
return unless options[:jettywrapper]
25-
gem "jettywrapper", "~> 1.7"
25+
gem "jettywrapper", ">= 2.0"
2626

2727
copy_file "config/jetty.yml"
2828

2929
append_to_file "Rakefile",
30-
"\nZIP_URL = \"https://github.com/projectblacklight/blacklight-jetty/archive/v4.9.0.zip\"\n" +
30+
"\nZIP_URL = \"https://github.com/projectblacklight/blacklight-jetty/archive/v4.10.3.zip\"\n" +
3131
"require 'jettywrapper'\n"
3232
end
3333

lib/generators/blacklight/templates/config/solr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# how to start up solr, generally for automated testing.
1212

1313
development:
14-
url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr" %>
14+
url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %>
1515
test: &test
16-
url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8888}/solr" %>
16+
url: <%= "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8888}/solr/blacklight-core" %>
1717
production:
18-
url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr" %>
18+
url: <%= ENV['SOLR_URL'] || "http://127.0.0.1:8983/solr/blacklight-core" %>

lib/generators/blacklight/test_support_generator.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ class TestSupport < Rails::Generators::Base
1616
1717
Also adds jetty_path key to solr.yml for selected environment, to refer
1818
to this install.
19-
20-
Requires system('unzip... ') to work, probably won't work on Windows.
21-
2219
"""
2320
def alternate_controller
2421
copy_file "alternate_controller.rb", "app/controllers/alternate_controller.rb"

tasks/blacklight.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ZIP_URL = "https://github.com/projectblacklight/blacklight-jetty/archive/v4.10.2.zip"
1+
ZIP_URL = "https://github.com/projectblacklight/blacklight-jetty/archive/v4.10.3.zip"
22

33
require 'jettywrapper'
44
require 'engine_cart/rake_task'

template.demo.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
gem "blacklight", ">= 5.3.0"
2+
gem "jettywrapper", ">= 2.0"
23
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
34

45
run "bundle install"
@@ -17,4 +18,4 @@
1718
rake "jetty:start"
1819
rake "blacklight:solr:seed"
1920
rake "jetty:stop"
20-
end
21+
end

0 commit comments

Comments
 (0)