zaikio-hub 0.16.0 → 0.17.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 +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/zaikio/hub/machine.rb +1 -1
- data/lib/zaikio/hub/specialist.rb +2 -1
- data/lib/zaikio/hub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f893074c1bd1a277fb19b5cc8f1a3ef37aad7264178f3a97994533ebbdacba57
|
|
4
|
+
data.tar.gz: 41f0bd66b6e312eb9fef892dcaf0b79ffb592298f0594be7c308632c94bd5247
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 662e72746b5adc8c70d3e23115cfec025b3c0e6364079022602e788b8bacbd1513b86269dad818f58410d45288ab2ff4050691bdcf0e870c7613bd9ca1fc41ec
|
|
7
|
+
data.tar.gz: a508fc44552b52054eae17c72b35d9a568b9e0782470c22baec593e7e0e7324906b8bf02a154390cfeaefc4e1ec997ac8f83b19e0fab31650cde9fb9f37490fd
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.17.0]
|
|
11
|
+
|
|
12
|
+
- Add `reference` attribute to `Machine` and `Specialist`
|
|
13
|
+
|
|
10
14
|
## [0.16.0]
|
|
11
15
|
|
|
12
16
|
- Support `availabilities` for `Machine` and `Specialist`
|
|
@@ -138,7 +142,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
138
142
|
### Added
|
|
139
143
|
- Added subscriptions (migration required)
|
|
140
144
|
|
|
141
|
-
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.
|
|
145
|
+
[Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.17.0..HEAD
|
|
146
|
+
[0.17.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.16.0..v0.17.0
|
|
142
147
|
[0.16.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.3..v0.16.0
|
|
143
148
|
[0.15.3]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.2..v0.15.3
|
|
144
149
|
[0.15.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.1..v0.15.2
|
data/lib/zaikio/hub/machine.rb
CHANGED
|
@@ -8,7 +8,7 @@ module Zaikio
|
|
|
8
8
|
|
|
9
9
|
# Attributes
|
|
10
10
|
attributes :name, :updated_at, :created_at, :site_id, :kind, :capabilities,
|
|
11
|
-
:manufacturer_id, :serial_number, :manufacturer, :owner_id
|
|
11
|
+
:manufacturer_id, :serial_number, :manufacturer, :owner_id, :reference
|
|
12
12
|
|
|
13
13
|
# Associations
|
|
14
14
|
has_many :availabilities, class_name: "Zaikio::Hub::Availability",
|
|
@@ -7,7 +7,8 @@ module Zaikio
|
|
|
7
7
|
include_root_in_json :specialist
|
|
8
8
|
|
|
9
9
|
# Attributes
|
|
10
|
-
attributes :name, :updated_at, :created_at, :site_id, :kind, :owner_id,
|
|
10
|
+
attributes :name, :updated_at, :created_at, :site_id, :kind, :owner_id,
|
|
11
|
+
:capabilities, :reference
|
|
11
12
|
|
|
12
13
|
# Associations
|
|
13
14
|
has_many :availabilities, class_name: "Zaikio::Hub::Availability",
|
data/lib/zaikio/hub/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zaikio-hub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.17.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- crispymtn
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2023-
|
|
13
|
+
date: 2023-05-03 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: concurrent-ruby
|