mannie-taverna-t2flow 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,7 +1,7 @@
1
1
  = Taverna[http://taverna.sourceforge.net] 2 Interaction Gem
2
2
 
3
3
  Authors:: Emmanuel Tagarira, David Withers
4
- Version:: 0.1.0
4
+ Version:: 0.1.1
5
5
  Contact:: mailto:emmanuel.tagarira@student.manchester.ac.uk
6
6
  URL:: http://taverna.sourceforge.net/
7
7
  Licence:: LGPL 3 (See LICENCE or http://www.gnu.org/licenses/lgpl.html)
data/Release_Notes.rdoc CHANGED
@@ -1,8 +1,8 @@
1
- = Version 0.1.0
2
- Released:: Monday, September 14, 2009
1
+ = Version 0.1.1
2
+ Released:: Wednesday, September 16, 2009
3
3
 
4
4
  == Added Functionality
5
- - Retrieval of processors directly connected/linked to the given processor.
5
+ - Retrieval of Taverna local workers.
6
+
6
7
  === New instance method in T2Flow::Model
7
- get_processor_links(processor)
8
- === New supporting object T2Flow::ProcessorLinks
8
+ local_workers
data/lib/t2flow/model.rb CHANGED
@@ -36,6 +36,11 @@ module T2Flow # :nodoc:
36
36
  self.all_processors.select { |x| x.type =~ /wsdl|soaplab|biomoby/i }
37
37
  end
38
38
 
39
+ # Retrieve ALL local workers WITHIN the workflow
40
+ def local_workers
41
+ self.all_processors.select { |x| x.type =~ /local/i }
42
+ end
43
+
39
44
  # Retrieve the datalinks from the top level of a nested workflow.
40
45
  # If the workflow is not nested, retrieve all datalinks.
41
46
  def datalinks
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mannie-taverna-t2flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emmanuel Tagarira
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire: t2flow
10
10
  bindir: bin
11
11
  cert_chain:
12
- date: 2009-09-14 00:00:00 -07:00
12
+ date: 2009-09-16 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -62,6 +62,7 @@ files:
62
62
  - Release_Notes.rdoc
63
63
  has_rdoc: true
64
64
  homepage: http://www.mygrid.org.uk/
65
+ licenses:
65
66
  post_install_message:
66
67
  rdoc_options:
67
68
  - -N
@@ -85,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
86
  requirements: []
86
87
 
87
88
  rubyforge_project:
88
- rubygems_version: 1.2.0
89
+ rubygems_version: 1.3.5
89
90
  signing_key:
90
91
  specification_version: 1
91
92
  summary: Support for interacting with the Taverna 2 workflow system (T2Flow).