unimatrix 2.6.0 → 2.6.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f1120add15ca616ab0ac32d36c069f91eb9cef2b
4
- data.tar.gz: '08e315fe355995951e5c36696579efd4562248bf'
3
+ metadata.gz: 28d2103549405252207125b6785d714dd5081ef5
4
+ data.tar.gz: 3a4abab733166f02af39b1e4032dac579dab249c
5
5
  SHA512:
6
- metadata.gz: e8ae8c7c704e704d12d759f4f8ca7002b153310c29feebcfff3176d5fff307386efaf4a6d8238ad71780dc9e8d33c369249502a70e13559db65f4878c74ab85a
7
- data.tar.gz: 71217386394f2be91c33b5c1f4626e965a81b8a9612181ee13e244d7150391a76c49872141c575991e0b05e7a8f9e0ee9e945762fe6282fb946dd9400fcf6533
6
+ metadata.gz: 61ed4ba297fed678b5dc5f0289869afcec24e2f3f7d04d3200ded085802c4e21b0ad4679758d76bb98f5973cc3606f9c218fd7f82b6137857c0b14a44c482958
7
+ data.tar.gz: 3d0f9d4cdddc93657e539e4f1b53820d7546d664468bd182f7c0fa010757f5a0fe21b2f73aa225b78235e32651b5b790de7c99da6d87abaf83a0bc833f825261
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.6.0
1
+ 2.6.1
data/lib/unimatrix.rb CHANGED
@@ -16,8 +16,6 @@ require 'unimatrix/dynamic_resource'
16
16
  require 'unimatrix/blueprintable'
17
17
  require 'unimatrix/blueprint_operation'
18
18
 
19
- require 'unimatrix/realm'
20
-
21
19
  require 'unimatrix/error'
22
20
  require 'unimatrix/attribute_error'
23
21
  require 'unimatrix/bad_request_error'
@@ -94,6 +92,7 @@ require 'unimatrix/distributor/distribution'
94
92
 
95
93
  # iris
96
94
  require 'unimatrix/iris/stream'
95
+ require 'unimatrix/iris/stream_converter'
97
96
  require 'unimatrix/iris/stream_encoder'
98
97
  require 'unimatrix/iris/stream_input'
99
98
  require 'unimatrix/iris/stream_output'
@@ -109,6 +108,7 @@ require 'unimatrix/regent/setting'
109
108
  require 'unimatrix/zephyrus/input'
110
109
  require 'unimatrix/zephyrus/output'
111
110
  require 'unimatrix/zephyrus/rendition'
111
+ require 'unimatrix/zephyrus/conversion_output'
112
112
  require 'unimatrix/zephyrus/recording_output'
113
113
  require 'unimatrix/zephyrus/routing_output'
114
114
  require 'unimatrix/zephyrus/transcoding_output'
@@ -0,0 +1,18 @@
1
+ module Unimatrix::Iris
2
+
3
+ class StreamConverter < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :created_at
7
+ field :updated_at
8
+ field :uuid
9
+ field :state
10
+ field :url
11
+ field :url_in
12
+ field :loop
13
+ field :stream_id
14
+ field :stream_uuid
15
+
16
+ end
17
+
18
+ end
@@ -0,0 +1,10 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class ConversionOutput < Output
4
+
5
+ field :url_in
6
+ field :loop
7
+
8
+ end
9
+
10
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unimatrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jackson Souza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-27 00:00:00.000000000 Z
11
+ date: 2018-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -148,6 +148,7 @@ files:
148
148
  - lib/unimatrix/error.rb
149
149
  - lib/unimatrix/forbidden_error.rb
150
150
  - lib/unimatrix/iris/stream.rb
151
+ - lib/unimatrix/iris/stream_converter.rb
151
152
  - lib/unimatrix/iris/stream_encoder.rb
152
153
  - lib/unimatrix/iris/stream_input.rb
153
154
  - lib/unimatrix/iris/stream_output.rb
@@ -161,7 +162,6 @@ files:
161
162
  - lib/unimatrix/parser.rb
162
163
  - lib/unimatrix/quartermaster/binary.rb
163
164
  - lib/unimatrix/quartermaster/binary_ingressor.rb
164
- - lib/unimatrix/realm.rb
165
165
  - lib/unimatrix/regent/realm.rb
166
166
  - lib/unimatrix/regent/setting.rb
167
167
  - lib/unimatrix/request.rb
@@ -169,6 +169,7 @@ files:
169
169
  - lib/unimatrix/response.rb
170
170
  - lib/unimatrix/serializer.rb
171
171
  - lib/unimatrix/version.rb
172
+ - lib/unimatrix/zephyrus/conversion_output.rb
172
173
  - lib/unimatrix/zephyrus/input.rb
173
174
  - lib/unimatrix/zephyrus/output.rb
174
175
  - lib/unimatrix/zephyrus/recording_output.rb
@@ -199,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
200
  version: '0'
200
201
  requirements: []
201
202
  rubyforge_project:
202
- rubygems_version: 2.6.8
203
+ rubygems_version: 2.4.8
203
204
  signing_key:
204
205
  specification_version: 4
205
206
  summary: Unimatrix is used to communicate with Unimatrix APIs.
@@ -1,7 +0,0 @@
1
- module Unimatrix
2
-
3
- class Realm < Resource
4
- field :uuid
5
- end
6
-
7
- end