stbaldricks 9.2.1.alpha.1 → 9.3.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/stbaldricks/entities/donation.rb +2 -1
- data/lib/stbaldricks/entities/donation/how_created.rb +1 -0
- data/lib/stbaldricks/entities/donation/payment_type.rb +1 -0
- data/lib/stbaldricks/entities/lib/payment.rb +9 -0
- data/lib/stbaldricks/entities/recurring_gift.rb +24 -0
- data/lib/stbaldricks/version.rb +1 -1
- metadata +77 -77
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58315bd0b3cd96554154c7f355a4c284b2b3a348898d13baac7699a681ffd5f4
|
4
|
+
data.tar.gz: e90b1b9da4697e003022681f2c9d6df94d5f3969f57814bca06f8e2622a7e0ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ac71566a6bca198bc4fa7693d6fc36810e9a03ae505fceb263c801dce54a90052d2500dcbc32f0b3addcbbc049f521d4b357759a3f7f551c30c8b43b9c004ae
|
7
|
+
data.tar.gz: b2700167869734319e399d57308493fef02bb8a0588776acc37148bb9f8b53720dfe744b9d4dc6aef3b45cdd0b88ea57e7201f4bb942f57c1cc358cc4d49142c
|
@@ -408,7 +408,8 @@ module SBF
|
|
408
408
|
[->(v) { v[:type] == SBF::Client::Payment::Type::NONCE }, 'SBF::Client::Payment::NonceDetails'],
|
409
409
|
[->(v) { v[:type] == SBF::Client::Payment::Type::WIRE_TRANSFER }, 'SBF::Client::Payment::WireTransferDetails'],
|
410
410
|
[->(v) { v[:type] == SBF::Client::Payment::Type::UNKNOWN }, 'SBF::Client::Payment::UnknownDetails'],
|
411
|
-
[->(v) { v[:type] == SBF::Client::Payment::Type::PAYPAL }, 'SBF::Client::Payment::PaypalDetails']
|
411
|
+
[->(v) { v[:type] == SBF::Client::Payment::Type::PAYPAL }, 'SBF::Client::Payment::PaypalDetails'],
|
412
|
+
[->(v) { v[:type] == SBF::Client::Payment::Type::FACEBOOK }, 'SBF::Client::Payment::FacebookDetails']
|
412
413
|
]
|
413
414
|
)
|
414
415
|
entity_attr_accessor :tribute, 'SBF::Client::Donation::Tribute'
|
@@ -13,6 +13,7 @@ module SBF
|
|
13
13
|
NONCE = 'nonce'
|
14
14
|
WIRE_TRANSFER = 'wire_transfer'
|
15
15
|
PAYPAL = 'paypal'
|
16
|
+
FACEBOOK = 'facebook'
|
16
17
|
end
|
17
18
|
|
18
19
|
module Gateway
|
@@ -98,6 +99,14 @@ module SBF
|
|
98
99
|
SBF::Client::Payment::Type::PAYPAL
|
99
100
|
end
|
100
101
|
end
|
102
|
+
|
103
|
+
class FacebookDetails < SBF::Client::Payment::Details
|
104
|
+
attr_accessor :number, :authorization_id
|
105
|
+
|
106
|
+
def type
|
107
|
+
SBF::Client::Payment::Type::FACEBOOK
|
108
|
+
end
|
109
|
+
end
|
101
110
|
end
|
102
111
|
end
|
103
112
|
end
|
@@ -41,6 +41,7 @@ module SBF
|
|
41
41
|
TEAM = 'team'
|
42
42
|
PARTICIPANT = 'participant'
|
43
43
|
FUNDRAISER = 'fundraiser'
|
44
|
+
MEMORIAL = 'memorial'
|
44
45
|
end
|
45
46
|
|
46
47
|
module DonorType
|
@@ -143,6 +144,24 @@ module SBF
|
|
143
144
|
SBF::Client::RecurringGift::RecipientType::FUND
|
144
145
|
end
|
145
146
|
end
|
147
|
+
|
148
|
+
class FullMemorial < SBF::Client::FullMemorial
|
149
|
+
include ModelTypeConcern
|
150
|
+
attr_reader :model_type
|
151
|
+
|
152
|
+
def model_type
|
153
|
+
SBF::Client::RecurringGift::RecipientType::MEMORIAL
|
154
|
+
end
|
155
|
+
end
|
156
|
+
|
157
|
+
class PartialMemorial < SBF::Client::PartialMemorial
|
158
|
+
include ModelTypeConcern
|
159
|
+
attr_reader :model_type
|
160
|
+
|
161
|
+
def model_type
|
162
|
+
SBF::Client::RecurringGift::RecipientType::MEMORIAL
|
163
|
+
end
|
164
|
+
end
|
146
165
|
end
|
147
166
|
|
148
167
|
class PartialRecurringGift < SBF::Client::RecurringGift
|
@@ -212,6 +231,11 @@ module SBF
|
|
212
231
|
->(v) { v[:model_type] == SBF::Client::RecurringGift::RecipientType::FUND },
|
213
232
|
'SBF::Client::RecurringGift::FullFund',
|
214
233
|
'SBF::Client::RecurringGift::PartialFund'
|
234
|
+
],
|
235
|
+
[
|
236
|
+
->(v) { v[:model_type] == SBF::Client::RecurringGift::RecipientType::MEMORIAL },
|
237
|
+
'SBF::Client::RecurringGift::FullMemorial',
|
238
|
+
'SBF::Client::RecurringGift::PartialMemorial'
|
215
239
|
]
|
216
240
|
],
|
217
241
|
optional: true
|
data/lib/stbaldricks/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stbaldricks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.
|
4
|
+
version: 9.3.0.alpha.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Firespring
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-10-
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -547,98 +547,98 @@ specification_version: 4
|
|
547
547
|
summary: St. Baldrick's Foundation Ruby Client Library
|
548
548
|
test_files:
|
549
549
|
- lib/stbaldricks_factories.rb
|
550
|
-
- spec/factories/
|
550
|
+
- spec/factories/organization/addresses.rb
|
551
|
+
- spec/factories/organization/email_addresses.rb
|
552
|
+
- spec/factories/organization/phone_numbers.rb
|
553
|
+
- spec/factories/payment.rb
|
554
|
+
- spec/factories/fundraising_page.rb
|
555
|
+
- spec/factories/donation/participant.rb
|
556
|
+
- spec/factories/challenge.rb
|
557
|
+
- spec/factories/kid_institution.rb
|
558
|
+
- spec/factories/memorial/totals.rb
|
559
|
+
- spec/factories/memorial/photos.rb
|
560
|
+
- spec/factories/memorial/tribute.rb
|
561
|
+
- spec/factories/search_kid.rb
|
551
562
|
- spec/factories/contact.rb
|
563
|
+
- spec/factories/researcher.rb
|
564
|
+
- spec/factories/photos.rb
|
565
|
+
- spec/factories/challenger.rb
|
566
|
+
- spec/factories/name_pieces.rb
|
567
|
+
- spec/factories/person/policies.rb
|
568
|
+
- spec/factories/person/addresses.rb
|
569
|
+
- spec/factories/person/email_addresses.rb
|
570
|
+
- spec/factories/person/phone_numbers.rb
|
571
|
+
- spec/factories/participant/policies.rb
|
572
|
+
- spec/factories/participant/totals.rb
|
573
|
+
- spec/factories/participant/photos.rb
|
574
|
+
- spec/factories/participant/roles/role.rb
|
575
|
+
- spec/factories/participant/rankings/ranking.rb
|
576
|
+
- spec/factories/participant/rankings.rb
|
577
|
+
- spec/factories/participant/roles.rb
|
578
|
+
- spec/factories/donation.rb
|
579
|
+
- spec/factories/third_party_media.rb
|
580
|
+
- spec/factories/search_team.rb
|
581
|
+
- spec/factories/permissions.rb
|
582
|
+
- spec/factories/photo.rb
|
583
|
+
- spec/factories/collection.rb
|
584
|
+
- spec/factories/campaign.rb
|
552
585
|
- spec/factories/grant.rb
|
553
|
-
- spec/factories/
|
554
|
-
- spec/factories/
|
586
|
+
- spec/factories/location.rb
|
587
|
+
- spec/factories/email_address.rb
|
555
588
|
- spec/factories/disease.rb
|
556
|
-
- spec/factories/
|
589
|
+
- spec/factories/participant.rb
|
590
|
+
- spec/factories/kid.rb
|
591
|
+
- spec/factories/search_participant.rb
|
557
592
|
- spec/factories/event_supporter.rb
|
558
|
-
- spec/factories/
|
559
|
-
- spec/factories/
|
560
|
-
- spec/factories/
|
561
|
-
- spec/factories/team/totals.rb
|
562
|
-
- spec/factories/team/photos.rb
|
593
|
+
- spec/factories/page.rb
|
594
|
+
- spec/factories/message.rb
|
595
|
+
- spec/factories/response.rb
|
563
596
|
- spec/factories/search_event.rb
|
564
|
-
- spec/factories/
|
565
|
-
- spec/factories/kid/custom_institution.rb
|
597
|
+
- spec/factories/event_application.rb
|
566
598
|
- spec/factories/fundraiser.rb
|
567
|
-
- spec/factories/
|
568
|
-
- spec/factories/
|
569
|
-
- spec/factories/
|
570
|
-
- spec/factories/
|
599
|
+
- spec/factories/team.rb
|
600
|
+
- spec/factories/memorial.rb
|
601
|
+
- spec/factories/diagnosis.rb
|
602
|
+
- spec/factories/team/totals.rb
|
603
|
+
- spec/factories/team/photos.rb
|
604
|
+
- spec/factories/team/rankings/ranking.rb
|
605
|
+
- spec/factories/team/rankings.rb
|
571
606
|
- spec/factories/newsletter_recipient.rb
|
572
|
-
- spec/factories/email_address.rb
|
573
|
-
- spec/factories/recurring_gift.rb
|
574
607
|
- spec/factories/shave_schedule.rb
|
575
|
-
- spec/factories/
|
576
|
-
- spec/factories/message.rb
|
577
|
-
- spec/factories/collection.rb
|
578
|
-
- spec/factories/participant/rankings/ranking.rb
|
579
|
-
- spec/factories/participant/policies.rb
|
580
|
-
- spec/factories/participant/rankings.rb
|
581
|
-
- spec/factories/participant/roles/role.rb
|
582
|
-
- spec/factories/participant/roles.rb
|
583
|
-
- spec/factories/participant/totals.rb
|
584
|
-
- spec/factories/participant/photos.rb
|
608
|
+
- spec/factories/organization.rb
|
585
609
|
- spec/factories/campaign/totals.rb
|
586
|
-
- spec/factories/
|
587
|
-
- spec/factories/
|
588
|
-
- spec/factories/
|
589
|
-
- spec/factories/
|
590
|
-
- spec/factories/
|
591
|
-
- spec/factories/
|
592
|
-
- spec/factories/
|
593
|
-
- spec/factories/
|
594
|
-
- spec/factories/participant.rb
|
595
|
-
- spec/factories/challenge.rb
|
610
|
+
- spec/factories/lib/helpers.rb
|
611
|
+
- spec/factories/lib/faker_patch.rb
|
612
|
+
- spec/factories/error.rb
|
613
|
+
- spec/factories/donor.rb
|
614
|
+
- spec/factories/contact_group.rb
|
615
|
+
- spec/factories/recurring_gift.rb
|
616
|
+
- spec/factories/person.rb
|
617
|
+
- spec/factories/treatment_status.rb
|
596
618
|
- spec/factories/fundraiser/policies.rb
|
597
619
|
- spec/factories/fundraiser/totals.rb
|
598
620
|
- spec/factories/fundraiser/photos.rb
|
599
|
-
- spec/factories/
|
600
|
-
- spec/factories/
|
601
|
-
- spec/factories/contact_group.rb
|
602
|
-
- spec/factories/person.rb
|
603
|
-
- spec/factories/third_party_media.rb
|
604
|
-
- spec/factories/search_team.rb
|
605
|
-
- spec/factories/search_participant.rb
|
606
|
-
- spec/factories/event.rb
|
607
|
-
- spec/factories/organization.rb
|
621
|
+
- spec/factories/venue.rb
|
622
|
+
- spec/factories/search_fundraiser.rb
|
608
623
|
- spec/factories/institution.rb
|
609
|
-
- spec/factories/
|
610
|
-
- spec/factories/
|
624
|
+
- spec/factories/grant_institution.rb
|
625
|
+
- spec/factories/address.rb
|
626
|
+
- spec/factories/phone.rb
|
627
|
+
- spec/factories/event/totals.rb
|
628
|
+
- spec/factories/event/photos.rb
|
629
|
+
- spec/factories/event/contacts/contact.rb
|
630
|
+
- spec/factories/event/contacts/name_pieces.rb
|
611
631
|
- spec/factories/event/coach_tracking/coaching_interactions.rb
|
612
632
|
- spec/factories/event/coach_tracking/proceeds.rb
|
613
633
|
- spec/factories/event/coach_tracking/plaque.rb
|
614
|
-
- spec/factories/event/
|
615
|
-
- spec/factories/event/contacts/name_pieces.rb
|
634
|
+
- spec/factories/event/coach_tracking.rb
|
616
635
|
- spec/factories/event/venue/location.rb
|
617
636
|
- spec/factories/event/venue/social.rb
|
618
|
-
- spec/factories/event/coach_tracking.rb
|
619
|
-
- spec/factories/event/venue.rb
|
620
|
-
- spec/factories/event/totals.rb
|
621
|
-
- spec/factories/event/photos.rb
|
622
637
|
- spec/factories/event/contacts.rb
|
623
|
-
- spec/factories/
|
624
|
-
- spec/factories/payment.rb
|
625
|
-
- spec/factories/kid_institution.rb
|
626
|
-
- spec/factories/error.rb
|
627
|
-
- spec/factories/kid.rb
|
628
|
-
- spec/factories/organization/email_addresses.rb
|
629
|
-
- spec/factories/organization/phone_numbers.rb
|
630
|
-
- spec/factories/organization/addresses.rb
|
631
|
-
- spec/factories/search_fundraiser.rb
|
632
|
-
- spec/factories/kid_honor.rb
|
633
|
-
- spec/factories/photos.rb
|
634
|
-
- spec/factories/phone.rb
|
635
|
-
- spec/factories/fundraising_page.rb
|
636
|
-
- spec/factories/user.rb
|
637
|
-
- spec/factories/team.rb
|
638
|
+
- spec/factories/event/venue.rb
|
638
639
|
- spec/factories/fund.rb
|
639
|
-
- spec/factories/
|
640
|
-
- spec/factories/
|
641
|
-
- spec/factories/
|
642
|
-
- spec/factories/
|
643
|
-
- spec/factories/
|
644
|
-
- spec/factories/donation.rb
|
640
|
+
- spec/factories/event.rb
|
641
|
+
- spec/factories/kid/custom_institution.rb
|
642
|
+
- spec/factories/shave_schedule/time_selection_permissions.rb
|
643
|
+
- spec/factories/user.rb
|
644
|
+
- spec/factories/kid_honor.rb
|