ezags-xsd 2.2.6.2 → 2.2.6.3

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/.gitignore CHANGED
@@ -3,6 +3,7 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
+ .idea
6
7
  Gemfile.lock
7
8
  InstalledFiles
8
9
  _yardoc
@@ -1,12 +1,10 @@
1
1
  # encoding: utf-8
2
+ # @note Перечисляемый тип: "справочники"
2
3
 
3
4
  class ReferenceTypeMapper
4
5
  include XmlSchemaMapper
5
6
  schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/UploadService.xsd', File.dirname(__FILE__))
6
- type 'ReferenceType'
7
+ type 'REFERENCE_TYPE'
7
8
 
8
- # @return [String]
9
- # minOccurs: 0, maxOccurs: 1
10
- attr_accessor :include
11
9
 
12
10
  end
@@ -40,10 +40,10 @@ class StatusResponseMapper
40
40
  attr_accessor :signature
41
41
  end
42
42
 
43
- class MessageData::AppData::ChangeOrderInfo
43
+ class AppData::ChangeOrderInfo
44
44
  include XmlSchemaMapper
45
45
  schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
46
- annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo'
46
+ annonymus_type 'StatusResponse::AppData::changeOrderInfo'
47
47
 
48
48
  # Информация об услуги
49
49
  # @return [ServiceInfoMapper]
@@ -71,10 +71,10 @@ class StatusResponseMapper
71
71
  attr_accessor :auth_token
72
72
  end
73
73
 
74
- class MessageData::AppData::ChangeOrderInfo::ServiceInfo
74
+ class ChangeOrderInfo::ServiceInfo
75
75
  include XmlSchemaMapper
76
76
  schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
77
- annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::serviceInfo'
77
+ annonymus_type 'StatusResponse::changeOrderInfo::serviceInfo'
78
78
 
79
79
  # Код ведомства в ПГУ
80
80
  # @return [String]
@@ -90,10 +90,10 @@ class StatusResponseMapper
90
90
  attr_accessor :reestr_id
91
91
  end
92
92
 
93
- class MessageData::AppData::ChangeOrderInfo::OrderId
93
+ class ChangeOrderInfo::OrderId
94
94
  include XmlSchemaMapper
95
95
  schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
96
- annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::orderId'
96
+ annonymus_type 'StatusResponse::changeOrderInfo::orderId'
97
97
 
98
98
  # Id заявки на портале
99
99
  # @return [String]
@@ -105,10 +105,10 @@ class StatusResponseMapper
105
105
  attr_accessor :org_id
106
106
  end
107
107
 
108
- class MessageData::AppData::ChangeOrderInfo::StatusCode
108
+ class ChangeOrderInfo::StatusCode
109
109
  include XmlSchemaMapper
110
110
  schema File.expand_path('../../vendor/ezags-protocols/eZAGS/public/OrderService.xsd', File.dirname(__FILE__))
111
- annonymus_type 'StatusResponse::MessageData::AppData::changeOrderInfo::statusCode'
111
+ annonymus_type 'StatusResponse::changeOrderInfo::statusCode'
112
112
 
113
113
  # Код статуса в ведомстве
