zaikio-hub 0.16.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a213b895dd1c0ecb399aafa3adec599fb7b1c149219b956486b459e3fd01e65e
4
- data.tar.gz: 23fa363c649c77f2a3768a71720f0b03368e6292d8c8975a28f2b4a906b6743b
3
+ metadata.gz: 76d8a70df7182816a8eca631ea6803f982d480a4085867ffecf03293756035c5
4
+ data.tar.gz: 331c33d5f6011b778b28858e0fc094ff15e70e7a1749cd3e0f3aa90d2cd6e2cd
5
5
  SHA512:
6
- metadata.gz: 698c948206ee591211dea973a442c6fba4f343d7699798b0c7100db7ad37ca3a48a8aaa6ebc40f814709dabb1e6069b0140af02beee68bd5cfba22443fc5eed2
7
- data.tar.gz: 04d25a9c1639ac7cb07776f6137b323bfe0dc96b021cfd8ea2adc8d7871b3e0a6988bffb48bc007e402b810f7bdc1646343c5e95ecb586bbfdfd4a19d3a3492b
6
+ metadata.gz: 892ba965fb0bf50ccee60e4b74ac34d5410c1a09f66bd698a440a4d2850a8c60eb97c21cbe0e20e1c087e50ef4538195fad8d2458874e88825367ae3b452ceb7
7
+ data.tar.gz: 19618f401194cb7aba0397a25fbdb5134b3ab802023638a1de8e8ee3f8b0d1e06f42f097396037b4fb190f25c3b096311ed9807af25d74fa5b738536451215fc
data/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.18.0]
11
+
12
+ - Add `reference` attribute to `Availability`
13
+
14
+ ## [0.17.0]
15
+
16
+ - Add `reference` attribute to `Machine` and `Specialist`
17
+
10
18
  ## [0.16.0]
11
19
 
12
20
  - Support `availabilities` for `Machine` and `Specialist`
@@ -138,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
138
146
  ### Added
139
147
  - Added subscriptions (migration required)
140
148
 
141
- [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.16.0..HEAD
149
+ [Unreleased]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.17.0..HEAD
150
+ [0.17.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.16.0..v0.17.0
142
151
  [0.16.0]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.3..v0.16.0
143
152
  [0.15.3]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.2..v0.15.3
144
153
  [0.15.2]: https://github.com/zaikio/zaikio-hub-ruby/compare/v0.15.1..v0.15.2
@@ -5,7 +5,7 @@ module Zaikio
5
5
 
6
6
  attributes :machine_id, :mode, :starts_at, :ends_at, :date, :weekday, :reason, :capacity,
7
7
  :description, :machine_id, :specialist_id, :created_at, :updated_at, :starts_at_hm,
8
- :ends_at_hm
8
+ :ends_at_hm, :reference
9
9
  end
10
10
  end
11
11
  end
@@ -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, :capabilities
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",
@@ -1,5 +1,5 @@
1
1
  module Zaikio
2
2
  module Hub
3
- VERSION = "0.16.0".freeze
3
+ VERSION = "0.18.0".freeze
4
4
  end
5
5
  end
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.16.0
4
+ version: 0.18.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-04-28 00:00:00.000000000 Z
13
+ date: 2023-09-19 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: concurrent-ruby
@@ -89,7 +89,7 @@ dependencies:
89
89
  version: 3.10.5
90
90
  - - "<"
91
91
  - !ruby/object:Gem::Version
92
- version: 3.15.0
92
+ version: 3.17.0
93
93
  type: :runtime
94
94
  prerelease: false
95
95
  version_requirements: !ruby/object:Gem::Requirement
@@ -99,7 +99,7 @@ dependencies:
99
99
  version: 3.10.5
100
100
  - - "<"
101
101
  - !ruby/object:Gem::Version
102
- version: 3.15.0
102
+ version: 3.17.0
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: spyke
105
105
  requirement: !ruby/object:Gem::Requirement