redox 1.8.1 → 1.8.2
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 +4 -0
- data/lib/redox/models/media.rb +4 -0
- data/lib/redox/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: 74c2f64a9a4dfe39d514cef7ffffbc202129e08d6a2803447b956abe8dbecf4b
|
|
4
|
+
data.tar.gz: 23f406cb77dfd9de5bd4f1a6313c29165a7aded6919497c4f1db2f1e34818085
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c54ecafcd9e150808e99dfb81fb6dda136a444c4ad547faef43be920063ae433ab7ccaa5c6f697026ddcd9d8d89b736ef45eb760c4440af36ef0d9b992f177a0
|
|
7
|
+
data.tar.gz: 2824189ac1f5c5984fafdd8aabafd24f08a5188dfb62d7ec8a1b214614e883cbdfc0ad4d8545b0705ed0c33a59c2a7a57776f2fb3197f639694571778fce2f01
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.8.2] - 2022-2-23
|
|
8
|
+
### Added
|
|
9
|
+
- DirectAddressFrom and DirectAddressTo to Media Model
|
|
7
10
|
## [1.8.1] - 2022-1-25
|
|
8
11
|
### Added
|
|
9
12
|
- Components, OrderedBy, Indications, and AdministeringProvider to Medication Model
|
|
@@ -187,6 +190,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
187
190
|
### Added
|
|
188
191
|
- Initial Release
|
|
189
192
|
|
|
193
|
+
[1.8.2]: https://github.com/WeInfuse/redox/compare/v1.8.1...v1.8.2
|
|
190
194
|
[1.8.1]: https://github.com/WeInfuse/redox/compare/v1.8.0...v1.8.1
|
|
191
195
|
[1.8.0]: https://github.com/WeInfuse/redox/compare/v1.7.4...v1.8.0
|
|
192
196
|
[1.7.4]: https://github.com/WeInfuse/redox/compare/v1.7.3...v1.7.4
|
data/lib/redox/models/media.rb
CHANGED
|
@@ -10,6 +10,8 @@ module Redox
|
|
|
10
10
|
property :DocumentID, from: :document_id, required: false
|
|
11
11
|
property :Availability, from: :availability, required: false
|
|
12
12
|
property :Provider, from: :provider, required: false
|
|
13
|
+
property :DirectAddressFrom, from: :direct_address_from, required: false
|
|
14
|
+
property :DirectAddressTo, from: :direct_address_to, required: false
|
|
13
15
|
|
|
14
16
|
alias_method :file_type, :FileType
|
|
15
17
|
alias_method :file_name, :FileName
|
|
@@ -18,6 +20,8 @@ module Redox
|
|
|
18
20
|
alias_method :document_id, :DocumentID
|
|
19
21
|
alias_method :availability, :Availability
|
|
20
22
|
alias_method :provider, :Provider
|
|
23
|
+
alias_method :direct_address_from, :DirectAddressFrom
|
|
24
|
+
alias_method :direct_address_to, :DirectAddressTo
|
|
21
25
|
|
|
22
26
|
def availability=(value)
|
|
23
27
|
case value
|
data/lib/redox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Clark
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2022-
|
|
13
|
+
date: 2022-02-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: httparty
|