redox 1.7.1 → 1.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +5 -1
- data/lib/redox/models/component.rb +13 -0
- data/lib/redox/models/note.rb +2 -0
- data/lib/redox/version.rb +1 -1
- data/lib/redox.rb +1 -0
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca16f2f2e1c41513d99874f9a04b6372d7749f740b11f0d6bb9b883baf548a23
|
4
|
+
data.tar.gz: 199d2165dbbbfe657de361bdbe61b612503997c61455f582587ffd4ef3beac27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a066a300059376e6ed20b64c90b07b81602527757c3976a9f54ef02c3bfe476e92c851a232e01b15820b482636330bfbbea485c53ab273465af3ffc465c7cda0
|
7
|
+
data.tar.gz: 63b5ddc7ca3ef660537dc517be4c00866d90ce617b75967927306c215ea29a163ccc6c986ee56e687dbb0e8d091da864e016f2e4eedcf4a59c700bf1aa9c6aa6
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,11 @@ 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.7.2] - 2021-11-18
|
8
|
+
### Added
|
9
|
+
- Component Model
|
10
|
+
- Notes#Components
|
11
|
+
|
7
12
|
## [1.7.1] - 2021-10-07
|
8
13
|
### Added
|
9
14
|
- Visit#ReferringProvider and helpers for ID, IDType, FirstName, LastName
|
@@ -165,6 +170,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
165
170
|
### Added
|
166
171
|
- Initial Release
|
167
172
|
|
173
|
+
[1.7.2]: https://github.com/WeInfuse/redox/compare/v1.7.1...v1.7.2
|
174
|
+
[1.7.1]: https://github.com/WeInfuse/redox/compare/v1.7...v1.7.1
|
168
175
|
[1.7]: https://github.com/WeInfuse/redox/compare/v1.6.1...v1.7
|
169
176
|
[1.6.1]: https://github.com/WeInfuse/redox/compare/v1.6.0...v1.6.1
|
170
177
|
[1.6.0]: https://github.com/WeInfuse/redox/compare/v1.5.2...v1.6.0
|
data/README.md
CHANGED
@@ -111,7 +111,11 @@ end
|
|
111
111
|
|
112
112
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
113
113
|
|
114
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
114
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
115
|
+
|
116
|
+
If you have already merged changes into the master branch of this repo and are looking to release a new version, remember to switch out of your local feature branch (if you are on one) to the master or main branch of this repo. Then pull all changes down so you have an up to date code base.
|
117
|
+
|
118
|
+
To actually release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
115
119
|
|
116
120
|
## Contributing
|
117
121
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Redox
|
2
|
+
module Models
|
3
|
+
class Component < AbstractModel
|
4
|
+
property :Id, required: false, from: :id
|
5
|
+
property :Name, required: false, from: :name
|
6
|
+
property :Value, required: false, from: :value
|
7
|
+
|
8
|
+
alias_method :id, :Id
|
9
|
+
alias_method :name, :Name
|
10
|
+
alias_method :value, :Value
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/lib/redox/models/note.rb
CHANGED
@@ -5,11 +5,13 @@ module Redox
|
|
5
5
|
property :DocumentType, from: :document_type, required: false
|
6
6
|
property :DocumentID, from: :document_id, required: false
|
7
7
|
property :Provider, required: false, from: :provider, default: {}
|
8
|
+
property :Components, required: false, from: :components, default: []
|
8
9
|
|
9
10
|
alias_method :content_type, :ContentType
|
10
11
|
alias_method :document_type, :DocumentType
|
11
12
|
alias_method :document_id, :DocumentID
|
12
13
|
alias_method :provider, :Provider
|
14
|
+
alias_method :components, :Components
|
13
15
|
end
|
14
16
|
end
|
15
17
|
end
|
data/lib/redox/version.rb
CHANGED
data/lib/redox.rb
CHANGED
@@ -23,6 +23,7 @@ require 'redox/models/patient/insurance'
|
|
23
23
|
require 'redox/models/patient/p_c_p'
|
24
24
|
require 'redox/models/potential_matches'
|
25
25
|
require 'redox/models/scheduling'
|
26
|
+
require 'redox/models/component'
|
26
27
|
require 'redox/request/request'
|
27
28
|
require 'redox/request/financial'
|
28
29
|
require 'redox/request/notes'
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Clark
|
8
8
|
- Mike Crockett
|
9
9
|
- Mike Carr
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: httparty
|
@@ -130,7 +130,7 @@ dependencies:
|
|
130
130
|
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: '0.9'
|
133
|
-
description:
|
133
|
+
description:
|
134
134
|
email:
|
135
135
|
- alexander.clark@weinfuse.com
|
136
136
|
- mike.crockett@weinfuse.com
|
@@ -147,6 +147,7 @@ files:
|
|
147
147
|
- lib/redox.rb
|
148
148
|
- lib/redox/authentication.rb
|
149
149
|
- lib/redox/connection.rb
|
150
|
+
- lib/redox/models/component.rb
|
150
151
|
- lib/redox/models/financial.rb
|
151
152
|
- lib/redox/models/media.rb
|
152
153
|
- lib/redox/models/media_upload.rb
|
@@ -182,7 +183,7 @@ licenses:
|
|
182
183
|
- MIT
|
183
184
|
metadata:
|
184
185
|
allowed_push_host: https://rubygems.org
|
185
|
-
post_install_message:
|
186
|
+
post_install_message:
|
186
187
|
rdoc_options: []
|
187
188
|
require_paths:
|
188
189
|
- lib
|
@@ -197,8 +198,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
197
198
|
- !ruby/object:Gem::Version
|
198
199
|
version: '0'
|
199
200
|
requirements: []
|
200
|
-
rubygems_version: 3.
|
201
|
-
signing_key:
|
201
|
+
rubygems_version: 3.1.4
|
202
|
+
signing_key:
|
202
203
|
specification_version: 4
|
203
204
|
summary: Ruby wrapper for the Redox Engine API
|
204
205
|
test_files: []
|