rock_rms 5.12.0 → 5.13.0
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 +4 -4
- data/lib/rock_rms/resources/recurring_donation.rb +3 -1
- data/lib/rock_rms/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d67ca6fa5ecea4ee2f92dcc85e4b54fa6c4821ddcf893516625ee20961ed03b3
|
|
4
|
+
data.tar.gz: cf5c11cf2dea23eed77eac210371c42bb0fe2b02edd0f185ef803288ce50893d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f92db38dffbc0c81591f6215b4d962c232dae33074a7ab35d3b6d9ec80855de719c3978928471af46ee11ab59aa60382def3a3f9d60cb1b8bcd7559c37c84acb
|
|
7
|
+
data.tar.gz: 7602db4a3e6b680d4faea4375ab5df60291dea623e0c5674a979b43659004488a690c88cbaf77374b122495418af7427f8a158b98c136c36508445db9f87aa71
|
|
@@ -48,12 +48,14 @@ module RockRMS
|
|
|
48
48
|
next_payment_date:,
|
|
49
49
|
transaction_code: nil,
|
|
50
50
|
payment_detail_id: nil,
|
|
51
|
-
active: nil
|
|
51
|
+
active: nil,
|
|
52
|
+
frequency: nil
|
|
52
53
|
)
|
|
53
54
|
options = { 'NextPaymentDate' => next_payment_date }
|
|
54
55
|
options['FinancialPaymentDetailId'] = payment_detail_id if payment_detail_id
|
|
55
56
|
options['TransactionCode'] = transaction_code if transaction_code
|
|
56
57
|
options['IsActive'] = active if !active.nil?
|
|
58
|
+
options['TransactionFrequencyValueId'] = RecurringFrequencies::RECURRING_FREQUENCIES[frequency] if !frequency.nil?
|
|
57
59
|
|
|
58
60
|
patch(recurring_donation_path(id), options)
|
|
59
61
|
end
|
data/lib/rock_rms/version.rb
CHANGED
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: 5.
|
|
4
|
+
version: 5.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Taylor Brooks
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -339,7 +339,7 @@ homepage: https://github.com/taylorbrooks/rock_rms
|
|
|
339
339
|
licenses:
|
|
340
340
|
- MIT
|
|
341
341
|
metadata: {}
|
|
342
|
-
post_install_message:
|
|
342
|
+
post_install_message:
|
|
343
343
|
rdoc_options: []
|
|
344
344
|
require_paths:
|
|
345
345
|
- lib
|
|
@@ -355,7 +355,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
355
355
|
version: '0'
|
|
356
356
|
requirements: []
|
|
357
357
|
rubygems_version: 3.1.4
|
|
358
|
-
signing_key:
|
|
358
|
+
signing_key:
|
|
359
359
|
specification_version: 4
|
|
360
360
|
summary: A Ruby wrapper for the Rock RMS API
|
|
361
361
|
test_files: []
|