atrium-ruby 2.8.0 → 2.8.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ed8d796ae961ae240fca5f1d773e57034cf946680d7d3227c047602b7e13288
4
- data.tar.gz: 76a09150fe9ac9488d620156821f419e3192e8db745b3439f5320d1c7f04618e
3
+ metadata.gz: 152984203631845c88dfdb1bf1e111be9dddd92467b5a53b1306305559c66776
4
+ data.tar.gz: 423f05d269fca91e10b70d211ad48dbc229b05692dcbf9bbcd0229d04f9ecc67
5
5
  SHA512:
6
- metadata.gz: a4abcff0afbd270498c095ca4ad4a334ab2d7cb949950684c773773297dff0fb3c4206ed816fef33bffd576b12ce7d991b2017ac6c56ecede181c060bc46a89f
7
- data.tar.gz: fae17698fc63fa099d6235bfb0255b70b3d7f440b50426ca16a1eb55992861b7af7da066d3ecf3325b60b2e17952a753ecad2d3f84fc644acd491e8b99c775e1
6
+ metadata.gz: b3e1e32adf77f6afd7813cffe53790b021a5ee69fb841b4317d12e0bcb20efc191779be2406f4f1ae37d18ba340625612b805803a4086a14b6e729f020e279e0
7
+ data.tar.gz: ccd8f28358447c3d04133471b50196d2b04ef338e388f8183e20d5c55c7fbf16628342d85afd273c5c93673dcac5a7e67ba7d172eabed11a2a335369522e47de
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.8.0.gem
20
+ gem install ./atrium-ruby-2.8.1.gem
21
21
  ```
22
22
 
23
23
  Finally add this to the Gemfile:
24
24
 
25
- gem 'atrium-ruby', '~> 2.8.0'
25
+ gem 'atrium-ruby', '~> 2.8.1'
26
26
 
27
27
  ### Install from Git
28
28
 
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **guid** | **String** | | [optional]
10
10
  **has_processed_accounts** | **BOOLEAN** | | [optional]
11
11
  **has_processed_transactions** | **BOOLEAN** | | [optional]
12
+ **is_authenticated** | **BOOLEAN** | | [optional]
12
13
  **is_being_aggregated** | **BOOLEAN** | | [optional]
13
14
  **status** | **String** | | [optional]
14
15
  **successfully_aggregated_at** | **String** | | [optional]
@@ -22,6 +22,8 @@ module Atrium
22
22
 
23
23
  attr_accessor :has_processed_transactions
24
24
 
25
+ attr_accessor :is_authenticated
26
+
25
27
  attr_accessor :is_being_aggregated
26
28
 
27
29
  attr_accessor :status
@@ -37,6 +39,7 @@ module Atrium
37
39
  :'guid' => :'guid',
38
40
  :'has_processed_accounts' => :'has_processed_accounts',
39
41
  :'has_processed_transactions' => :'has_processed_transactions',
42
+ :'is_authenticated' => :'is_authenticated',
40
43
  :'is_being_aggregated' => :'is_being_aggregated',
41
44
  :'status' => :'status',
42
45
  :'successfully_aggregated_at' => :'successfully_aggregated_at'
@@ -52,6 +55,7 @@ module Atrium
52
55
  :'guid' => :'String',
53
56
  :'has_processed_accounts' => :'BOOLEAN',
54
57
  :'has_processed_transactions' => :'BOOLEAN',
58
+ :'is_authenticated' => :'BOOLEAN',
55
59
  :'is_being_aggregated' => :'BOOLEAN',
56
60
  :'status' => :'String',
57
61
  :'successfully_aggregated_at' => :'String'
@@ -92,6 +96,10 @@ module Atrium
92
96
  self.has_processed_transactions = attributes[:'has_processed_transactions']
93
97
  end
94
98
 
99
+ if attributes.has_key?(:'is_authenticated')
100
+ self.is_authenticated = attributes[:'is_authenticated']
101
+ end
102
+
95
103
  if attributes.has_key?(:'is_being_aggregated')
96
104
  self.is_being_aggregated = attributes[:'is_being_aggregated']
97
105
  end
@@ -129,6 +137,7 @@ module Atrium
129
137
  guid == o.guid &&
130
138
  has_processed_accounts == o.has_processed_accounts &&
131
139
  has_processed_transactions == o.has_processed_transactions &&
140
+ is_authenticated == o.is_authenticated &&
132
141
  is_being_aggregated == o.is_being_aggregated &&
133
142
  status == o.status &&
134
143
  successfully_aggregated_at == o.successfully_aggregated_at
@@ -143,7 +152,7 @@ module Atrium
143
152
  # Calculates hash code according to all attributes.
144
153
  # @return [Fixnum] Hash code
145
154
  def hash
146
- [aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_transactions, is_being_aggregated, status, successfully_aggregated_at].hash
155
+ [aggregated_at, challenges, connection_status, guid, has_processed_accounts, has_processed_transactions, is_authenticated, is_being_aggregated, status, successfully_aggregated_at].hash
147
156
  end
148
157
 
149
158
  # Builds the object from hash
@@ -7,5 +7,5 @@
7
7
  =end
8
8
 
9
9
  module Atrium
10
- VERSION = '2.8.0'
10
+ VERSION = '2.8.1'
11
11
  end
@@ -63,6 +63,12 @@ describe 'MemberConnectionStatus' do
63
63
  end
64
64
  end
65
65
 
66
+ describe 'test attribute "is_authenticated"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
69
+ end
70
+ end
71
+
66
72
  describe 'test attribute "is_being_aggregated"' do
67
73
  it 'should work' do
68
74
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
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.8.0
4
+ version: 2.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-15 00:00:00.000000000 Z
11
+ date: 2019-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus