rock_rms 6.0.0 → 6.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d62174e5f930871eb31adf696902a1d2ce038aea33439609d0c1a62fa5db5163
|
4
|
+
data.tar.gz: 68b82d19df797b7f65f7b86c4465653f7702bda8ecfba54a5100aec5ca318d17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9776eaeb73263e684ccdb9f58fef16a92f2d17b1ae7f54f4f55df4026c0789346fcbf043e6c6757238130b6b61dc7bcdffbf02c26abc7442045581915e51d79f
|
7
|
+
data.tar.gz: 81bcc9e6cb711b4aef9627e0097c9067c080978eb182dd86edb399ba461be700ff8c3bc8901872e89020cd30c8698421b46822497b4e79c9f0e52194c7d5aa63
|
@@ -16,15 +16,17 @@ module RockRMS
|
|
16
16
|
fund_id: nil,
|
17
17
|
amount: nil,
|
18
18
|
fee_amount: nil,
|
19
|
+
fee_coverage_amount: nil,
|
19
20
|
entity_type_id: nil,
|
20
21
|
entity_id: nil
|
21
22
|
)
|
22
23
|
options = {}
|
23
|
-
options['AccountId']
|
24
|
-
options['Amount']
|
25
|
-
options['FeeAmount']
|
26
|
-
options['
|
27
|
-
options['
|
24
|
+
options['AccountId'] = fund_id if fund_id
|
25
|
+
options['Amount'] = amount if amount
|
26
|
+
options['FeeAmount'] = fee_amount if fee_amount
|
27
|
+
options['FeeCoverageAmount'] = fee_amount if fee_amount
|
28
|
+
options['EntityTypeId'] = entity_type_id if entity_type_id
|
29
|
+
options['EntityId'] = entity_id if entity_id
|
28
30
|
|
29
31
|
patch(transaction_detail_path(id), options)
|
30
32
|
end
|
data/lib/rock_rms/version.rb
CHANGED
@@ -34,24 +34,49 @@ RSpec.describe RockRMS::Client::TransactionDetail, type: :model do
|
|
34
34
|
end
|
35
35
|
|
36
36
|
describe '#update_transaction_detail' do
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
37
|
+
context 'simple' do
|
38
|
+
subject(:resource) do
|
39
|
+
client.update_transaction_detail(
|
40
|
+
123,
|
41
|
+
fund_id: 2,
|
42
|
+
)
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'returns nothing' do
|
46
|
+
expect(client.update_transaction_detail(123, fund_id: 5)).to eq(nil)
|
47
|
+
end
|
43
48
|
|
44
|
-
|
45
|
-
|
49
|
+
it 'passes options' do
|
50
|
+
expect(client).to receive(:patch)
|
51
|
+
.with(
|
52
|
+
'FinancialTransactionDetails/123',
|
53
|
+
'AccountId' => 2
|
54
|
+
).and_call_original
|
55
|
+
resource
|
56
|
+
end
|
46
57
|
end
|
47
58
|
|
48
|
-
|
49
|
-
|
50
|
-
.
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
59
|
+
context 'complex' do
|
60
|
+
subject(:resource) do
|
61
|
+
client.update_transaction_detail(
|
62
|
+
123,
|
63
|
+
fund_id: 2,
|
64
|
+
fee_amount: 50,
|
65
|
+
fee_coverage_amount: 50
|
66
|
+
)
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'passes options' do
|
70
|
+
expect(client).to receive(:patch)
|
71
|
+
.with(
|
72
|
+
'FinancialTransactionDetails/123',
|
73
|
+
'FeeAmount' => 50,
|
74
|
+
'FeeCoverageAmount' => 50,
|
75
|
+
'AccountId' => 2
|
76
|
+
).and_call_original
|
77
|
+
resource
|
78
|
+
end
|
55
79
|
end
|
80
|
+
|
56
81
|
end
|
57
82
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rock_rms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taylor Brooks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|