t2-web 0.1.0 → 0.1.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/CHANGES +4 -0
- data/README +3 -3
- data/Rakefile +2 -2
- data/doc/rdoc/CHANGES.html +7 -0
- data/doc/rdoc/README.html +4 -3
- data/doc/rdoc/created.rid +3 -3
- data/doc/rdoc/index.html +4 -3
- metadata +5 -5
data/CHANGES
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
= Changes log for the Taverna via the Web Gem
|
|
2
2
|
|
|
3
|
+
== Version 0.1.1
|
|
4
|
+
* Added config.ru to gem
|
|
5
|
+
* Removed t2_webap from executables
|
|
6
|
+
|
|
3
7
|
== Version 0.1.0
|
|
4
8
|
* Results are downloaded directly and stored in tmp files - progress cycle works once
|
|
5
9
|
* Added rackup configuration file: config.ru
|
data/README
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
Authors:: Konstantinos Karasavvas
|
|
5
|
-
Gem Version:: 0.1.
|
|
5
|
+
Gem Version:: 0.1.1
|
|
6
6
|
Contact:: mailto:kostas.karasavvas@nbic.nl
|
|
7
7
|
Licence:: MIT (See LICENCE or http://www.opensource.org/licenses/mit-license)
|
|
8
8
|
Copyright:: (c) 2012 Netherlands Bioinformatics Centre, The Netherlands
|
|
@@ -23,9 +23,9 @@ description provided in the workflow itself in myExperiment.
|
|
|
23
23
|
|
|
24
24
|
== Usage
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
rackup -p 9494
|
|
27
27
|
|
|
28
|
-
Runs the web application at port 9494 and waits for incoming requests.
|
|
28
|
+
Runs the web application at port 9494 and waits for incoming requests. Uses rack's config.ru file.
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
data/Rakefile
CHANGED
|
@@ -12,13 +12,13 @@ require 'rdoc/task'
|
|
|
12
12
|
|
|
13
13
|
spec = Gem::Specification.new do |s|
|
|
14
14
|
s.name = 't2-web'
|
|
15
|
-
s.version = '0.1.
|
|
15
|
+
s.version = '0.1.1'
|
|
16
16
|
s.extra_rdoc_files = ['README', 'LICENSE', 'CHANGES']
|
|
17
17
|
s.summary = 'Web application that generates a Web UI form for a Taverna2 workflow, given its myExperiment id, for ease of execution. The only requirement for the user is a web browser.'
|
|
18
18
|
s.description = s.summary
|
|
19
19
|
s.author = 'Kostas Karasavvas'
|
|
20
20
|
s.email = 'kostas.karasavvas@nbic.nl'
|
|
21
|
-
s.executables = ['t2_webapp.rb']
|
|
21
|
+
#s.executables = ['t2_webapp.rb']
|
|
22
22
|
s.files = %w(LICENSE README CHANGES Rakefile) + Dir.glob("{bin,lib,doc,spec,public,views}/**/*")
|
|
23
23
|
s.require_path = "lib"
|
|
24
24
|
s.bindir = "bin"
|
data/doc/rdoc/CHANGES.html
CHANGED
|
@@ -76,6 +76,13 @@
|
|
|
76
76
|
|
|
77
77
|
<h1>Changes log for the Taverna via the Web Gem</h1>
|
|
78
78
|
|
|
79
|
+
<h2>Version 0.1.1</h2>
|
|
80
|
+
<ul><li>
|
|
81
|
+
<p>Added config.ru to gem</p>
|
|
82
|
+
</li><li>
|
|
83
|
+
<p>Removed t2_webap from executables</p>
|
|
84
|
+
</li></ul>
|
|
85
|
+
|
|
79
86
|
<h2>Version 0.1.0</h2>
|
|
80
87
|
<ul><li>
|
|
81
88
|
<p>Results are downloaded directly and stored in tmp files - progress cycle
|
data/doc/rdoc/README.html
CHANGED
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
<p>Konstantinos Karasavvas</p>
|
|
81
81
|
</td></tr><tr><td class="rdoc-term"><p>Gem Version</p></td>
|
|
82
82
|
<td>
|
|
83
|
-
<p>0.1.
|
|
83
|
+
<p>0.1.1</p>
|
|
84
84
|
</td></tr><tr><td class="rdoc-term"><p>Contact</p></td>
|
|
85
85
|
<td>
|
|
86
86
|
<p><a href="mailto:kostas.karasavvas@nbic.nl">kostas.karasavvas@nbic.nl</a></p>
|
|
@@ -107,9 +107,10 @@ myExperiment.</p>
|
|
|
107
107
|
|
|
108
108
|
<h2>Usage</h2>
|
|
109
109
|
|
|
110
|
-
<p>
|
|
110
|
+
<p>rackup -p 9494</p>
|
|
111
111
|
|
|
112
|
-
<p>Runs the web application at port 9494 and waits for incoming requests
|
|
112
|
+
<p>Runs the web application at port 9494 and waits for incoming requests. Uses
|
|
113
|
+
rack’s config.ru file.</p>
|
|
113
114
|
|
|
114
115
|
<h2>References</h2>
|
|
115
116
|
<table class="rdoc-list"><tr><td class="rdoc-term"><p>Taverna to Web Form Generator</p></td>
|
data/doc/rdoc/created.rid
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Wed, 04 Apr 2012 14:
|
|
1
|
+
Wed, 04 Apr 2012 14:40:14 +0200
|
|
2
2
|
LICENSE Fri, 22 Jul 2011 16:33:48 +0200
|
|
3
|
-
README
|
|
4
|
-
CHANGES
|
|
3
|
+
README Wed, 04 Apr 2012 14:38:09 +0200
|
|
4
|
+
CHANGES Wed, 04 Apr 2012 14:35:37 +0200
|
data/doc/rdoc/index.html
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<p>Konstantinos Karasavvas</p>
|
|
30
30
|
</td></tr><tr><td class="rdoc-term"><p>Gem Version</p></td>
|
|
31
31
|
<td>
|
|
32
|
-
<p>0.1.
|
|
32
|
+
<p>0.1.1</p>
|
|
33
33
|
</td></tr><tr><td class="rdoc-term"><p>Contact</p></td>
|
|
34
34
|
<td>
|
|
35
35
|
<p><a href="mailto:kostas.karasavvas@nbic.nl">kostas.karasavvas@nbic.nl</a></p>
|
|
@@ -56,9 +56,10 @@ myExperiment.</p>
|
|
|
56
56
|
|
|
57
57
|
<h2>Usage</h2>
|
|
58
58
|
|
|
59
|
-
<p>
|
|
59
|
+
<p>rackup -p 9494</p>
|
|
60
60
|
|
|
61
|
-
<p>Runs the web application at port 9494 and waits for incoming requests
|
|
61
|
+
<p>Runs the web application at port 9494 and waits for incoming requests. Uses
|
|
62
|
+
rack’s config.ru file.</p>
|
|
62
63
|
|
|
63
64
|
<h2>References</h2>
|
|
64
65
|
<table class="rdoc-list"><tr><td class="rdoc-term"><p>Taverna to Web Form Generator</p></td>
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: t2-web
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Kostas Karasavvas
|
|
@@ -99,8 +99,8 @@ dependencies:
|
|
|
99
99
|
version_requirements: *id005
|
|
100
100
|
description: Web application that generates a Web UI form for a Taverna2 workflow, given its myExperiment id, for ease of execution. The only requirement for the user is a web browser.
|
|
101
101
|
email: kostas.karasavvas@nbic.nl
|
|
102
|
-
executables:
|
|
103
|
-
|
|
102
|
+
executables: []
|
|
103
|
+
|
|
104
104
|
extensions: []
|
|
105
105
|
|
|
106
106
|
extra_rdoc_files:
|