finapps 2.3.7 → 3.0.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
  SHA1:
3
- metadata.gz: fa46e2d5c4400f8118bfa2bfec92330574fd96f0
4
- data.tar.gz: f7d566d14145e831f36f9ae7c2d698044902322e
3
+ metadata.gz: b28eaaba505b38dbf47b8f9fb74e4bb1478d2a8a
4
+ data.tar.gz: fdf4b1abd598e3dab0efa6ba14956c7e45d381a3
5
5
  SHA512:
6
- metadata.gz: ef5a6691ff97b23e0bdb7dfdfd1104110f89ca88bd21a536cb54ed4c2651d212961464a152273dfd4057fd30d0fb4ec6213f6cff572b07bf4161668cfcc2d65f
7
- data.tar.gz: 42560e6de9ff8e43146e5f8f9d9a40ff5d816336f6ed14a2fcd6cd321ecc9cff0fdec15c2ce9e764d4614a44ab42ceefd2913ad7b2deb4183e595025710b1c26
6
+ metadata.gz: a93c7e1cd35d82a67ae70984fe08e20fa0b1e01ca3bd40c045301717c89d15a9606e1c9f3d6738d35a4b2c1979ff2d7aab90adb4bdc9f83945069d435379c609
7
+ data.tar.gz: 975f0c53282073c53ecf6b1dfc9a8790eaf306d536431dd734efe735332a1e14c0a9fa05a4c2cb759e699ceec7e13944c79f854b5d797d3c6afa138fe3846613
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.test_files = Dir['spec/**/*.rb']
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_runtime_dependency 'finapps_core', '~> 2.1', '>= 2.1.2'
24
+ spec.add_runtime_dependency 'finapps_core', '~> 3.0', '>= 3.0.1'
25
25
 
26
26
  spec.add_development_dependency 'bundler', '~> 1.15', '>= 1.15.4'
27
27
  spec.add_development_dependency 'codeclimate-test-reporter', '~> 1.0', '>= 1.0.8'
@@ -60,7 +60,7 @@ module FinApps
60
60
  end
61
61
 
62
62
  def search_query(term)
63
- {"last_name": {"$regex": term, "$options": 'i'}}
63
+ {"last_name": term}
64
64
  end
65
65
 
66
66
  def role_query(role)
@@ -17,7 +17,7 @@ module FinApps
17
17
  super params
18
18
  end
19
19
 
20
- # GET /v2/list/orders?page=1&requested=25&sort=-date
20
+ # GET /v3/list/orders?page=1&requested=25&sort=-date
21
21
  # :page - page number requested
22
22
  # :requested - number of results per page requested
23
23
  # :sort - sort order
@@ -62,27 +62,12 @@ module FinApps
62
62
 
63
63
  def search_query(term)
64
64
  {
65
- "$or": [{
66
- "public_id": {
67
- "$regex": "^#{term}",
68
- "$options": 'i'
69
- }
70
- }, {
71
- "applicant.last_name": {
72
- "$regex": term,
73
- "$options": 'i'
74
- }
75
- }, {
76
- "assignment.last_name": {
77
- "$regex": term,
78
- "$options": 'i'
79
- }
80
- }, {
81
- "requestor.reference_no": {
82
- "$regex": "^#{term}",
83
- "$options": 'i'
84
- }
85
- }]
65
+ "$or": [
66
+ {"public_id": term},
67
+ {"applicant.last_name": term},
68
+ {"assignment.last_name": term},
69
+ {"requestor.reference_no": term}
70
+ ]
86
71
  }
87
72
  end
88
73
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FinApps
4
- VERSION = '2.3.7'
4
+ VERSION = '3.0.1'
5
5
  end
@@ -34,8 +34,8 @@ RSpec.describe FinApps::REST::Operators, 'initialized with valid FinApps::Client
34
34
  it('returns no error messages') { expect(error_messages).to be_empty }
35
35
  it 'builds query and sends proper request' do
36
36
  list
37
- url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v2/operators?filter=%7B%22last_name%22:%7B%22$regex" \
38
- '%22:%22term%22,%22$options%22:%22i%22%7D,%22role%22:2%7D&page=2&requested=25&sort=date_created'
37
+ url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/operators?filter=%7B%22last_name%22:%22term%22," \
38
+ '%22role%22:2%7D&page=2&requested=25&sort=date_created'
39
39
  expect(WebMock).to have_requested(:get, url)
40
40
  end
41
41
  end
@@ -88,18 +88,16 @@ RSpec.describe FinApps::REST::Orders do
88
88
  it('returns no error messages') { expect(subject[ERROR_MESSAGES]).to be_empty }
89
89
  it 'builds query and sends proper request' do
90
90
  subject
91
- url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v2/orders?filter=%7B%22$or%22:%5B%7B%22public_id%22:" \
92
- '%7B%22$regex%22:%22%5Eterm%22,%22$options%22:%22i%22%7D%7D,%7B%22applicant.last_name%22:%7B%22$regex' \
93
- '%22:%22term%22,%22$options%22:%22i%22%7D%7D,%7B%22assignment.last_name%22:%7B%22$regex%22:%22term%22,' \
94
- '%22$options%22:%22i%22%7D%7D,%7B%22requestor.reference_no%22:%7B%22$regex%22:%22%5Eterm%22,%22$options' \
95
- '%22:%22i%22%7D%7D%5D,%22status%22:%7B%22$in%22:%5B1,7%5D%7D,%22assignment.operator_id%22:%22' \
96
- 'valid_operator%22%7D&page=2&requested=25&sort=status'
91
+ url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22$or%22:%5B%7B%22public_id%22" \
92
+ ':%22term%22%7D,%7B%22applicant.last_name%22:%22term%22%7D,%7B%22assignment.last_name%22:%22term%22%7D' \
93
+ ',%7B%22requestor.reference_no%22:%22term%22%7D%5D,%22status%22:%7B%22$in%22:%5B1,7%5D%7D,%22' \
94
+ 'assignment.operator_id%22:%22valid_operator%22%7D&page=2&requested=25&sort=status'
97
95
  expect(WebMock).to have_requested(:get, url)
98
96
  end
99
97
  it 'builds query and sends proper request with searchTerm/relation exclusivity' do
100
98
  params[:searchTerm] = nil
101
99
  subject
102
- url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v2/orders?filter=%7B%22status%22:%7B%22$in%22:%5B1," \
100
+ url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22status%22:%7B%22$in%22:%5B1," \
103
101
  '7%5D%7D,%22assignment.operator_id%22:%22valid_operator%22,%22$or%22:%5B%7B%22public_id%22:%7B%22$in' \
104
102
  '%22:%5B%22valid_order_id%22%5D%7D%7D,%7B%22original_order_id%22:%7B%22$in%22:%5B%22valid_order_id%22' \
105
103
  '%5D%7D%7D%5D%7D&page=2&requested=25&sort=status'
@@ -108,7 +106,7 @@ RSpec.describe FinApps::REST::Orders do
108
106
  it 'builds null assignment query properly when supplied w/ empty string' do
109
107
  FinApps::REST::Orders.new(client).list(assignment: '')
110
108
 
111
- url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v2/orders?filter=%7B%22assignment.operator_id%22:null%7D"
109
+ url = "#{FinAppsCore::REST::Defaults::DEFAULTS[:host]}/v3/orders?filter=%7B%22assignment.operator_id%22:null%7D"
112
110
  expect(WebMock).to have_requested(:get, url)
113
111
  end
114
112
  end
@@ -5,32 +5,32 @@ require 'sinatra/base'
5
5
  # the FakeApi class is used to mock API requests while testing.
6
6
  class FakeApi < Sinatra::Base
7
7
  # resource
8
- post('/v2/resources') { json_response 201, 'resource.json' }
9
- get('/v2/resources/:id') { json_response 200, 'resource.json' }
10
- get('/v2/resources') { json_response 200, 'resources.json' }
11
- put('/v2/resources') { json_response 201, 'resource.json' }
12
- delete('/v2/resources/:id') { status 202 }
8
+ post('/v3/resources') { json_response 201, 'resource.json' }
9
+ get('/v3/resources/:id') { json_response 200, 'resource.json' }
10
+ get('/v3/resources') { json_response 200, 'resources.json' }
11
+ put('/v3/resources') { json_response 201, 'resource.json' }
12
+ delete('/v3/resources/:id') { status 202 }
13
13
 
14
14
  # version
15
- get('/v2/version') { 'Version => 2.1.29-.20161208.172810' }
15
+ get('/v3/version') { 'Version => 2.1.29-.20161208.172810' }
16
16
 
17
17
  # orders
