mannie-taverna-scufl 0.7.0 → 0.7.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] 1 Interaction Gem
2
2
 
3
3
  Authors:: Stian Soiland, David Withers, Emmanuel Tagarira
4
- Version:: 0.7.0
4
+ Version:: 0.7.1
5
5
  Contact:: taverna-hackers@lists.sourceforge.net
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.7.0
2
- Released:: Monday, September 14, 2009
1
+ = Version 0.7.1
2
+ Released:: Wednesday, September 16, 2009
3
3
 
4
4
  == Added Functionality
5
- - Retrieval of processors directly connected/linked to the given processor.
6
- === New instance method in Scufl::Model
7
- get_processor_links(processor)
8
- === New supporting object Scufl::ProcessorLinks
5
+ - Retrieval of Taverna local workers.
6
+
7
+ === New instance method in T2Flow::Model
8
+ local_workers
data/lib/scufl/model.rb CHANGED
@@ -51,6 +51,11 @@ module Scufl # :nodoc:
51
51
  self.all_processors.select { |x| x.type =~ /wsdl|soaplab|biomoby/i }
52
52
  end
53
53
 
54
+ # Retrieve ALL local workers WITHIN the workflow
55
+ def local_workers
56
+ self.all_processors.select { |x| x.type =~ /local/i }
57
+ end
58
+
54
59
  # Retrieve ALL processor objects WITHIN the given workflow model.
55
60
  def all_processors
56
61
  return get_processors(self, [])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mannie-taverna-scufl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Withers
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire: baclava, client, document, scufl
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
@@ -65,6 +65,7 @@ files:
65
65
  - Release_Notes.rdoc
66
66
  has_rdoc: true
67
67
  homepage: http://www.mygrid.org.uk/
68
+ licenses:
68
69
  post_install_message:
69
70
  rdoc_options:
70
71
  - -N
@@ -88,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
89
  requirements: []
89
90
 
90
91
  rubyforge_project:
91
- rubygems_version: 1.2.0
92
+ rubygems_version: 1.3.5
92
93
  signing_key:
93
94
  specification_version: 1
94
95
  summary: Support for interacting with the Taverna workflow system (Scufl).