openbel-api 1.2.6-java → 1.2.7-java
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/README.md +2 -0
- data/VERSION +1 -1
- data/app/openbel/api/helpers/nanopub.rb +159 -0
- data/app/openbel/api/resources/completion.rb +3 -2
- data/app/openbel/api/routes/base.rb +1 -1
- data/app/openbel/api/routes/datasets.rb +33 -22
- data/app/openbel/api/routes/nanopubs.rb +2 -158
- data/bin/bel2.0-example-statements.bel +344 -0
- data/bin/bel2_document_examples.bel +250 -0
- data/bin/test_bel2_validation.py +68 -0
- data/bin/test_results.json +2208 -0
- data/config/config.yml +1 -1
- metadata +10 -2
data/config/config.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openbel-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.7
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Anthony Bargnesi
|
@@ -365,9 +365,13 @@ dependencies:
|
|
365
365
|
description: The OpenBEL API provides a RESTful API over HTTP to manage BEL knowledge.
|
366
366
|
email: abargnesi@selventa.com
|
367
367
|
executables:
|
368
|
+
- bel2.0-example-statements.bel
|
369
|
+
- bel2_document_examples.bel
|
368
370
|
- openbel-api
|
369
371
|
- openbel-config
|
370
372
|
- setup-docker.sh
|
373
|
+
- test_bel2_validation.py
|
374
|
+
- test_results.json
|
371
375
|
extensions: []
|
372
376
|
extra_rdoc_files: []
|
373
377
|
files:
|
@@ -421,9 +425,13 @@ files:
|
|
421
425
|
- app/openbel/api/schemas/nanopub_resource.schema.json
|
422
426
|
- app/openbel/api/util.rb
|
423
427
|
- app/openbel/api/version.rb
|
428
|
+
- bin/bel2.0-example-statements.bel
|
429
|
+
- bin/bel2_document_examples.bel
|
424
430
|
- bin/openbel-api
|
425
431
|
- bin/openbel-config
|
426
432
|
- bin/setup-docker.sh
|
433
|
+
- bin/test_bel2_validation.py
|
434
|
+
- bin/test_results.json
|
427
435
|
- config/config.yml
|
428
436
|
- config/server_config.rb
|
429
437
|
- lib/openbel/api/cache/cache.rb
|
@@ -465,7 +473,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
465
473
|
version: '0'
|
466
474
|
requirements: []
|
467
475
|
rubyforge_project:
|
468
|
-
rubygems_version: 2.4.
|
476
|
+
rubygems_version: 2.4.5.1
|
469
477
|
signing_key:
|
470
478
|
specification_version: 4
|
471
479
|
summary: The OpenBEL API provided over RESTful HTTP endpoints.
|