redox 1.7.3 → 1.7.4

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: f89bb8ec88f909657e6723a72d4df8fc167da55571f05237bff94c1585b80417
4
- data.tar.gz: 23100e8ac122dc9c078a76316e47ffef8528bf36e90169810adba78ff6eb25b8
3
+ metadata.gz: 57da9db9aec3b58889c9c7bdbc64849f9ff608ebcb40692d4d739cdd88a75799
4
+ data.tar.gz: 48da259a058cc7dcb0ad3f35a5417f2adf4fd9f1e04853c0ddad23d61ee1167e
5
5
  SHA512:
6
- metadata.gz: 17c654a115c70f121f13db2a4bc6379e42aa898f9b6aed48f92455e7e3023010ff0fe47296ca19a22c017ecd6ed0b1bc95b32ebcff8aa97c7bc874e03931f07a
7
- data.tar.gz: 4d2d2d29f961da8b594bd7bac055099a72733cf56cd2ff0c15eae7bb351be133498666946cb35bf87d0cb1908ee17d874378289c720ed5e85f177fc26fd3c229
6
+ metadata.gz: 62f418206aab1d377c6800e8c28d2abbc1a68b9f5426875e0039bd01a7097ead79139e21166d0dec7dc08771036a8056f37254038f6800290931dadee74187ac
7
+ data.tar.gz: 4df580b57ce8ccdc0255439d3b1a1702d7dacaaf2fbd90ffe85ecaaf6aa70b5f5eabc2ddfcaa810af2819c5a5d479288f251c5ae9c6214a91e8d01c0f80427bc
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ 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.4] - 2021-12-2
8
+ ### Added
9
+ - Component Model ID Property Changed
10
+
7
11
  ## [1.7.3] - 2021-11-24
8
12
  ### Added
9
13
  - Visit#AttendingProvider and helpers for ID, IDType, FirstName, LastName
@@ -174,6 +178,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
174
178
  ### Added
175
179
  - Initial Release
176
180
 
181
+ [1.7.4]: https://github.com/WeInfuse/redox/compare/v1.7.3...v1.7.4
182
+ [1.7.3]: https://github.com/WeInfuse/redox/compare/v1.7.2...v1.7.3
177
183
  [1.7.2]: https://github.com/WeInfuse/redox/compare/v1.7.1...v1.7.2
178
184
  [1.7.1]: https://github.com/WeInfuse/redox/compare/v1.7...v1.7.1
179
185
  [1.7]: https://github.com/WeInfuse/redox/compare/v1.6.1...v1.7
@@ -1,11 +1,11 @@
1
1
  module Redox
2
2
  module Models
3
3
  class Component < AbstractModel
4
- property :Id, required: false, from: :id
4
+ property :ID, required: false, from: :id
5
5
  property :Name, required: false, from: :name
6
6
  property :Value, required: false, from: :value
7
7
 
8
- alias_method :id, :Id
8
+ alias_method :id, :ID
9
9
  alias_method :name, :Name
10
10
  alias_method :value, :Value
11
11
  end
data/lib/redox/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Redox
2
- VERSION = '1.7.3'.freeze
2
+ VERSION = '1.7.4'.freeze
3
3
  end
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.3
4
+ version: 1.7.4
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-11-24 00:00:00.000000000 Z
13
+ date: 2021-12-02 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
@@ -183,7 +183,7 @@ licenses:
183
183
  - MIT
184
184
  metadata:
185
185
  allowed_push_host: https://rubygems.org
186
- post_install_message:
186
+ post_install_message:
187
187
  rdoc_options: []
188
188
  require_paths:
189
189
  - lib
@@ -198,8 +198,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
198
  - !ruby/object:Gem::Version
199
199
  version: '0'
200
200
  requirements: []
201
- rubygems_version: 3.0.3
202
- signing_key:
201
+ rubygems_version: 3.1.4
202
+ signing_key:
203
203
  specification_version: 4
204
204
  summary: Ruby wrapper for the Redox Engine API
205
205
  test_files: []