unimatrix 3.3.4 → 3.4.0
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 +5 -5
- data/VERSION +1 -1
- data/lib/unimatrix.rb +3 -0
- data/lib/unimatrix/alchemist/text.rb +1 -0
- data/lib/unimatrix/alchemist/text_rendition.rb +1 -0
- data/lib/unimatrix/historian/history.rb +18 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 21a40925fa19b50a12db213ac2f4ab20eba084af583d34a1e8d62c3233d7ba7a
|
|
4
|
+
data.tar.gz: 88a24b4ff9336a2d5b69d78a46cb9901e710166d6b2f475ce61bd33a2f1fb925
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a97d916f4fa037dac2bb27f40e0bfcf00705d10c38f2dfba753a3ada5e4c395552e4680d2c5f5555e3639b410a5f9ea759649c66e1a92df33c44bd67c9059aec
|
|
7
|
+
data.tar.gz: 0301cff32c5a27c9689b27f2cbb5cc79118086447543de6588225d956fb3757e90b4b8e5ffec6a966a66c4d91d5db75f9702ab3dc0b0e358b1d8ed8e804e873a
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.4.0
|
data/lib/unimatrix.rb
CHANGED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module Unimatrix::Historian
|
|
2
|
+
|
|
3
|
+
class History < Unimatrix::Resource
|
|
4
|
+
|
|
5
|
+
field :id
|
|
6
|
+
field :uuid
|
|
7
|
+
field :created_at
|
|
8
|
+
field :realm_uuid
|
|
9
|
+
field :resource_uuid
|
|
10
|
+
field :resource_owner_uuid
|
|
11
|
+
field :resource_server
|
|
12
|
+
field :resource_name
|
|
13
|
+
field :action_name
|
|
14
|
+
field :at
|
|
15
|
+
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
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: 3.
|
|
4
|
+
version: 3.4.0
|
|
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-12-
|
|
11
|
+
date: 2018-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- lib/unimatrix/dynamic_resource.rb
|
|
161
161
|
- lib/unimatrix/error.rb
|
|
162
162
|
- lib/unimatrix/forbidden_error.rb
|
|
163
|
+
- lib/unimatrix/historian/history.rb
|
|
163
164
|
- lib/unimatrix/iris/stream.rb
|
|
164
165
|
- lib/unimatrix/iris/stream_converter.rb
|
|
165
166
|
- lib/unimatrix/iris/stream_encoder.rb
|
|
@@ -223,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
223
224
|
version: '0'
|
|
224
225
|
requirements: []
|
|
225
226
|
rubyforge_project:
|
|
226
|
-
rubygems_version: 2.
|
|
227
|
+
rubygems_version: 2.7.7
|
|
227
228
|
signing_key:
|
|
228
229
|
specification_version: 4
|
|
229
230
|
summary: Unimatrix is used to communicate with Unimatrix APIs.
|