18
- post('/v2/orders/valid_token') { json_response 200, 'order_token.json' }
19
- post('/v2/orders/invalid_token') { json_response 404, 'resource_not_found.json' }
20
- get('/v2/orders/valid_id') { json_response 200, 'order.json' }
21
- get('/v2/orders') { json_response 200, 'orders.json' }
22
- get('/v2/orders/valid_id/report.:format') { json_response 200, 'order_report.json' }
23
- get('/v2/orders/invalid_id/report.:format') { json_response 404, 'resource_not_found.json' }
24
- get('/v2/orders/valid_id/status') { json_response 200, 'order_status.json' }
25
- get('/v2/orders/invalid_id/status') { json_response 404, 'resource_not_found.json' }
26
- put('/v2/orders/valid_id/cancel') { status 204 }
27
- put('/v2/orders/invalid_id/cancel') { json_response 404, 'resource_not_found.json' }
28
- put('/v2/orders/valid_id/notify') { status 204 }
29
- put('/v2/orders/invalid_id/notify') { json_response 404, 'resource_not_found.json' }
30
- put('/v2/orders/valid_id/refresh') { json_response 200, 'order_refresh.json' }
31
- put('/v2/orders/invalid_id/refresh') { json_response 404, 'resource_not_found.json' }
32
- put('/v2/orders/invalid_id') { json_response 404, 'resource_not_found.json' }
33
- put('/v2/orders/valid_id') do
18
+ post('/v3/orders/valid_token') { json_response 200, 'order_token.json' }
19
+ post('/v3/orders/invalid_token') { json_response 404, 'resource_not_found.json' }
20
+ get('/v3/orders/valid_id') { json_response 200, 'order.json' }
21
+ get('/v3/orders') { json_response 200, 'orders.json' }
22
+ get('/v3/orders/valid_id/report.:format') { json_response 200, 'order_report.json' }
23
+ get('/v3/orders/invalid_id/report.:format') { json_response 404, 'resource_not_found.json' }
24
+ get('/v3/orders/valid_id/status') { json_response 200, 'order_status.json' }
25
+ get('/v3/orders/invalid_id/status') { json_response 404, 'resource_not_found.json' }
26
+ put('/v3/orders/valid_id/cancel') { status 204 }
27
+ put('/v3/orders/invalid_id/cancel') { json_response 404, 'resource_not_found.json' }
28
+ put('/v3/orders/valid_id/notify') { status 204 }
29
+ put('/v3/orders/invalid_id/notify') { json_response 404, 'resource_not_found.json' }
30
+ put('/v3/orders/valid_id/refresh') { json_response 200, 'order_refresh.json' }
31
+ put('/v3/orders/invalid_id/refresh') { json_response 404, 'resource_not_found.json' }
32
+ put('/v3/orders/invalid_id') { json_response 404, 'resource_not_found.json' }
33
+ put('/v3/orders/valid_id') do
34
34
  request.body.rewind
35
35
  request_payload = JSON.parse request.body.read
36
36
  if request_payload['accounts'] == 'valid_account'
@@ -39,7 +39,7 @@ class FakeApi < Sinatra::Base
39
39
  json_response 400, 'invalid_request_body.json'
40
40
  end
41
41
  end
42
- post('/v2/orders') do
42
+ post('/v3/orders') do
43
43
  request.body.rewind
44
44
  request_payload = JSON.parse request.body.read
45
45
  if %w(applicant institutions product).all? {|s| request_payload.key? s }
@@ -50,57 +50,57 @@ class FakeApi < Sinatra::Base
50
50
  end
51
51
 
52
52
  # institutions
53
- get('/v2/institutions/site/valid_site_id/form') { json_response 200, 'institution_login_form.json' }
54
- get('/v2/institutions/site/invalid_site_id/form') { json_response 400, 'invalid_institution_id.json' }
55
- post('/v2/institutions/site/valid_site_id/add') { json_response 200, 'institution_add.json' }
56
- get('/v2/institutions/search/:search_term') { json_response 200, 'institutions_search_list.json' }
57
- get('/v2/institutions/routing/:routing_number') { json_response 200, 'institutions_routing_number.json' }
58
- get('/v2/institutions/site/:site_id') { json_response 200, 'institutions_routing_number.json' }
53
+ get('/v3/institutions/site/valid_site_id/form') { json_response 200, 'institution_login_form.json' }
54
+ get('/v3/institutions/site/invalid_site_id/form') { json_response 400, 'invalid_institution_id.json' }
55
+ post('/v3/institutions/site/valid_site_id/add') { json_response 200, 'institution_add.json' }
56
+ get('/v3/institutions/search/:search_term') { json_response 200, 'institutions_search_list.json' }
57
+ get('/v3/institutions/routing/:routing_number') { json_response 200, 'institutions_routing_number.json' }
58
+ get('/v3/institutions/site/:site_id') { json_response 200, 'institutions_routing_number.json' }
59
59
 
