t2-web 0.1.8 → 0.1.9

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.
Files changed (5) hide show
  1. data/CHANGES +3 -0
  2. data/README +1 -1
  3. data/Rakefile +2 -1
  4. data/lib/t2-web.rb +1 -1
  5. metadata +17 -1
data/CHANGES CHANGED
@@ -1,5 +1,8 @@
1
1
  = Changes log for the Taverna via the Web App
2
2
 
3
+ == Version 0.1.9
4
+ * Included thin in dependencies
5
+
3
6
  == Version 0.1.8
4
7
  * Created executable to start the webapp
5
8
 
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  Authors:: Konstantinos Karasavvas
5
- Gem Version:: 0.1.8
5
+ Gem Version:: 0.1.9
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
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ require 'rdoc/task'
12
12
 
13
13
  spec = Gem::Specification.new do |s|
14
14
  s.name = 't2-web'
15
- s.version = '0.1.8'
15
+ s.version = '0.1.9'
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
@@ -23,6 +23,7 @@ spec = Gem::Specification.new do |s|
23
23
  s.require_path = "lib"
24
24
  s.bindir = "bin"
25
25
  s.add_dependency 'sinatra', '~> 1.3.0'
26
+ s.add_dependency 'thin', '~> 1.2.11'
26
27
  s.add_dependency 'haml', '~> 3.1.2'
27
28
  s.add_dependency 'rest-client', '~> 1.6.3'
28
29
  s.add_dependency 't2-server', '~> 0.6.1'
@@ -1,3 +1,3 @@
1
1
  module T2Web
2
- VERSION = "0.1.8"
2
+ VERSION = "0.1.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: t2-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -27,6 +27,22 @@ dependencies:
27
27
  - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  version: 1.3.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: thin
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.2.11
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.2.11
30
46
  - !ruby/object:Gem::Dependency
31
47
  name: haml
32
48
  requirement: !ruby/object:Gem::Requirement