Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ gem 'rack-contrib'
gem 'pandoc-ruby'

# NCBO gems (can be from a local dev path or from rubygems/git)
gem 'goo', github: 'ncbo/goo', branch: 'development'
gem 'goo', github: 'ncbo/goo', branch: 'feature/solrcloud-alias-indexing-claude'
gem 'sparql-client', github: 'ncbo/sparql-client', branch: 'development'
gem 'ncbo_annotator', github: 'ncbo/ncbo_annotator', branch: 'develop'
gem 'ncbo_cron', github: 'ncbo/ncbo_cron', branch: 'develop'
gem 'ncbo_cron', github: 'ncbo/ncbo_cron', branch: 'feature/solrcloud-alias-indexing-claude'
gem 'ncbo_ontology_recommender', github: 'ncbo/ncbo_ontology_recommender', branch: 'develop'
gem 'ontologies_linked_data', github: 'ncbo/ontologies_linked_data', branch: 'develop'
gem 'ontologies_linked_data', github: 'ncbo/ontologies_linked_data', branch: 'feature/solrcloud-alias-indexing-claude'

group :development do
gem 'shotgun', github: 'syphax-bouazzouni/shotgun', branch: 'master'
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GIT
GIT
remote: https://github.com/ncbo/goo.git
revision: fa850f46c94e09b6368ed47728b9cce05b7e9d54
branch: development
branch: feature/solrcloud-alias-indexing-claude
specs:
goo (0.0.2)
addressable (~> 2.8)
Expand Down Expand Up @@ -37,8 +37,8 @@ GIT

GIT
remote: https://github.com/ncbo/ncbo_cron.git
revision: 102e0f8f10dcbfbc50301764d84259e5aca2c7b2
branch: develop
revision: 574d893a48ad2fa0f534ae6f0f79bd6c67a28146
branch: feature/solrcloud-alias-indexing-claude
specs:
ncbo_cron (0.0.1)
dante
Expand Down Expand Up @@ -66,8 +66,8 @@ GIT

GIT
remote: https://github.com/ncbo/ontologies_linked_data.git
revision: a4bbd57fcaa78fa66a11b494384b1791b6e9a6d8
branch: develop
revision: 974142153de9cd4b1cf66f76366c5f0de7c16980
branch: feature/solrcloud-alias-indexing-claude
specs:
ontologies_linked_data (0.0.1)
activesupport
Expand Down
2 changes: 1 addition & 1 deletion test/controllers/test_search_models_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_show_all_collection
get '/admin/search/collections'
assert last_response.ok?
res = MultiJson.load(last_response.body)
required = %w[ontology_data ontology_metadata prop_search_core1 term_search_core1]
required = %w[ontology_data ontology_metadata prop_search_bootstrap term_search_bootstrap]
allowed_extra = %w[term_search test_solr]
collections = res["collections"]
assert_empty required - collections
Expand Down
Loading