60
60
  # user institutions
61
- get('/v2/institutions/consumer/valid_id/status') { json_response 200, 'user_institution_status.json' }
62
- get('/v2/institutions/consumer/invalid_id/status') { json_response 400, 'invalid_user_institution_id.json' }
63
- get('/v2/institutions/consumer') { json_response 200, 'user_institutions_list.json' }
64
- get('/v2/institutions/consumer/valid_id') { json_response 200, 'user_institutions_show.json' }
65
- get('/v2/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
66
- put('/v2/institutions/consumer/refresh') { json_response 200, 'user_institutions_refresh_all.json' }
67
- put('/v2/institutions/consumer/valid_id/credentials') { json_response 200, 'institution_add.json' }
68
- put('/v2/institutions/consumer/invalid_id/credentials') { json_response 400, 'invalid_user_institution_id.json' }
69
- put('/v2/institutions/consumer/valid_id/mfa') { json_response 200, 'institution_add.json' }
70
- put('/v2/institutions/consumer/invalid_id/mfa') { json_response 400, 'invalid_user_institution_id.json' }
71
- delete('/v2/institutions/consumer/valid_id') { status 204 }
72
- delete('/v2/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
73
- get('/v2/institutions/consumer/valid_id/form') { json_response 200, 'institution_login_form.json' }
74
- get('/v2/institutions/consumer/invalid_id/form') { json_response 400, 'invalid_institution_id.json' }
75
- put('/v2/institutions/refresh') { json_response 200, 'user_institution_refresh.json' }
61
+ get('/v3/institutions/consumer/valid_id/status') { json_response 200, 'user_institution_status.json' }
62
+ get('/v3/institutions/consumer/invalid_id/status') { json_response 400, 'invalid_user_institution_id.json' }
63
+ get('/v3/institutions/consumer') { json_response 200, 'user_institutions_list.json' }
64
+ get('/v3/institutions/consumer/valid_id') { json_response 200, 'user_institutions_show.json' }
65
+ get('/v3/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
66
+ put('/v3/institutions/consumer/refresh') { json_response 200, 'user_institutions_refresh_all.json' }
67
+ put('/v3/institutions/consumer/valid_id/credentials') { json_response 200, 'institution_add.json' }
68
+ put('/v3/institutions/consumer/invalid_id/credentials') { json_response 400, 'invalid_user_institution_id.json' }
69
+ put('/v3/institutions/consumer/valid_id/mfa') { json_response 200, 'institution_add.json' }
70
+ put('/v3/institutions/consumer/invalid_id/mfa') { json_response 400, 'invalid_user_institution_id.json' }
71
+ delete('/v3/institutions/consumer/valid_id') { status 204 }
72
+ delete('/v3/institutions/consumer/invalid_id') { json_response 400, 'invalid_user_institution_id.json' }
73
+ get('/v3/institutions/consumer/valid_id/form') { json_response 200, 'institution_login_form.json' }
74
+ get('/v3/institutions/consumer/invalid_id/form') { json_response 400, 'invalid_institution_id.json' }
75
+ put('/v3/institutions/refresh') { json_response 200, 'user_institution_refresh.json' }
76
76
 
77
77
  # consumers
78
- get('/v2/consumers/valid_public_id') { json_response 200, 'user.json' }
79
- get('/v2/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
80
- put('/v2/consumers/valid_public_id') { status 204 }
81
- put('/v2/consumers/invalid_public_id') { json_response 400, 'invalid_user_id.json' }
82
- put('/v2/consumers/valid_public_id/password') { json_response 200, 'user.json' }
83
- put('/v2/consumers/invalid_public_id/password') { json_response 404, 'resource_not_found.json' }
84
- delete('/v2/consumers/valid_public_id') { status 204 }
85
- delete('/v2/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
78
+ get('/v3/consumers/valid_public_id') { json_response 200, 'user.json' }
79
+ get('/v3/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
80
+ put('/v3/consumers/valid_public_id') { status 204 }
81
+ put('/v3/consumers/invalid_public_id') { json_response 400, 'invalid_user_id.json' }
82
+ put('/v3/consumers/valid_public_id/password') { json_response 200, 'user.json' }
83
+ put('/v3/consumers/invalid_public_id/password') { json_response 404, 'resource_not_found.json' }
84
+ delete('/v3/consumers/valid_public_id') { status 204 }
85
+ delete('/v3/consumers/invalid_public_id') { json_response 404, 'resource_not_found.json' }
86
86
 
87
87
  # accounts
88
- get('/v2/accounts/valid_id/statement/valid_id') { json_response 200, 'fake_pdf_statement.json' }
89
- get('/v2/accounts/invalid_id/statement/valid_id') { json_response 404, 'resource_not_found.json' }
88
+ get('/v3/accounts/valid_id/statement/valid_id') { json_response 200, 'fake_pdf_statement.json' }
89
+ get('/v3/accounts/invalid_id/statement/valid_id') { json_response 404, 'resource_not_found.json' }
90
90
 
91
91
  # operators
92
- get('/v2/operators') { json_response 200, 'operator_list.json' }
93
- get('/v2/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
94
- get('/v2/operators/valid_id') { json_response 200, 'operator.json' }
95
- delete('/v2/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
96
- delete('/v2/operators/valid_id') { status 204 }
97
- post('/v2/operators/password/change') { json_response 200, 'operator.json' }
98
- put('/v2/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
99
- put('/v2/operators/valid_id') { json_response 200, 'operator.json' }
100
- put('/v2/operators/valid_id/assign') { status 204 }
101
- put('/v2/operators/invalid_id/assign') { json_response 404, 'resource_not_found.json' }
102
- post('/v2/operators/password/forgot') { json_response 200, 'operator_forgot_password.json' }
103
- post('/v2/operators/password/reset') do
92
+ get('/v3/operators') { json_response 200, 'operator_list.json' }
93
+ get('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
94
+ get('/v3/operators/valid_id') { json_response 200, 'operator.json' }
95
+ delete('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
96
+ delete('/v3/operators/valid_id') { status 204 }
97
+ post('/v3/operators/password/change') { json_response 200, 'operator.json' }
98
+ put('/v3/operators/invalid_id') { json_response 404, 'resource_not_found.json' }
99
+ put('/v3/operators/valid_id') { json_response 200, 'operator.json' }
100
+ put('/v3/operators/valid_id/assign') { status 204 }
101
+ put('/v3/operators/invalid_id/assign') { json_response 404, 'resource_not_found.json' }
102
+ post('/v3/operators/password/forgot') { json_response 200, 'operator_forgot_password.json' }
103
+ post('/v3/operators/password/reset') do
104
104
  request.body.rewind
105
105
  request_payload = JSON.parse request.body.read
106
106
  if request_payload['params'] == 'valid'
@@ -109,7 +109,7 @@ class FakeApi < Sinatra::Base
109
109
  json_response 400, 'invalid_request_body.json'
110
110
  end
111
111
  end
112
- post('/v2/operators') do
112
+ post('/v3/operators') do
113
113
  request.body.rewind
114
114
  request_payload = JSON.parse request.body.read
115
115
  if request_payload['params'] == 'valid'
@@ -120,7 +120,7 @@ class FakeApi < Sinatra::Base
120
120
  end
121
121
 
122
122
  # session
123
- post('/v2/login') do
123
+ post('/v3/login') do
124
124
  request.body.rewind
125
125
  request_payload = JSON.parse request.body.read
126
126
  if request_payload['password'] == 'valid_password'
@@ -129,12 +129,12 @@ class FakeApi < Sinatra::Base
129
129
  json_response(401, 'unauthorized.json')
130
130
  end
131
131
  end
132
- post('/v2/operators/login') { json_response 200, 'operator.json' }
132
+ post('/v3/operators/login') { json_response 200, 'operator.json' }
133
133
 
134
134
  # password resets
135
- post('/v2/tenant/valid_user_id/password') { json_response 200, 'password_reset_token.json' }
136
- post('/v2/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
137
- put('/v2/tenant/valid_user_id/password') do
135
+ post('/v3/tenant/valid_user_id/password') { json_response 200, 'password_reset_token.json' }
136
+ post('/v3/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
137
+ put('/v3/tenant/valid_user_id/password') do
138
138
  request.body.rewind
139
139
  request_payload = JSON.parse request.body.read
140
140
  if request_payload['token'] == 'valid_token'
@@ -143,21 +143,21 @@ class FakeApi < Sinatra::Base
143
143
  json_response(400, 'invalid_request_body.json')
144
144
  end
145
145
  end
146
- put('/v2/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
146
+ put('/v3/tenant/invalid_user_id/password') { json_response 404, 'resource_not_found.json' }
147
147
 
148
148
  # products
149
- get('/v2/products') { json_response 200, 'products.json' }
149
+ get('/v3/products') { json_response 200, 'products.json' }
150
150
 
151
151
  # relevance
152
- get('/v2/relevance/ruleset/names') { json_response 200, 'relevance_ruleset_names.json' }
152
+ get('/v3/relevance/ruleset/names') { json_response 200, 'relevance_ruleset_names.json' }
153
153
 
154
154
  # errors
155
- get('/v2/client_error') { json_response 400, 'error.json' }
156
- get('/v2/server_error') { status 500 }
157
- get('/v2/proxy_error') { status 407 }
155
+ get('/v3/client_error') { json_response 400, 'error.json' }
156
+ get('/v3/server_error') { status 500 }
157
+ get('/v3/proxy_error') { status 407 }
158
158
 
159
159
  # timeout
160
- get('/v2/orders/timeout') { status 419 }
160
+ get('/v3/orders/timeout') { status 419 }
161
161
 
162
162
  private
163
163
 
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.3.7
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erich Quintero
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-10 00:00:00.000000000 Z
11
+ date: 2018-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: finapps_core
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.1'
19
+ version: '3.0'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 2.1.2
22
+ version: 3.0.1
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '2.1'
29
+ version: '3.0'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 2.1.2
32
+ version: 3.0.1
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: bundler
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -315,34 +315,34 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
315
  version: '0'
316
316
  requirements: []
317
317
  rubyforge_project:
318
- rubygems_version: 2.6.14
318
+ rubygems_version: 2.6.13
319
319
  signing_key:
320
320
  specification_version: 4
321
321
  summary: FinApps REST API ruby client.
322
322
  test_files:
323
- - spec/spec_helper.rb
324
- - spec/spec_helpers/client.rb
325
- - spec/utils/query_builder_spec.rb
326
- - spec/support/fake_api.rb
327
- - spec/rest/order_reports_spec.rb
328
- - spec/rest/client_spec.rb
329
- - spec/rest/user_institutions_spec.rb
330
- - spec/rest/consumers_spec.rb
331
- - spec/rest/order_statuses_spec.rb
332
- - spec/rest/order_notifications_spec.rb
333
323
  - spec/rest/operators_password_resets_spec.rb
324
+ - spec/rest/products_spec.rb
325
+ - spec/rest/statements_spec.rb
326
+ - spec/rest/version_spec.rb
327
+ - spec/rest/user_institutions_forms_spec.rb
328
+ - spec/rest/consumers_spec.rb
329
+ - spec/rest/orders_spec.rb
330
+ - spec/rest/order_tokens_spec.rb
334
331
  - spec/rest/institutions_forms_spec.rb
335
332
  - spec/rest/operators_spec.rb
336
- - spec/rest/version_spec.rb
337
- - spec/rest/statements_spec.rb
338
- - spec/rest/order_assignments_spec.rb
339
- - spec/rest/order_refreshes_spec.rb
340
333
  - spec/rest/user_institutions_statuses_spec.rb
341
- - spec/rest/order_tokens_spec.rb
342
- - spec/rest/products_spec.rb
343
- - spec/rest/sessions_spec.rb
344
- - spec/rest/password_resets_spec.rb
334
+ - spec/rest/client_spec.rb
335
+ - spec/rest/user_institutions_spec.rb
345
336
  - spec/rest/consumer_institution_refreshes_spec.rb
346
- - spec/rest/user_institutions_forms_spec.rb
337
+ - spec/rest/password_resets_spec.rb
338
+ - spec/rest/order_reports_spec.rb
347
339
  - spec/rest/institutions_spec.rb
348
- - spec/rest/orders_spec.rb
340
+ - spec/rest/order_statuses_spec.rb
341
+ - spec/rest/order_refreshes_spec.rb
342
+ - spec/rest/order_notifications_spec.rb
343
+ - spec/rest/order_assignments_spec.rb
344
+ - spec/rest/sessions_spec.rb
345
+ - spec/support/fake_api.rb
346
+ - spec/utils/query_builder_spec.rb
347
+ - spec/spec_helpers/client.rb
348
+ - spec/spec_helper.rb