unimatrix 2.5.5 → 2.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9081a7b67db7e4b523efa15aaf5c27cf676e90ff
4
- data.tar.gz: 4dd02ae1d489d09f50b3918c83e7883fd5fd146d
3
+ metadata.gz: f1120add15ca616ab0ac32d36c069f91eb9cef2b
4
+ data.tar.gz: '08e315fe355995951e5c36696579efd4562248bf'
5
5
  SHA512:
6
- metadata.gz: 8c45e1574d8ad2b83b620aa0007a6f91cbb6d4efa524affc4593988ca7e9280b2934297f6cf84a37d41beda7f5295c73d47ac0a71cf86127f4e351fe93e80482
7
- data.tar.gz: 9d8007358c07aacb261b951b2f130dad1caeb896814fdcea46881b242518b76e9afb252be48aef3297e85432b0fc195645f91607b8c7ec4d3a0463c6c0eb770f
6
+ metadata.gz: e8ae8c7c704e704d12d759f4f8ca7002b153310c29feebcfff3176d5fff307386efaf4a6d8238ad71780dc9e8d33c369249502a70e13559db65f4878c74ab85a
7
+ data.tar.gz: 71217386394f2be91c33b5c1f4626e965a81b8a9612181ee13e244d7150391a76c49872141c575991e0b05e7a8f9e0ee9e945762fe6282fb946dd9400fcf6533
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.5.5
1
+ 2.6.0
@@ -1,6 +1,6 @@
1
1
  module Unimatrix::Authorization
2
2
 
3
- class Policy < Unimatrix::DynamicResource
3
+ class Policy < Unimatrix::Resource
4
4
 
5
5
  field :id
6
6
  field :created_at
@@ -1,6 +1,6 @@
1
1
  module Unimatrix::Authorization
2
2
 
3
- class Resource < Unimatrix::DynamicResource
3
+ class Resource < Unimatrix::Resource
4
4
 
5
5
  field :id
6
6
  field :created_at
@@ -1,6 +1,6 @@
1
1
  module Unimatrix::Authorization
2
2
 
3
- class ResourceOwner < Unimatrix::DynamicResource
3
+ class ResourceOwner < Unimatrix::Resource
4
4
 
5
5
  field :id
6
6
  field :uuid
@@ -1,6 +1,6 @@
1
1
  module Unimatrix::Authorization
2
2
 
3
- class ResourceServer < Unimatrix::DynamicResource
3
+ class ResourceServer < Unimatrix::Resource
4
4
 
5
5
  field :id
6
6
  field :uuid
@@ -5,13 +5,13 @@ module Unimatrix::Cartographer
5
5
  field :id
6
6
  field :uuid
7
7
  field :name
8
- field :realm_id
8
+ field :realm_uuid
9
9
  field :created_at
10
10
  field :updated_at
11
11
 
12
12
  has_many :geographic_areas
13
13
  has_many :region_geographic_areas
14
-
14
+
15
15
  end
16
16
 
17
- end
17
+ end
@@ -3,12 +3,13 @@ module Unimatrix::Cartographer
3
3
  class RegionGeographicArea < Unimatrix::DynamicResource
4
4
 
5
5
  field :id
6
- field :realm_id
7
- field :region_id
8
- field :geographic_area_id
6
+ field :uuid
7
+ field :realm_uuid
8
+ field :region_uuid
9
+ field :geographic_area_uuid
9
10
  field :created_at
10
11
  field :updated_at
11
12
 
12
13
  end
13
14
 
14
- end
15
+ end
@@ -2,7 +2,7 @@ module Unimatrix::Quartermaster
2
2
 
3
3
  class BinaryIngressor < Unimatrix::Resource
4
4
 
5
- field :binary_uuid, read_only: true
5
+ field :binary_uuid
6
6
  field :state, read_only: true
7
7
  field :created_at, read_only: true
8
8
  field :updated_at, read_only: true
@@ -1,7 +1,7 @@
1
1
  module Unimatrix::Regent
2
2
 
3
- class Realm < Unimatrix::DynamicResource
4
-
3
+ class Realm < Unimatrix::Resource
4
+
5
5
  field :id
6
6
  field :uuid
7
7
  field :name
@@ -9,9 +9,10 @@ module Unimatrix::Regent
9
9
  field :created_at
10
10
  field :updated_at
11
11
  field :domain_name
12
+ field :picture_uuid
12
13
 
13
14
  has_many :settings
14
-
15
+
15
16
  end
16
17
 
17
- end
18
+ end
@@ -1,14 +1,14 @@
1
1
  module Unimatrix::Regent
2
2
 
3
- class Setting < Unimatrix::DynamicResource
4
-
3
+ class Setting < Unimatrix::Resource
4
+
5
5
  field :id
6
6
  field :realm_id
7
7
  field :name
8
8
  field :content
9
9
  field :created_at
10
10
  field :updated_at
11
-
11
+
12
12
  end
13
13
 
14
- end
14
+ 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.5.5
4
+ version: 2.6.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-03-21 00:00:00.000000000 Z
11
+ date: 2018-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport