mannie-taverna-scufl 0.6.1 → 0.6.2

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.6.0
4
+ Version:: 0.6.2
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)
@@ -0,0 +1,8 @@
1
+ = Version 0.6.2
2
+ Released:: Friday, September 11, 2009
3
+
4
+ == Bug fixes
5
+ - none
6
+
7
+ == Added Functionality
8
+ - Extraction of more metadata for soaplab and biomoby services, and artitrary wsdls.
data/lib/scufl/model.rb CHANGED
@@ -87,6 +87,26 @@ module Scufl # :nodoc:
87
87
 
88
88
  # This is a list of outputs that the processor can produce.
89
89
  attr_accessor :outputs
90
+
91
+ # For processors of type "arbitrarywsdl", this is the URI to the location
92
+ # of the wsdl file.
93
+ attr_accessor :wsdl
94
+
95
+ # For processors of type "arbitrarywsdl", this is the operation invoked.
96
+ attr_accessor :wsdl_operation
97
+
98
+ # For soaplab and biomoby services, this is the endpoint URI.
99
+ attr_accessor :endpoint
100
+
101
+ # Authority name for the biomoby service.
102
+ attr_accessor :biomoby_authority_name
103
+
104
+ # Service name for the biomoby service. This is not necessarily the same
105
+ # as the processors name.
106
+ attr_accessor :biomoby_service_name
107
+
108
+ # Category for the biomoby service.
109
+ attr_accessor :biomoby_category
90
110
  end
91
111
 
92
112
 
data/lib/scufl/parser.rb CHANGED
@@ -105,6 +105,29 @@ module Scufl
105
105
  case e.name
106
106
  when 'description'
107
107
  processor.description = e.text
108
+ when 'arbitrarywsdl'
109
+ processor.type = e.name
110
+ e.each_element do |wsdl|
111
+ processor.wsdl = wsdl.text if wsdl.name == 'wsdl'
112
+ processor.wsdl_operation = wsdl.text if wsdl.name == 'operation'
113
+ end
114
+ when 'soaplabwsdl'
115
+ processor.type = e.name
116
+ processor.endpoint = e.text
117
+ when 'biomobywsdl'
118
+ processor.type = e.name
119
+ e.each_element do |wsdl|
120
+ case wsdl.name
121
+ when /endpoint/i
122
+ processor.endpoint = wsdl.text
123
+ when /servicename/i
124
+ processor.biomoby_service_name = wsdl.text
125
+ when /authorityname/i
126
+ processor.biomoby_authority_name = wsdl.text
127
+ when "category"
128
+ processor.biomoby_category = wsdl.text
129
+ end
130
+ end
108
131
  when'beanshell'
109
132
  processor.type = e.name
110
133
  e.each_element do |bean|
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.6.1
4
+ version: 0.6.2
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-08-27 00:00:00 -07:00
12
+ date: 2009-09-11 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -41,6 +41,7 @@ extensions: []
41
41
  extra_rdoc_files:
42
42
  - README.rdoc
43
43
  - LICENCE
44
+ - Release_Notes.rdoc
44
45
  files:
45
46
  - test/fixtures
46
47
  - test/fixtures/animal.xml
@@ -61,6 +62,7 @@ files:
61
62
  - lib/scufl/parser.rb
62
63
  - README.rdoc
63
64
  - LICENCE
65
+ - Release_Notes.rdoc
64
66
  has_rdoc: true
65
67
  homepage: http://www.mygrid.org.uk/
66
68
  licenses: