finapps 2.2.19 → 2.2.20

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
  SHA1:
3
- metadata.gz: 3d89d6d589716009d0126ae2e39742ccfd67000b
4
- data.tar.gz: 91a56bf9f76cf109f13e1740d1459baaf3c445e8
3
+ metadata.gz: 9610a61e7965c36b87af664ac1e86dcd3970dd07
4
+ data.tar.gz: 4776a8fac95ed1486e83b9e1e253a8c0a2ff5efe
5
5
  SHA512:
6
- metadata.gz: 54303fd65a238d89cb79d365163c61c81789e82b26b8211bab7f22b0b5f63af02a4a259f7d122cf0caa431399da2a46c4bdf9088da6c08a293c26d9d16a1e81f
7
- data.tar.gz: 235816aaef1ac0ee4b4a0ba28c41b7302cf2ee8a6a90ac514e8b4e447c1417934a79cc354fa902e367059acb27f2095036a24783f8d5df69bc34372337bbc3f6
6
+ metadata.gz: f0b15c4f7294e8f7bd3743c5bc86e336fb5545bd4643368e690e9f0ce02e31f16ae6e32fa9e32fc4899b91c3f7c7b8c08357896f81eee29497083897af7a7045
7
+ data.tar.gz: 2d65c6d31ee6e6d465939439eb8ccc3a80a6406c1ba7152924c372256d4eff029af3249dcc14ab7774cfc3f2ecdfeaa26e933ae40121916bdae02fc5f4f924a4
@@ -14,6 +14,7 @@ module FinApps
14
14
  order_statuses
15
15
  order_tokens
16
16
  operators
17
+ operators_password_resets
17
18
  password_resets
18
19
  products
19
20
  sessions
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module FinApps
3
- VERSION = '2.2.19'
3
+ VERSION = '2.2.20'
4
4
  end
@@ -71,7 +71,11 @@ RSpec.describe FinApps::REST::Client do
71
71
  it { expect(subject.password_resets).to be_an_instance_of(FinApps::REST::PasswordResets) }
72
72
  end
73
73
 
74
- describe '#password_resets' do
74
+ describe '#operators_password_resets' do
75
+ it { expect(subject.operators_password_resets).to be_an_instance_of(FinApps::REST::OperatorsPasswordResets) }
76
+ end
77
+
78
+ describe '#operators' do
75
79
  it { expect(subject.operators).to be_an_instance_of(FinApps::REST::Operators) }
76
80
  end
77
81
 
@@ -38,7 +38,6 @@ RSpec.describe FinApps::REST::Institutions do
38
38
  it('includes a org_display_name on the results') { expect(show[RESULTS]).to respond_to(:org_display_name) }
39
39
  end
40
40
 
41
-
42
41
  context 'when proper site_id is provided' do
43
42
  # A site_id has less than 9 digits
44
43
  let(:show) { subject.show('5') }
@@ -54,7 +54,6 @@ class FakeApi < Sinatra::Base
54
54
  get('/v2/institutions/routing/:routing_number') { json_response 200, 'institutions_routing_number.json' }
55
55
  get('/v2/institutions/site/:site_id') { json_response 200, 'institutions_routing_number.json' }
56
56
 
57
-
58
57
  # user institutions
59
58
  get('/v2/institutions/consumer/valid_id/status') { json_response 200, 'user_institution_status.json' }
60
59
  get('/v2/institutions/consumer/invalid_id/status') { json_response 400, 'invalid_user_institution_id.json' }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: finapps
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.19
4
+ version: 2.2.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-02 00:00:00.000000000 Z
11
+ date: 2017-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: finapps_core