114
114
  # @return [String]
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+
3
+ class StreamTaskRequestMapper
4
+ include XmlSchemaMapper
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
6
+ type 'StreamTaskRequest'
7
+
8
+ # Служебный блок атрибутов СМЭВ
9
+ # @return [MessageTypeMapper]
10
+ # minOccurs: 1, maxOccurs: 1
11
+ attr_accessor :message
12
+ # @return [MessageDataMapper]
13
+ # minOccurs: 1, maxOccurs: 1
14
+ attr_accessor :message_data
15
+
16
+ class MessageData
17
+ include XmlSchemaMapper
18
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
19
+ annonymus_type 'StreamTaskRequest::MessageData'
20
+
21
+ # @return [AppDataMapper]
22
+ # minOccurs: 1, maxOccurs: 1
23
+ attr_accessor :app_data
24
+ # Блок вложений
25
+ # @return [AppDocumentTypeMapper]
26
+ # minOccurs: 0, maxOccurs: 1
27
+ attr_accessor :app_document
28
+ end
29
+
30
+ class MessageData::AppData
31
+ include XmlSchemaMapper
32
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
33
+ annonymus_type 'StreamTaskRequest::MessageData::AppData'
34
+
35
+ # @return [StreamTaskRequestObjMapper]
36
+ # minOccurs: 1, maxOccurs: 1
37
+ attr_accessor :stream_task_request_obj
38
+ end
39
+
40
+ end
@@ -0,0 +1,31 @@
1
+ # encoding: utf-8
2
+
3
+ class StreamTaskRequestObjMapper
4
+ include XmlSchemaMapper
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
6
+ type 'StreamTaskRequestObj'
7
+
8
+ # @return [String]
9
+ # minOccurs: 1, maxOccurs: 1
10
+ attr_accessor :task_name
11
+ # @return [String]
12
+ # minOccurs: 1, maxOccurs: 1
13
+ attr_accessor :document_type
14
+ # @return [String]
15
+ # minOccurs: 1, maxOccurs: 1
16
+ attr_accessor :operators_count
17
+ # @return [ImagesMapper]
18
+ # minOccurs: 1, maxOccurs: 1
19
+ attr_accessor :images
20
+
21
+ class Images
22
+ include XmlSchemaMapper
23
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
24
+ annonymus_type 'StreamTaskRequestObj::Images'
25
+
26
+ # @return [Base64Binary]
27
+ # minOccurs: 1, maxOccurs: 1
28
+ attr_accessor :image
29
+ end
30
+
31
+ end
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+
3
+ class StreamTaskResponseMapper
4
+ include XmlSchemaMapper
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
6
+ type 'StreamTaskResponse'
7
+
8
+ # Служебный блок атрибутов СМЭВ
9
+ # @return [MessageTypeMapper]
10
+ # minOccurs: 1, maxOccurs: 1
11
+ attr_accessor :message
12
+ # @return [MessageDataMapper]
13
+ # minOccurs: 1, maxOccurs: 1
14
+ attr_accessor :message_data
15
+
16
+ class MessageData
17
+ include XmlSchemaMapper
18
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
19
+ annonymus_type 'StreamTaskResponse::MessageData'
20
+
21
+ # @return [AppDataMapper]
22
+ # minOccurs: 1, maxOccurs: 1
23
+ attr_accessor :app_data
24
+ # Блок вложений
25
+ # @return [AppDocumentTypeMapper]
26
+ # minOccurs: 0, maxOccurs: 1
27
+ attr_accessor :app_document
28
+ end
29
+
30
+ class MessageData::AppData
31
+ include XmlSchemaMapper
32
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
33
+ annonymus_type 'StreamTaskResponse::MessageData::AppData'
34
+
35
+ # @return [StreamTaskResponseObjMapper]
36
+ # minOccurs: 1, maxOccurs: 1
37
+ attr_accessor :stream_task_response_obj
38
+ end
39
+
40
+ end
@@ -0,0 +1,12 @@
1
+ # encoding: utf-8
2
+
3
+ class StreamTaskResponseObjMapper
4
+ include XmlSchemaMapper
5
+ schema File.expand_path('../../vendor/ezags-protocols/retro/StreamTaskService.xsd', File.dirname(__FILE__))
6
+ type 'StreamTaskResponseObj'
7
+
8
+ # @return [String]
9
+ # minOccurs: 1, maxOccurs: 1
10
+ attr_accessor :task_id
11
+
12
+ end
data/bin/ezags-xsd CHANGED
@@ -48,6 +48,7 @@ class CLI < Thor
48
48
  def update_retro
49
49
  @script.generate(xsd_path 'retro/GetResultsService.xsd')
50
50
  @script.generate(xsd_path 'retro/SecurityWithSignature.xsd')
51
+ @script.generate(xsd_path 'retro/StreamTaskService.xsd')
51
52
  end
52
53
 
53
54
  def update_upload
@@ -1,5 +1,5 @@
1
1
  module Ezags
2
2
  module Xsd
3
- VERSION = '2.2.6.2'
3
+ VERSION = '2.2.6.3'
4
4
  end
5
5
  end
@@ -1,7 +1,6 @@
1
1
  require 'spec_helper'
2
2
  require "xml_schema_mapper/test_builder"
3
3
 
4
- # @attr Include [string]
5
4
 
6
5
 
7
6
  describe ReferenceTypeMapper do
@@ -0,0 +1,18 @@
1
+ require 'spec_helper'
2
+ require "xml_schema_mapper/test_builder"
3
+
4
+ # @attr Message [MessageType]
5
+ # @attr MessageData []
6
+
7
+
8
+ describe StreamTaskRequestMapper do
9
+
10
+ include XmlSchemaMapper::TestBuilder::Helper
11
+
12
+ subject { build_described_mapper }
13
+
14
+ it "should be self-compatible xml <-> object" do
15
+ described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
16
+ end
17
+
18
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+ require "xml_schema_mapper/test_builder"
3
+
4
+ # @attr TaskName [string]
5
+ # @attr DocumentType [string]
6
+ # @attr OperatorsCount [string]
7
+ # @attr Images []
8
+
9
+
10
+ describe StreamTaskRequestObjMapper do
11
+
12
+ include XmlSchemaMapper::TestBuilder::Helper
13
+
14
+ subject { build_described_mapper }
15
+
16
+ it "should be self-compatible xml <-> object" do
17
+ described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
18
+ end
19
+
20
+ end
@@ -0,0 +1,18 @@
1
+ require 'spec_helper'
2
+ require "xml_schema_mapper/test_builder"
3
+
4
+ # @attr Message [MessageType]
5
+ # @attr MessageData []
6
+
7
+
8
+ describe StreamTaskResponseMapper do
9
+
10
+ include XmlSchemaMapper::TestBuilder::Helper
11
+
12
+ subject { build_described_mapper }
13
+
14
+ it "should be self-compatible xml <-> object" do
15
+ described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
16
+ end
17
+
18
+ end
@@ -0,0 +1,17 @@
1
+ require 'spec_helper'
2
+ require "xml_schema_mapper/test_builder"
3
+
4
+ # @attr TaskId [string]
5
+
6
+
7
+ describe StreamTaskResponseObjMapper do
8
+
9
+ include XmlSchemaMapper::TestBuilder::Helper
10
+
11
+ subject { build_described_mapper }
12
+
13
+ it "should be self-compatible xml <-> object" do
14
+ described_class.parse(subject.to_xml).to_xml.should eql subject.to_xml
15
+ end
16
+
17
+ end
@@ -0,0 +1,47 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
3
+ xmlns:tns="http://ezags.rt.ru/fzags/StreamTaskService/" xmlns:t="http://smev.gosuslugi.ru/rev120315"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="StreamTaskService"
5
+ targetNamespace="http://ezags.rt.ru/fzags/StreamTaskService/">
6
+ <types>
7
+ <xsd:schema>
8
+ <xsd:import namespace="http://smev.gosuslugi.ru/rev120315" schemaLocation="StreamTaskService.xsd"/>
9
+ </xsd:schema>
10
+ </types>
11
+ <message name="StreamTask">
12
+ <part name="parameters" element="t:streamTaskRequest"/>
13
+ </message>
14
+ <message name="StreamTaskResponse">
15
+ <part name="parameters" element="t:streamTaskResponse"/>
16
+ </message>
17
+ <message name="StreamTaskRequestObj">
18
+ <part name="parameters" element="t:streamTaskRequest"/>
19
+ </message>
20
+ <message name="StreamTaskResponseObj">
21
+ <part name="parameters" element="t:streamTaskResponse"/>
22
+ </message>
23
+ <portType name="StreamTaskService">
24
+ <operation name="createStreamTask">
25
+ <input message="tns:StreamTask"/>
26
+ <output message="tns:StreamTaskResponse"/>
27
+ <fault name="requestFault" message="tns:requestFault"/>
28
+ </operation>
29
+ </portType>
30
+ <binding name="StreamTaskImplPortBinding" type="tns:StreamTaskService">
31
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
32
+ <operation name="createStreamTask">
33
+ <soap:operation soapAction=""/>
34
+ <input>
35
+ <soap:body use="literal"/>
36
+ </input>
37
+ <output>
38
+ <soap:body use="literal"/>
39
+ </output>
40
+ </operation>
41
+ </binding>
42
+ <service name="StreamTask">
43
+ <port name="StreamTaskImplPort" binding="tns:StreamTaskImplPortBinding">
44
+ <soap:address location="REPLACE_WITH_ACTUAL_URL"/>
45
+ </port>
46
+ </service>
47
+ </definitions>
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- edited with XMLSpy v2011 rel. 2 (http://www.altova.com) by TeaM DJiNN (TeaM DJiNN) -->
3
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
4
+ xmlns:smev="http://smev.gosuslugi.ru/rev120315"
5
+ targetNamespace="http://smev.gosuslugi.ru/rev120315"
6
+ elementFormDefault="qualified"
7
+ attributeFormDefault="qualified">
8
+ <xs:import namespace="http://ezags.rt.ru/type/common/" schemaLocation="../common.xsd"/>
9
+ <xs:import namespace="http://idecs.atc.ru/privateoffice/ws/changeorderinfo" schemaLocation="../ePGU/order-info.xsd"/>
10
+ <xs:include schemaLocation="../smev/smev.gosuslugi.ru.rev120315.xsd"/>
11
+ <xs:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="../xmldsig-core-schema.xsd"/>
12
+ <xs:complexType name="StreamTaskRequest">
13
+ <xs:sequence minOccurs="1">
14
+ <xs:element ref="smev:Message"/>
15
+ <xs:element name="MessageData">
16
+ <xs:complexType>
17
+ <xs:sequence minOccurs="1">
18
+ <xs:element name="AppData">
19
+ <xs:complexType>
20
+ <xs:sequence minOccurs="1">
21
+ <xs:element ref="smev:streamTaskRequestObj"/>
22
+ </xs:sequence>
23
+ <xs:attribute name="id" type="xs:string" fixed="AppData"/>
24
+ </xs:complexType>
25
+ </xs:element>
26
+ <xs:element ref="smev:AppDocument" minOccurs="0"/>
27
+ </xs:sequence>
28
+ </xs:complexType>
29
+ </xs:element>
30
+ </xs:sequence>
31
+ </xs:complexType>
32
+ <xs:complexType name="StreamTaskResponse">
33
+ <xs:sequence minOccurs="1">
34
+ <xs:element ref="smev:Message"/>
35
+ <xs:element name="MessageData">
36
+ <xs:complexType>
37
+ <xs:sequence minOccurs="1">
38
+ <xs:element name="AppData">
39
+ <xs:complexType>
40
+ <xs:sequence minOccurs="1">
41
+ <xs:element ref="smev:streamTaskResponseObj"/>
42
+ </xs:sequence>
43
+ <xs:attribute name="id" type="xs:string" fixed="AppData"/>
44
+ </xs:complexType>
45
+ </xs:element>
46
+ <xs:element ref="smev:AppDocument" minOccurs="0"/>
47
+ </xs:sequence>
48
+ </xs:complexType>
49
+ </xs:element>
50
+ </xs:sequence>
51
+ </xs:complexType>
52
+ <xs:complexType name="StreamTaskRequestObj">
53
+ <xs:sequence minOccurs="1">
54
+ <xs:element name="TaskName" type="xs:string" minOccurs="1"/>
55
+ <xs:element name="DocumentType" type="xs:string" minOccurs="1"/>
56
+ <xs:element name="OperatorsCount" type="xs:string" minOccurs="1"/>
57
+ <xs:element name="Images">
58
+ <xs:complexType>
59
+ <xs:sequence minOccurs="1">
60
+ <xs:element name="Image" type="xs:base64Binary" minOccurs="1"/>
61
+ </xs:sequence>
62
+ </xs:complexType>
63
+ </xs:element>
64
+ </xs:sequence>
65
+ </xs:complexType>
66
+ <xs:complexType name="StreamTaskResponseObj">
67
+ <xs:sequence minOccurs="1">
68
+ <xs:element name="TaskId" type="xs:string" minOccurs="1"/>
69
+ </xs:sequence>
70
+ </xs:complexType>
71
+ <xs:element name="streamTaskRequest" type="smev:StreamTaskRequest"/>
72
+ <xs:element name="streamTaskResponse" type="smev:StreamTaskResponse"/>
73
+ <xs:element name="streamTaskRequestObj" type="smev:StreamTaskRequestObj"/>
74
+ <xs:element name="streamTaskResponseObj" type="smev:StreamTaskResponseObj"/>
75
+ </xs:schema>
metadata CHANGED
@@ -1,57 +1,64 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ezags-xsd
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.6.2
4
+ prerelease:
5
+ version: 2.2.6.3
5
6
  platform: ruby
6
7
  authors:
7
8
  - Anton Sozontov
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-05-22 00:00:00.000000000 Z
12
+ date: 2013-06-03 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
- prerelease: false
15
- name: xml_schema_mapper
16
15
  version_requirements: !ruby/object:Gem::Requirement
17
16
  requirements:
18
17
  - - ! '>='
19
18
  - !ruby/object:Gem::Version
20
19
  version: 0.0.8
20
+ none: false
21
+ name: xml_schema_mapper
22
+ type: :runtime
23
+ prerelease: false
21
24
  requirement: !ruby/object:Gem::Requirement
22
25
  requirements:
23
26
  - - ! '>='
24
27
  - !ruby/object:Gem::Version
25
28
  version: 0.0.8
26
- type: :runtime
29
+ none: false
27
30
  - !ruby/object:Gem::Dependency
28
- prerelease: false
29
- name: libxml-ruby
30
31
  version_requirements: !ruby/object:Gem::Requirement
31
32
  requirements:
32
33
  - - ! '>='
33
34
  - !ruby/object:Gem::Version
34
35
  version: 2.6.0
36
+ none: false
37
+ name: libxml-ruby
38
+ type: :runtime
39
+ prerelease: false
35
40
  requirement: !ruby/object:Gem::Requirement
36
41
  requirements:
37
42
  - - ! '>='
38
43
  - !ruby/object:Gem::Version
39
44
  version: 2.6.0
40
- type: :runtime
45
+ none: false
41
46
  - !ruby/object:Gem::Dependency
42
- prerelease: false
43
- name: rspec
44
47
  version_requirements: !ruby/object:Gem::Requirement
45
48
  requirements:
46
49
  - - ! '>='
47
50
  - !ruby/object:Gem::Version
48
51
  version: '0'
52
+ none: false
53
+ name: rspec
54
+ type: :development
55
+ prerelease: false
49
56
  requirement: !ruby/object:Gem::Requirement
50
57
  requirements:
51
58
  - - ! '>='
52
59
  - !ruby/object:Gem::Version
53
60
  version: '0'
54
- type: :development
61
+ none: false
55
62
  description: mappers for ezags-protocols
56
63
  email:
57
64
  - a.sozontov@gmail.com
@@ -344,6 +351,10 @@ files:
344
351
  - app/mappers/statement_requisites_mapper.rb
345
352
  - app/mappers/status_response_mapper.rb
346
353
  - app/mappers/status_type_mapper.rb
354
+ - app/mappers/stream_task_request_mapper.rb
355
+ - app/mappers/stream_task_request_obj_mapper.rb
356
+ - app/mappers/stream_task_response_mapper.rb
357
+ - app/mappers/stream_task_response_obj_mapper.rb
347
358
  - app/mappers/string10_mapper.rb
348
359
  - app/mappers/string20_mapper.rb
349
360
  - app/mappers/string250_mapper.rb
@@ -697,6 +708,10 @@ files:
697
708
  - spec/mappers/statement_requisites_mapper_spec.rb
698
709
  - spec/mappers/status_response_mapper_spec.rb
699
710
  - spec/mappers/status_type_mapper_spec.rb
711
+ - spec/mappers/stream_task_request_mapper_spec.rb
712
+ - spec/mappers/stream_task_request_obj_mapper_spec.rb
713
+ - spec/mappers/stream_task_response_mapper_spec.rb
714
+ - spec/mappers/stream_task_response_obj_mapper_spec.rb
700
715
  - spec/mappers/string10_mapper_spec.rb
701
716
  - spec/mappers/string20_mapper_spec.rb
702
717
  - spec/mappers/string250_mapper_spec.rb
@@ -834,6 +849,8 @@ files:
834
849
  - vendor/ezags-protocols/retro/GetResultsService.wsdl
835
850
  - vendor/ezags-protocols/retro/GetResultsService.xsd
836
851
  - vendor/ezags-protocols/retro/SecurityWithSignature.xsd
852
+ - vendor/ezags-protocols/retro/StreamTaskService.wsdl
853
+ - vendor/ezags-protocols/retro/StreamTaskService.xsd
837
854
  - vendor/ezags-protocols/smev/smev.gosuslugi.ru.rev111111.xsd
838
855
  - vendor/ezags-protocols/smev/smev.gosuslugi.ru.rev120315.xsd
839
856
  - vendor/ezags-protocols/smev/xmldsig-core-schema.xsd
@@ -842,7 +859,6 @@ files:
842
859
  - vendor/ezags-protocols/xmldsig-core-schema.xsd
843
860
  homepage: ''
844
861
  licenses: []
845
- metadata: {}
846
862
  post_install_message:
847
863
  rdoc_options: []
848
864
  require_paths:
@@ -853,16 +869,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
853
869
  - - ! '>='
854
870
  - !ruby/object:Gem::Version
855
871
  version: '0'
872
+ none: false
856
873
  required_rubygems_version: !ruby/object:Gem::Requirement
857
874
  requirements:
858
875
  - - ! '>='
859
876
  - !ruby/object:Gem::Version
860
877
  version: '0'
878
+ none: false
861
879
  requirements: []
862
880
  rubyforge_project:
863
- rubygems_version: 2.0.3
881
+ rubygems_version: 1.8.23
864
882
  signing_key:
865
- specification_version: 4
883
+ specification_version: 3
866
884
  summary: generated mappers for use ezags-protocols in ruby projects
867
885
  test_files:
868
886
  - spec/mappers/act_rec_and_cert_birth_requisites_mapper_spec.rb
@@ -1144,6 +1162,10 @@ test_files:
1144
1162
  - spec/mappers/statement_requisites_mapper_spec.rb
1145
1163
  - spec/mappers/status_response_mapper_spec.rb
1146
1164
  - spec/mappers/status_type_mapper_spec.rb
1165
+ - spec/mappers/stream_task_request_mapper_spec.rb
1166
+ - spec/mappers/stream_task_request_obj_mapper_spec.rb
1167
+ - spec/mappers/stream_task_response_mapper_spec.rb
1168
+ - spec/mappers/stream_task_response_obj_mapper_spec.rb
1147
1169
  - spec/mappers/string10_mapper_spec.rb
1148
1170
  - spec/mappers/string20_mapper_spec.rb
1149
1171
  - spec/mappers/string250_mapper_spec.rb
checksums.yaml DELETED
@@ -1,15 +0,0 @@
1
- ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- Yzg5MDgyN2VkYmJjN2ExNmQwYzNhZTE1YmNhZTZkNTEyYTRlMGE3NA==
5
- data.tar.gz: !binary |-
6
- M2NiZjBiZTNiODkyMzE4MmNmMTZiZTcwN2ZhYTI3YThhZDhmMjhmNA==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- YmFkM2ZjNWExNjExM2UxMWJhZDExNzJmOTc3NGQxMGU5N2Y5NDNmNDQzZjA0
10
- NTAyMWViZGIzMWY2NDI2MTgwMzQyNDRlZDA0MzIxMmExOGZmNmY5ZTY4ZmQ5
11
- ZWNmMjJhYjhjNGQ1Njk5YWE5ZDIxZTQ2NzI2NzA0M2VmNGRjZjM=
12
- data.tar.gz: !binary |-
13
- NGYwOTQ1YTgwZTY0NDg2MzI5NDc1ZDQ3MzFjN2FiOWI5ODJkYWQzMGVhNWUw
14
- YWY5ZmY3ZDRmYzI1M2NiZjk5NWJlNWMzMzFkOWE4OGJhMTBjOWJmMTgzMjM0
15
- MGFhMDI2NDQ0OWMyZTg4ZmU1ZmQxMjJjZDI3ZDU3MTRlNGRmZDg=