stbaldricks 6.10.0.alpha.3 → 6.10.0.alpha.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd1a3f33338b694205ee48408332b6199df5ccee04ea1f01377e214eff925f61
|
4
|
+
data.tar.gz: 78e0e49753c10b621f8055d1d3acf0b214f72facca3059773519c42ace206d1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fda5e7a4537f72d93260d5ec3368fdf85c9c1d7607252c0c3d96cab0c9ddeca67bfc25bb0eaa2e001529e37e7675437799d2cf1c76a64c3db43ed661913ec5b3
|
7
|
+
data.tar.gz: 4c5e305d09a59f80efb0d5fd7aff82bb7063573051da85176ccf44a1a2a7143201c7dd106a7a638daa79d2daf6a977e8799b3af6c3b9e3c64c6d7b5824a45227
|
@@ -152,6 +152,7 @@ module SBF
|
|
152
152
|
class FullRecurringGift < SBF::Client::RecurringGift
|
153
153
|
attr_accessor :status
|
154
154
|
attr_accessor :amount
|
155
|
+
attr_accessor :fee_amount
|
155
156
|
attr_accessor :billing_day_of_month
|
156
157
|
attr_accessor :last_collected_at
|
157
158
|
attr_accessor :last_failed_at
|
@@ -236,6 +237,16 @@ module SBF
|
|
236
237
|
],
|
237
238
|
optional: true
|
238
239
|
)
|
240
|
+
|
241
|
+
def amount=(value)
|
242
|
+
amount_will_change!
|
243
|
+
@amount = value.to_s.gsub(/[^0-9\.]/, '').to_f
|
244
|
+
end
|
245
|
+
|
246
|
+
def fee_amount=(value)
|
247
|
+
fee_amount_will_change!
|
248
|
+
@fee_amount = value.to_s.gsub(/[^0-9\.]/, '').to_f
|
249
|
+
end
|
239
250
|
end
|
240
251
|
end
|
241
252
|
end
|
data/lib/stbaldricks/version.rb
CHANGED