atrium-ruby 2.6.0 → 2.7.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: b61584c4cf1fa5bff782505d7acc26017dfd3cfeaa003432204da843460e59a8
4
- data.tar.gz: 452a85cfcdb58b62029ac1d4a54cf66a5fc5386a2882795dd2791b7a9bfc63bf
3
+ metadata.gz: '095fd068ed1950d40160c08e8570e3bdd2c4bdbde1451b8540929ec5ea370253'
4
+ data.tar.gz: c7b8533464cedeeccbade953720d887a507db2b4b80ea87c689ed7b1f93be420
5
5
  SHA512:
6
- metadata.gz: d16026d814889c105f26db2dc61f6e25a31b9f33c0325eee4c2f6e5e3481db8b14c4383239f25aa2d695ba2a50f6a2ba1d5ff346596579c28ddb97ffe1cc1edc
7
- data.tar.gz: 6868070e547fa38f21eb885c18ad8cbfdb334836ca47bdfe367651e689fd2082c37e4d39f464b99e3b5f164916b2201978afbb13f0d9560f94c7fa9eb1a7e1df
6
+ metadata.gz: 84bb52ee48db76f24772532910357717e3a9a3a87edb21d4327e7d2317dd2ed46cbf4b36deab1ff8eea40b3861f42305f17d3a84404bcc10a9547fdd717beec3
7
+ data.tar.gz: d13888ab77f5326f9f8597a2ce8cdc287c288564bfd0ce90bc98cc124dafc6aa1fe2d691bae1d8bfe71cf87ea10947ea64c6943d57c322b9ca61519d409c79ec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 MX Technologies Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -17,12 +17,12 @@ gem build atrium-ruby.gemspec
17
17
  Then either install the gem locally:
18
18
 
19
19
  ```shell
20
- gem install ./atrium-ruby-2.6.0.gem
20
+ gem install ./atrium-ruby-2.7.0.gem
21
21
  ```
22
22
 
23
23
  Finally add this to the Gemfile:
24
24
 
25
- gem 'atrium-ruby', '~> 2.6.0'
25
+ gem 'atrium-ruby', '~> 2.7.0'
26
26
 
27
27
  ### Install from Git
28
28
 
@@ -7,5 +7,6 @@ Name | Type | Description | Notes
7
7
  **identifier** | **String** | | [optional]
8
8
  **institution_code** | **String** | |
9
9
  **metadata** | **String** | | [optional]
10
+ **skip_aggregation** | **BOOLEAN** | | [optional]
10
11
 
11
12
 
@@ -18,13 +18,16 @@ module Atrium
18
18
 
19
19
  attr_accessor :metadata
20
20
 
21
+ attr_accessor :skip_aggregation
22
+
21
23
  # Attribute mapping from ruby-style variable name to JSON key.
22
24
  def self.attribute_map
23
25
  {
24
26
  :'credentials' => :'credentials',
25
27
  :'identifier' => :'identifier',
26
28
  :'institution_code' => :'institution_code',
27
- :'metadata' => :'metadata'
29
+ :'metadata' => :'metadata',
30
+ :'skip_aggregation' => :'skip_aggregation'
28
31
  }
29
32
  end
30
33
 
@@ -34,7 +37,8 @@ module Atrium
34
37
  :'credentials' => :'Array<CredentialRequest>',
35
38
  :'identifier' => :'String',
36
39
  :'institution_code' => :'String',
37
- :'metadata' => :'String'
40
+ :'metadata' => :'String',
41
+ :'skip_aggregation' => :'BOOLEAN'
38
42
  }
39
43
  end
40
44
 
@@ -63,6 +67,10 @@ module Atrium
63
67
  if attributes.has_key?(:'metadata')
64
68
  self.metadata = attributes[:'metadata']
65
69
  end
70
+
71
+ if attributes.has_key?(:'skip_aggregation')
72
+ self.skip_aggregation = attributes[:'skip_aggregation']
73
+ end
66
74
  end
67
75
 
68
76
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -96,7 +104,8 @@ module Atrium
96
104
  credentials == o.credentials &&
97
105
  identifier == o.identifier &&
98
106
  institution_code == o.institution_code &&
99
- metadata == o.metadata
107
+ metadata == o.metadata &&
108
+ skip_aggregation == o.skip_aggregation
100
109
  end
101
110
 
102
111
  # @see the `==` method
@@ -108,7 +117,7 @@ module Atrium
108
117
  # Calculates hash code according to all attributes.
109
118
  # @return [Fixnum] Hash code
110
119
  def hash
111
- [credentials, identifier, institution_code, metadata].hash
120
+ [credentials, identifier, institution_code, metadata, skip_aggregation].hash
112
121
  end
113
122
 
114
123
  # Builds the object from hash
@@ -7,5 +7,5 @@
7
7
  =end
8
8
 
9
9
  module Atrium
10
- VERSION = '2.6.0'
10
+ VERSION = '2.7.0'
11
11
  end
@@ -51,4 +51,10 @@ describe 'MemberCreateRequest' do
51
51
  end
52
52
  end
53
53
 
54
+ describe 'test attribute "skip_aggregation"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
57
+ end
58
+ end
59
+
54
60
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atrium-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-03 00:00:00.000000000 Z
11
+ date: 2019-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -198,6 +198,7 @@ extensions: []
198
198
  extra_rdoc_files: []
199
199
  files:
200
200
  - Gemfile
201
+ - LICENSE
201
202
  - README.md
202
203
  - Rakefile
203
204
  - atrium-ruby.gemspec