Skip to content

Commit 8685ce5

Browse files
authored
Merge pull request #187 from ncbo/develop
Develop to Master merge, release v6.3.0
2 parents 5545195 + 062aa5f commit 8685ce5

6 files changed

Lines changed: 962 additions & 260 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ test/data/ontology_files/repo/**/*
4545
# Ignore jEnv
4646
.java-version
4747

48+
# Ignore Byebug
49+
.byebug_history
50+
4851
# Ignore RubyMine editor files
4952
.idea
5053

Gemfile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ gem 'haml', '~> 5.2.2' # pin see https://github.com/ncbo/ontologies_api/pull/107
4343
gem 'redcarpet'
4444

4545
# NCBO gems (can be from a local dev path or from rubygems/git)
46-
gem 'goo', github: 'ncbo/goo', branch: 'master'
47-
gem 'ncbo_annotator', github: 'ncbo/ncbo_annotator', branch: 'master'
48-
gem 'ncbo_cron', github: 'ncbo/ncbo_cron', branch: 'master'
49-
gem 'ncbo_ontology_recommender', github: 'ncbo/ncbo_ontology_recommender', branch: 'master'
50-
gem 'ontologies_linked_data', github: 'ncbo/ontologies_linked_data', branch: 'master'
51-
gem 'sparql-client', github: 'ncbo/sparql-client', branch: 'master'
46+
gem 'goo', github: 'ncbo/goo', branch: 'develop'
47+
gem 'ncbo_annotator', github: 'ncbo/ncbo_annotator', branch: 'develop'
48+
gem 'ncbo_cron', github: 'ncbo/ncbo_cron', branch: 'develop'
49+
gem 'ncbo_ontology_recommender', github: 'ncbo/ncbo_ontology_recommender', branch: 'develop'
50+
gem 'ontologies_linked_data', github: 'ncbo/ontologies_linked_data', branch: 'develop'
51+
gem 'sparql-client', github: 'ncbo/sparql-client', branch: 'develop'
5252

5353
group :development do
5454
# bcrypt_pbkdf and ed35519 is required for capistrano deployments when using ed25519 keys; see https://github.com/miloserdow/capistrano-deploy/issues/42
@@ -71,6 +71,7 @@ group :profiling do
7171
end
7272

7373
group :test do
74+
gem 'byebug', '~> 12.0'
7475
gem 'crack', '0.4.5'
7576
gem 'minitest', '~> 5.0'
7677
gem 'minitest-hooks', "~> 1.5"

Gemfile.lock

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GIT
22
remote: https://github.com/ncbo/goo.git
3-
revision: b9019ad9e1eb78c74105fc6c6a879085066da17d
4-
branch: master
3+
revision: c3f9a7f789bf2f52ed31f0272d2725117d3ac04e
4+
branch: develop
55
specs:
66
goo (0.0.2)
77
addressable (~> 2.8)
@@ -16,8 +16,8 @@ GIT
1616

1717
GIT
1818
remote: https://github.com/ncbo/ncbo_annotator.git
19-
revision: 4fb9114b80b99f0a654c7f70aaa96839c74fc615
20-
branch: master
19+
revision: 6671099a39fffa8b98f21db7593cef35dd296b65
20+
branch: develop
2121
specs:
2222
ncbo_annotator (0.0.1)
2323
goo
@@ -27,8 +27,8 @@ GIT
2727

2828
GIT
2929
remote: https://github.com/ncbo/ncbo_cron.git
30-
revision: 6118e8275ea771e9e4de4132eccca293e8c8b739
31-
branch: master
30+
revision: 4ecc9cfe998b1df5cf4367f58dd77bffe1f2ac1a
31+
branch: develop
3232
specs:
3333
ncbo_cron (0.0.1)
3434
dante
@@ -45,8 +45,8 @@ GIT
4545

4646
GIT
4747
remote: https://github.com/ncbo/ncbo_ontology_recommender.git
48-
revision: c6a18eb7700b23a1a4f1e32ebc94003bf75efe93
49-
branch: master
48+
revision: c508796d80764bf748b51e9f1c33e57ea9f14a1d
49+
branch: develop
5050
specs:
5151
ncbo_ontology_recommender (0.0.1)
5252
goo
@@ -56,8 +56,8 @@ GIT
5656

5757
GIT
5858
remote: https://github.com/ncbo/ontologies_linked_data.git
59-
revision: 93e0844e19c3632bbd613a3e33869e267a6f2e25
60-
branch: master
59+
revision: 76c1c82e09fab6acd33617cc0de3fd99a144835c
60+
branch: develop
6161
specs:
6262
ontologies_linked_data (0.0.1)
6363
activesupport
@@ -77,8 +77,8 @@ GIT
7777

7878
GIT
7979
remote: https://github.com/ncbo/sparql-client.git
80-
revision: e89c26aa96f184dbe9b52d51e04fb3d9ba998dbc
81-
branch: master
80+
revision: 86c873a0d2873794489126c3c85165234785a96b
81+
branch: develop
8282
specs:
8383
sparql-client (1.0.1)
8484
json_pure (>= 1.4)
@@ -121,6 +121,7 @@ GEM
121121
bcrypt_pbkdf (1.1.1-arm64-darwin)
122122
bigdecimal (3.2.2)
123123
builder (3.3.0)
124+
byebug (12.0.0)
124125
capistrano (3.19.2)
125126
airbrussh (>= 1.0.0)
126127
i18n
@@ -240,7 +241,7 @@ GEM
240241
mime-types (3.7.0)
241242
logger
242243
mime-types-data (~> 3.2025, >= 3.2025.0507)
243-
mime-types-data (3.2025.0701)
244+
mime-types-data (3.2025.0708)
244245
mini_mime (1.1.5)
245246
minitest (5.25.5)
246247
minitest-hooks (1.5.2)
@@ -425,6 +426,7 @@ DEPENDENCIES
425426
activesupport (~> 5)
426427
bcrypt_pbkdf (>= 1.0, < 2.0)
427428
bigdecimal
429+
byebug (~> 12.0)
428430
capistrano (~> 3)
429431
capistrano-bundler
430432
capistrano-locally

config/environments/test.rb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,14 @@
4242
config.goo_redis_port = REDIS_PORT.to_i
4343
config.http_redis_host = REDIS_HTTP_CACHE_HOST.to_s
4444
config.http_redis_port = REDIS_PORT.to_i
45-
config.ontology_analytics_redis_host = REDIS_PERSISTENT_HOST.to_s
46-
config.ontology_analytics_redis_port = REDIS_PORT.to_i
4745
config.search_server_url = SOLR_TERM_SEARCH_URL.to_s
4846
config.property_search_server_url = SOLR_PROP_SEARCH_URL.to_s
4947
#config.enable_notifications = false
48+
49+
# Ontology analytics
50+
config.ontology_analytics_redis_host = REDIS_PERSISTENT_HOST.to_s
51+
config.ontology_analytics_redis_port = REDIS_PORT.to_i
52+
config.ontology_analytics_redis_field = 'test_analytics'
5053
end
5154

5255
Annotator.config do |config|

0 commit comments

Comments
 (0)