atrium-ruby 2.8.3 → 2.8.4

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: 65befc6fc0c6c7c8ebaecd29ac064fc97169a7c04b0cb0dd87424a99f8f484a8
4
- data.tar.gz: 2f0dc4409e08e6329245b633d92252e5c173415cc74e4bc0e247b9ae23851693
3
+ metadata.gz: dfb0993147bf4c7081dcdafd342b21ee0d6899c0621a3481f3538927d874e394
4
+ data.tar.gz: 3ff88515ff6344a2ce4f6f9643bddc4e60c82f0c77cc1b80b482573c7e967f45
5
5
  SHA512:
6
- metadata.gz: 6f354f4adc11a0009afa5a83af8bb9b3d83a45f4f025ccc072cc11005f35d89d0827e8a17b358fc85d7b8666d2dca0264edfdd9b4d2e22dbfe4282e8c7700f5b
7
- data.tar.gz: 919020d49be4356d9442e328191c2a15d6b9e145a32567593457fe9ac6379ce0eb3ed741457245e378ecd7d0262f184e62536aee45de8489f9e6b294442588d1
6
+ metadata.gz: 8490bbcb3cd907cb6facfef8d3fcdfe514c1bcb4cf35da5cea1c2bce43531298217d789807b4a950d8e82c978472ee3d5fca9669461c0454abc35b2d0d357ce5
7
+ data.tar.gz: 8508d91958c58b477afa983615e11cace6835bd3ac2a4309f907cacb9604a9cd4a084e7bb26fb03bb6494b38aa1ff5b0f04fb1339ba8830813c389834e02e80c
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.3.gem
20
+ gem install ./atrium-ruby-2.8.4.gem
21
21
  ```
22
22
 
23
23
  Finally add this to the Gemfile:
24
24
 
25
- gem 'atrium-ruby', '~> 2.8.3'
25
+ gem 'atrium-ruby', '~> 2.8.4'
26
26
 
27
27
  ### Install from Git
28
28
 
@@ -6,6 +6,8 @@ Name | Type | Description | Notes
6
6
  **is_mobile_webview** | **BOOLEAN** | | [optional]
7
7
  **current_institution_code** | **String** | | [optional]
8
8
  **current_member_guid** | **String** | | [optional]
9
+ **disable_institution_search** | **BOOLEAN** | | [optional]
10
+ **mode** | **String** | | [optional]
9
11
  **ui_message_version** | **Float** | | [optional]
10
12
  **update_credentials** | **BOOLEAN** | | [optional]
11
13
 
@@ -16,6 +16,10 @@ module Atrium
16
16
 
17
17
  attr_accessor :current_member_guid
18
18
 
19
+ attr_accessor :disable_institution_search
20
+
21
+ attr_accessor :mode
22
+
19
23
  attr_accessor :ui_message_version
20
24
 
21
25
  attr_accessor :update_credentials
@@ -26,6 +30,8 @@ module Atrium
26
30
  :'is_mobile_webview' => :'is_mobile_webview',
27
31
  :'current_institution_code' => :'current_institution_code',
28
32
  :'current_member_guid' => :'current_member_guid',
33
+ :'disable_institution_search' => :'disable_institution_search',
34
+ :'mode' => :'mode',
29
35
  :'ui_message_version' => :'ui_message_version',
30
36
  :'update_credentials' => :'update_credentials'
31
37
  }
@@ -37,6 +43,8 @@ module Atrium
37
43
  :'is_mobile_webview' => :'BOOLEAN',
38
44
  :'current_institution_code' => :'String',
39
45
  :'current_member_guid' => :'String',
46
+ :'disable_institution_search' => :'BOOLEAN',
47
+ :'mode' => :'String',
40
48
  :'ui_message_version' => :'Float',
41
49
  :'update_credentials' => :'BOOLEAN'
42
50
  }
@@ -62,6 +70,14 @@ module Atrium
62
70
  self.current_member_guid = attributes[:'current_member_guid']
63
71
  end
64
72
 
73
+ if attributes.has_key?(:'disable_institution_search')
74
+ self.disable_institution_search = attributes[:'disable_institution_search']
75
+ end
76
+
77
+ if attributes.has_key?(:'mode')
78
+ self.mode = attributes[:'mode']
79
+ end
80
+
65
81
  if attributes.has_key?(:'ui_message_version')
66
82
  self.ui_message_version = attributes[:'ui_message_version']
67
83
  end
@@ -92,6 +108,8 @@ module Atrium
92
108
  is_mobile_webview == o.is_mobile_webview &&
93
109
  current_institution_code == o.current_institution_code &&
94
110
  current_member_guid == o.current_member_guid &&
111
+ disable_institution_search == o.disable_institution_search &&
112
+ mode == o.mode &&
95
113
  ui_message_version == o.ui_message_version &&
96
114
  update_credentials == o.update_credentials
97
115
  end
@@ -105,7 +123,7 @@ module Atrium
105
123
  # Calculates hash code according to all attributes.
106
124
  # @return [Fixnum] Hash code
107
125
  def hash
108
- [is_mobile_webview, current_institution_code, current_member_guid, ui_message_version, update_credentials].hash
126
+ [is_mobile_webview, current_institution_code, current_member_guid, disable_institution_search, mode, ui_message_version, update_credentials].hash
109
127
  end
110
128
 
111
129
  # Builds the object from hash
@@ -7,5 +7,5 @@
7
7
  =end
8
8
 
9
9
  module Atrium
10
- VERSION = '2.8.3'
10
+ VERSION = '2.8.4'
11
11
  end
@@ -45,6 +45,18 @@ describe 'ConnectWidgetRequestBody' do
45
45
  end
46
46
  end
47
47
 
48
+ describe 'test attribute "disable_institution_search"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "mode"' 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
+
48
60
  describe 'test attribute "ui_message_version"' do
49
61
  it 'should work' do
50
62
  # 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.3
4
+ version: 2.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - MX
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-11 00:00:00.000000000 Z
11
+ date: 2019-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus