opentox-ruby-api-wrapper 1.5.0 → 1.5.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.
- data/VERSION +1 -1
- data/bin/opentox-install-ubuntu.sh +1 -1
- data/lib/templates/config.yaml +44 -44
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.5.
|
|
1
|
+
1.5.1
|
|
@@ -90,7 +90,7 @@ sudo apt-get install postgresql-server-dev-8.4 | tee -a $INSTALLLOG
|
|
|
90
90
|
#echo "Installing gems jeweler sinatra emk-sinatra-url-for dm-core cehoffman-sinatra-respond_to rest-client rack-contrib thin cucumber datamapper data_objects do_sqlite3 rinruby"
|
|
91
91
|
sudo gem install jeweler | tee -a $INSTALLLOG
|
|
92
92
|
sudo gem install sinatra | tee -a $INSTALLLOG
|
|
93
|
-
sudo gem install sinatra-url-for | tee -a $INSTALLLOG
|
|
93
|
+
sudo gem install emk-sinatra-url-for -s http://gems.github.com | tee -a $INSTALLLOG
|
|
94
94
|
sudo gem install dm-core | tee -a $INSTALLLOG
|
|
95
95
|
sudo gem install sinatra-respond_to | tee -a $INSTALLLOG
|
|
96
96
|
sudo gem install rest-client | tee -a $INSTALLLOG
|
data/lib/templates/config.yaml
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Example MySql:
|
|
6
6
|
#
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
:database:
|
|
8
|
+
:adapter: mysql
|
|
9
|
+
:database: production
|
|
10
|
+
:username: root
|
|
11
|
+
:password: opentox
|
|
12
|
+
:host: localhost
|
|
13
13
|
#
|
|
14
14
|
# Example 1: Using external test services
|
|
15
15
|
#
|
|
@@ -22,47 +22,47 @@
|
|
|
22
22
|
# opentox-validation: "http://opentox.informatik.uni-freiburg.de/validation/"
|
|
23
23
|
#
|
|
24
24
|
# Example 2: Using local services
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
25
|
+
:base_dir: /home/ist/webservices
|
|
26
|
+
:webserver: passenger
|
|
27
|
+
:services:
|
|
28
|
+
opentox-compound: "http://localhost/compound/"
|
|
29
|
+
opentox-dataset: "http://localhost/dataset/"
|
|
30
|
+
opentox-algorithm: "http://localhost/algorithm/"
|
|
31
|
+
opentox-model: "http://localhost/model/"
|
|
32
|
+
opentox-task: "http://localhost/task/"
|
|
33
|
+
opentox-validation: "http://opentox.informatik.uni-freiburg.de/validation/"
|
|
34
34
|
#
|
|
35
35
|
# Accept headers:
|
|
36
36
|
#
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
37
|
+
:accept_headers:
|
|
38
|
+
opentox-compound:
|
|
39
|
+
- "chemical/x-daylight-smiles"
|
|
40
|
+
- "chemical/x-inchi"
|
|
41
|
+
- "chemical/x-mdl-sdfile"
|
|
42
|
+
- "image/gif"
|
|
43
|
+
- "text/plain"
|
|
44
|
+
opentox-dataset:
|
|
45
|
+
- "application/x-yaml"
|
|
46
|
+
- "text/x-yaml"
|
|
47
|
+
- "application/rdf+xml"
|
|
48
|
+
opentox-algorithm:
|
|
49
|
+
- "application/x-yaml"
|
|
50
|
+
- "text/x-yaml"
|
|
51
|
+
- "application/rdf+xml"
|
|
52
|
+
opentox-model:
|
|
53
|
+
- "application/x-yaml"
|
|
54
|
+
- "text/x-yaml"
|
|
55
|
+
- "application/rdf+xml"
|
|
56
|
+
opentox-task:
|
|
57
|
+
- "application/x-yaml"
|
|
58
|
+
- "text/x-yaml"
|
|
59
|
+
- "application/rdf+xml"
|
|
60
|
+
opentox-validation:
|
|
61
|
+
- "application/x-yaml"
|
|
62
|
+
- "text/x-yaml"
|
|
63
|
+
- "application/rdf+xml"
|
|
64
64
|
|
|
65
65
|
# Timeouts:
|
|
66
66
|
#
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
:default_task_max_duration: 3600
|
|
68
|
+
:external_task_max_duration: 3600
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 5
|
|
8
|
-
-
|
|
9
|
-
version: 1.5.
|
|
8
|
+
- 1
|
|
9
|
+
version: 1.5.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Christoph Helma
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-05-
|
|
17
|
+
date: 2010-05-18 00:00:00 +02:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|