stbaldricks 10.6.0 → 10.6.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.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/lib/stbaldricks/configuration.rb +1 -1
  3. data/lib/stbaldricks/entities/batch.rb +2 -2
  4. data/lib/stbaldricks/entities/challenge.rb +4 -4
  5. data/lib/stbaldricks/entities/challenger.rb +2 -2
  6. data/lib/stbaldricks/entities/challenger/model_type.rb +2 -0
  7. data/lib/stbaldricks/entities/contact.rb +1 -1
  8. data/lib/stbaldricks/entities/deduplicator_match.rb +5 -5
  9. data/lib/stbaldricks/entities/donation.rb +3 -3
  10. data/lib/stbaldricks/entities/donation/donor_type.rb +2 -0
  11. data/lib/stbaldricks/entities/donation/how_created.rb +2 -0
  12. data/lib/stbaldricks/entities/donation/payment_gateway.rb +2 -0
  13. data/lib/stbaldricks/entities/donation/payment_type.rb +2 -0
  14. data/lib/stbaldricks/entities/donation/promo_code.rb +2 -0
  15. data/lib/stbaldricks/entities/donation/recipient_type.rb +2 -0
  16. data/lib/stbaldricks/entities/donation/special_donation_type.rb +2 -0
  17. data/lib/stbaldricks/entities/donation/status.rb +2 -0
  18. data/lib/stbaldricks/entities/donation/submitter_type.rb +2 -0
  19. data/lib/stbaldricks/entities/event.rb +9 -9
  20. data/lib/stbaldricks/entities/event/fund_relationship_type.rb +2 -0
  21. data/lib/stbaldricks/entities/event/how_created.rb +2 -0
  22. data/lib/stbaldricks/entities/event/promo_code.rb +2 -0
  23. data/lib/stbaldricks/entities/event/status.rb +2 -0
  24. data/lib/stbaldricks/entities/event/sub_type.rb +2 -0
  25. data/lib/stbaldricks/entities/event/type.rb +2 -0
  26. data/lib/stbaldricks/entities/event_application/model_type.rb +2 -0
  27. data/lib/stbaldricks/entities/event_application/status.rb +2 -0
  28. data/lib/stbaldricks/entities/fundraiser.rb +20 -20
  29. data/lib/stbaldricks/entities/international_partner.rb +2 -2
  30. data/lib/stbaldricks/entities/kid.rb +62 -62
  31. data/lib/stbaldricks/entities/kid_honor.rb +4 -4
  32. data/lib/stbaldricks/entities/lib/address.rb +2 -2
  33. data/lib/stbaldricks/entities/lib/alternate_shipping_address.rb +2 -2
  34. data/lib/stbaldricks/entities/lib/email_address.rb +2 -2
  35. data/lib/stbaldricks/entities/lib/fundraising_page.rb +1 -1
  36. data/lib/stbaldricks/entities/lib/payment.rb +14 -14
  37. data/lib/stbaldricks/entities/lib/phone.rb +3 -3
  38. data/lib/stbaldricks/entities/lib/third_party_media.rb +2 -2
  39. data/lib/stbaldricks/entities/lib/top_level.rb +2 -2
  40. data/lib/stbaldricks/entities/memorial.rb +2 -2
  41. data/lib/stbaldricks/entities/message.rb +8 -8
  42. data/lib/stbaldricks/entities/organization.rb +21 -21
  43. data/lib/stbaldricks/entities/page.rb +2 -2
  44. data/lib/stbaldricks/entities/participant.rb +42 -42
  45. data/lib/stbaldricks/entities/person.rb +96 -96
  46. data/lib/stbaldricks/entities/photo.rb +25 -25
  47. data/lib/stbaldricks/entities/recurring_gift.rb +18 -18
  48. data/lib/stbaldricks/entities/search.rb +8 -8
  49. data/lib/stbaldricks/entities/shave_schedule.rb +2 -2
  50. data/lib/stbaldricks/entities/team.rb +14 -14
  51. data/lib/stbaldricks/entities/user.rb +7 -5
  52. data/lib/stbaldricks/enums/cancer_types.rb +2 -0
  53. data/lib/stbaldricks/enums/country.rb +2 -0
  54. data/lib/stbaldricks/enums/league_status.rb +2 -0
  55. data/lib/stbaldricks/enums/model_type.rb +2 -0
  56. data/lib/stbaldricks/enums/permission_model_type.rb +2 -0
  57. data/lib/stbaldricks/enums/province.rb +2 -0
  58. data/lib/stbaldricks/enums/state.rb +2 -0
  59. data/lib/stbaldricks/enums/top_level_category_type.rb +2 -0
  60. data/lib/stbaldricks/log.rb +2 -0
  61. data/lib/stbaldricks/patches/string.rb +1 -1
  62. data/lib/stbaldricks/version.rb +1 -1
  63. metadata +74 -74
@@ -93,34 +93,34 @@ module SBF
93
93
  end
94
94
 
95
95
  module Category
96
- SHAVEE_AFTER = 'shavee_after'
97
- SHAVEE_BEFORE = 'shavee_before'
98
- KID = 'kid'
99
- PARTICIPANT = 'participant'
100
- TEAM_LOGO = 'team_logo'
101
- VENUE_LOGO = 'venue_logo'
102
- USER_AVATAR = 'user_avatar'
103
- GALLERY = 'gallery'
104
- DEFAULT_PHOTO = 'default_photo'
105
- CAMPAIGN_LOGO = 'campaign_logo'
106
- FUND_LOGO = 'fund_logo'
107
- FUNDRAISER_LOGO = 'fundraiser_logo'
108
- EVENT_SUPPORTER_LOGO = 'event_supporter_logo'
109
- MEMORIAL = 'memorial'
110
- COVER_ORIGINAL = 'cover_original'
111
- COVER_DEFAULT = 'cover_default'
96
+ SHAVEE_AFTER = 'shavee_after'.freeze
97
+ SHAVEE_BEFORE = 'shavee_before'.freeze
98
+ KID = 'kid'.freeze
99
+ PARTICIPANT = 'participant'.freeze
100
+ TEAM_LOGO = 'team_logo'.freeze
101
+ VENUE_LOGO = 'venue_logo'.freeze
102
+ USER_AVATAR = 'user_avatar'.freeze
103
+ GALLERY = 'gallery'.freeze
104
+ DEFAULT_PHOTO = 'default_photo'.freeze
105
+ CAMPAIGN_LOGO = 'campaign_logo'.freeze
106
+ FUND_LOGO = 'fund_logo'.freeze
107
+ FUNDRAISER_LOGO = 'fundraiser_logo'.freeze
108
+ EVENT_SUPPORTER_LOGO = 'event_supporter_logo'.freeze
109
+ MEMORIAL = 'memorial'.freeze
110
+ COVER_ORIGINAL = 'cover_original'.freeze
111
+ COVER_DEFAULT = 'cover_default'.freeze
112
112
  end
113
113
 
114
114
  module ModelType
115
- EVENT = 'event'
116
- TEAM = 'team'
117
- PARTICIPANT = 'participant'
118
- FUNDRAISER = 'fundraiser'
119
- KID = 'kid'
120
- FUND = 'fund'
121
- CAMPAIGN = 'campaign'
122
- EVENT_SUPPORTER = 'event_supporter'
123
- MEMORIAL = 'memorial'
115
+ EVENT = 'event'.freeze
116
+ TEAM = 'team'.freeze
117
+ PARTICIPANT = 'participant'.freeze
118
+ FUNDRAISER = 'fundraiser'.freeze
119
+ KID = 'kid'.freeze
120
+ FUND = 'fund'.freeze
121
+ CAMPAIGN = 'campaign'.freeze
122
+ EVENT_SUPPORTER = 'event_supporter'.freeze
123
+ MEMORIAL = 'memorial'.freeze
124
124
  end
125
125
 
126
126
  class FullParticipant < SBF::Client::FullParticipant
@@ -28,31 +28,31 @@ module SBF
28
28
  attr_accessor :id
29
29
 
30
30
  module Status
31
- UNKNOWN = 'unknown'
32
- PAST_DUE = 'past_due'
33
- ACTIVE = 'active'
34
- CANCELED = 'canceled'
35
- PENDING = 'pending'
31
+ UNKNOWN = 'unknown'.freeze
32
+ PAST_DUE = 'past_due'.freeze
33
+ ACTIVE = 'active'.freeze
34
+ CANCELED = 'canceled'.freeze
35
+ PENDING = 'pending'.freeze
36
36
  end
37
37
 
38
38
  module RecipientType
39
- FUND = 'fund'
40
- EVENT = 'event'
41
- TEAM = 'team'
42
- PARTICIPANT = 'participant'
43
- FUNDRAISER = 'fundraiser'
44
- MEMORIAL = 'memorial'
39
+ FUND = 'fund'.freeze
40
+ EVENT = 'event'.freeze
41
+ TEAM = 'team'.freeze
42
+ PARTICIPANT = 'participant'.freeze
43
+ FUNDRAISER = 'fundraiser'.freeze
44
+ MEMORIAL = 'memorial'.freeze
45
45
  end
46
46
 
47
47
  module DonorType
48
- INDIVIDUAL = 'individual'
49
- BUSINESS = 'business'
50
- ORGANIZATION_FOUNDATION = 'foundation'
48
+ INDIVIDUAL = 'individual'.freeze
49
+ BUSINESS = 'business'.freeze
50
+ ORGANIZATION_FOUNDATION = 'foundation'.freeze
51
51
  end
52
52
 
53
53
  module FundingType
54
- CREDIT_CARD = 'credit_card'
55
- PAYPAL = 'paypal'
54
+ CREDIT_CARD = 'credit_card'.freeze
55
+ PAYPAL = 'paypal'.freeze
56
56
  end
57
57
 
58
58
  class FullParticipant < SBF::Client::FullParticipant
@@ -169,8 +169,8 @@ module SBF
169
169
  entity_attr_accessor :name_pieces, 'SBF::Client::NamePieces'
170
170
 
171
171
  module Type
172
- HONOR = 'honor'
173
- MEMORY = 'memory'
172
+ HONOR = 'honor'.freeze
173
+ MEMORY = 'memory'.freeze
174
174
  end
175
175
  end
176
176
  end
@@ -8,14 +8,14 @@ module SBF
8
8
  action :find
9
9
 
10
10
  module Type
11
- FUND = 'fund'
12
- CAMPAIGN = 'campaign'
13
- EVENT = 'event'
14
- TEAM = 'team'
15
- PARTICIPANT = 'participant'
16
- FUNDRAISER = 'fundraiser'
17
- KID = 'kid'
18
- MEMORIAL = 'memorial'
11
+ FUND = 'fund'.freeze
12
+ CAMPAIGN = 'campaign'.freeze
13
+ EVENT = 'event'.freeze
14
+ TEAM = 'team'.freeze
15
+ PARTICIPANT = 'participant'.freeze
16
+ FUNDRAISER = 'fundraiser'.freeze
17
+ KID = 'kid'.freeze
18
+ MEMORIAL = 'memorial'.freeze
19
19
  end
20
20
 
21
21
  module Status
@@ -27,8 +27,8 @@ module SBF
27
27
 
28
28
  class ShaveScheduleAssignment < SBF::Client::BaseEntity
29
29
  module Type
30
- RESERVED = 'reserved'
31
- SHAVEE = 'shavee'
30
+ RESERVED = 'reserved'.freeze
31
+ SHAVEE = 'shavee'.freeze
32
32
  end
33
33
 
34
34
  attr_accessor :id
@@ -20,26 +20,26 @@ module SBF
20
20
  disallow_instantiation
21
21
 
22
22
  module Status
23
- ACTIVE = 'active'
24
- PENDING = 'pending'
25
- SUSPENDED = 'suspended'
23
+ ACTIVE = 'active'.freeze
24
+ PENDING = 'pending'.freeze
25
+ SUSPENDED = 'suspended'.freeze
26
26
  end
27
27
 
28
28
  module HowCreated
29
- WEBSITE = 'website'
30
- ADMIN_IMPORT = 'admin_import'
31
- ADMIN_CONTROL_PANEL = 'admin_control_panel'
32
- MOBILE = 'mobile'
33
- PARTICIPANT_IMPORT = 'participant_import'
29
+ WEBSITE = 'website'.freeze
30
+ ADMIN_IMPORT = 'admin_import'.freeze
31
+ ADMIN_CONTROL_PANEL = 'admin_control_panel'.freeze
32
+ MOBILE = 'mobile'.freeze
33
+ PARTICIPANT_IMPORT = 'participant_import'.freeze
34
34
  end
35
35
 
36
36
  module FundRelationshipType
37
- NO_ASSOCIATION = 'no_association'
38
- INDIRECT_ONE = 'indirect_one'
39
- INDIRECT_MULTIPLE = 'indirect_multiple'
40
- DIRECT = 'direct'
41
- DIRECT_BUT_LOCKED = 'direct_but_locked'
42
- INHERITED_FROM_EVENT = 'inherited_from_event'
37
+ NO_ASSOCIATION = 'no_association'.freeze
38
+ INDIRECT_ONE = 'indirect_one'.freeze
39
+ INDIRECT_MULTIPLE = 'indirect_multiple'.freeze
40
+ DIRECT = 'direct'.freeze
41
+ DIRECT_BUT_LOCKED = 'direct_but_locked'.freeze
42
+ INHERITED_FROM_EVENT = 'inherited_from_event'.freeze
43
43
  end
44
44
 
45
45
  class Photos < SBF::Client::BaseEntity
@@ -20,20 +20,22 @@ module SBF
20
20
  cache_id_from_hash ->(h) { [h[:person][:id], h[:type]] }
21
21
 
22
22
  module AccessScope
23
- ADMIN = 'admin'
24
- MEMBER = 'member'
23
+ ADMIN = 'admin'.freeze
24
+ MEMBER = 'member'.freeze
25
25
  end
26
26
 
27
27
  module ProviderType
28
- SBF = 'sbf'
29
- FACEBOOK = 'facebook'
30
- TWITTER = 'twitter'
28
+ SBF = 'sbf'.freeze
29
+ FACEBOOK = 'facebook'.freeze
30
+ TWITTER = 'twitter'.freeze
31
31
 
32
+ # rubocop:disable Style/MutableConstant
32
33
  IDS = {
33
34
  SBF => 1,
34
35
  FACEBOOK => 2,
35
36
  TWITTER => 3
36
37
  }
38
+ # rubocop:enable Style/MutableConstant
37
39
  IDS.default = 0
38
40
  IDS.freeze
39
41
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module CancerType
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module Country
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module LeagueStatus
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module ModelType
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module PermissionModelType
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module Province
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module State
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module SBF
2
4
  module Client
3
5
  module TopLevelCategoryType
@@ -6,7 +6,9 @@ module SBF
6
6
  class LOG
7
7
  include Singleton
8
8
 
9
+ # rubocop:disable Style/MutableConstant
9
10
  REQUIRED_METHODS = %i(debug info warn error fatal unknown add level)
11
+ # rubocop:enable Style/MutableConstant
10
12
 
11
13
  # rubocop:disable Style/MethodMissingSuper, Style/MissingRespondToMissing
12
14
  def self.method_missing(sym, *args, &block)
@@ -5,7 +5,7 @@ class String
5
5
  ID_REGEX = Regexp.new('(^|_)i_d')
6
6
  UUID_REGEX = Regexp.new('(^|_)u_u_id')
7
7
  URL_REGEX = Regexp.new('(^|_)u_r_l')
8
- MODULE_SEPARATOR = '::'
8
+ MODULE_SEPARATOR = '::'.freeze
9
9
 
10
10
  def camel_case
11
11
  x = split('_').map do |e|
@@ -1,5 +1,5 @@
1
1
  module SBF
2
2
  module Client
3
- VERSION = '10.6.0'
3
+ VERSION = '10.6.1'.freeze
4
4
  end
5
5
  end
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: 10.6.0
4
+ version: 10.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-29 00:00:00.000000000 Z
11
+ date: 2020-06-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -562,98 +562,98 @@ specification_version: 4
562
562
  summary: St. Baldrick's Foundation Ruby Client Library
563
563
  test_files:
564
564
  - lib/stbaldricks_factories.rb
565
- - spec/factories/collection.rb
566
- - spec/factories/user.rb
567
- - spec/factories/organization/addresses.rb
568
- - spec/factories/organization/email_addresses.rb
569
- - spec/factories/organization/phone_numbers.rb
570
- - spec/factories/search_participant.rb
571
- - spec/factories/location.rb
572
- - spec/factories/email_address.rb
573
- - spec/factories/grant_institution.rb
574
565
  - spec/factories/response.rb
575
- - spec/factories/fundraising_page.rb
566
+ - spec/factories/contact.rb
576
567
  - spec/factories/grant.rb
568
+ - spec/factories/lib/faker_patch.rb
569
+ - spec/factories/lib/helpers.rb
570
+ - spec/factories/disease.rb
571
+ - spec/factories/permissions.rb
572
+ - spec/factories/event_supporter.rb
577
573
  - spec/factories/campaign.rb
578
- - spec/factories/donor.rb
579
- - spec/factories/kid_institution.rb
580
- - spec/factories/shave_schedule.rb
581
- - spec/factories/donation/participant.rb
582
- - spec/factories/person/addresses.rb
583
- - spec/factories/person/email_addresses.rb
584
- - spec/factories/person/policies.rb
585
- - spec/factories/person/phone_numbers.rb
586
- - spec/factories/photo.rb
587
- - spec/factories/event_application.rb
588
- - spec/factories/kid.rb
589
- - spec/factories/event.rb
590
- - spec/factories/donation.rb
591
- - spec/factories/kid_honor.rb
592
- - spec/factories/message.rb
593
- - spec/factories/memorial/photos.rb
594
- - spec/factories/memorial/tribute.rb
595
- - spec/factories/memorial/totals.rb
596
- - spec/factories/photos.rb
574
+ - spec/factories/team/rankings/ranking.rb
575
+ - spec/factories/team/rankings.rb
576
+ - spec/factories/team/totals.rb
577
+ - spec/factories/team/photos.rb
578
+ - spec/factories/search_event.rb
579
+ - spec/factories/shave_schedule/time_selection_permissions.rb
597
580
  - spec/factories/kid/custom_institution.rb
598
- - spec/factories/phone.rb
599
- - spec/factories/campaign/totals.rb
581
+ - spec/factories/fundraiser.rb
582
+ - spec/factories/search_kid.rb
583
+ - spec/factories/photo.rb
584
+ - spec/factories/donor.rb
600
585
  - spec/factories/page.rb
601
586
  - spec/factories/newsletter_recipient.rb
602
- - spec/factories/memorial.rb
603
- - spec/factories/institution.rb
604
- - spec/factories/participant.rb
605
- - spec/factories/address.rb
606
- - spec/factories/contact_group.rb
607
- - spec/factories/venue.rb
608
- - spec/factories/permissions.rb
587
+ - spec/factories/email_address.rb
588
+ - spec/factories/recurring_gift.rb
589
+ - spec/factories/shave_schedule.rb
590
+ - spec/factories/grant_institution.rb
591
+ - spec/factories/message.rb
592
+ - spec/factories/collection.rb
609
593
  - spec/factories/participant/rankings/ranking.rb
610
- - spec/factories/participant/photos.rb
611
- - spec/factories/participant/roles.rb
594
+ - spec/factories/participant/policies.rb
595
+ - spec/factories/participant/rankings.rb
612
596
  - spec/factories/participant/roles/role.rb
597
+ - spec/factories/participant/roles.rb
613
598
  - spec/factories/participant/totals.rb
614
- - spec/factories/participant/rankings.rb
615
- - spec/factories/participant/policies.rb
599
+ - spec/factories/participant/photos.rb
600
+ - spec/factories/campaign/totals.rb
601
+ - spec/factories/person/policies.rb
602
+ - spec/factories/person/email_addresses.rb
603
+ - spec/factories/person/phone_numbers.rb
604
+ - spec/factories/person/addresses.rb
616
605
  - spec/factories/diagnosis.rb
617
- - spec/factories/researcher.rb
618
- - spec/factories/contact.rb
619
- - spec/factories/organization.rb
620
- - spec/factories/search_fundraiser.rb
621
- - spec/factories/team.rb
622
- - spec/factories/event_supporter.rb
606
+ - spec/factories/address.rb
607
+ - spec/factories/venue.rb
608
+ - spec/factories/memorial.rb
609
+ - spec/factories/participant.rb
610
+ - spec/factories/challenge.rb
611
+ - spec/factories/fundraiser/policies.rb
612
+ - spec/factories/fundraiser/totals.rb
613
+ - spec/factories/fundraiser/photos.rb
623
614
  - spec/factories/challenger.rb
624
- - spec/factories/disease.rb
625
- - spec/factories/third_party_media.rb
626
- - spec/factories/search_kid.rb
627
- - spec/factories/lib/faker_patch.rb
628
- - spec/factories/lib/helpers.rb
629
615
  - spec/factories/treatment_status.rb
630
- - spec/factories/recurring_gift.rb
616
+ - spec/factories/contact_group.rb
617
+ - spec/factories/person.rb
618
+ - spec/factories/third_party_media.rb
619
+ - spec/factories/search_team.rb
620
+ - spec/factories/search_participant.rb
621
+ - spec/factories/event.rb
622
+ - spec/factories/organization.rb
623
+ - spec/factories/institution.rb
624
+ - spec/factories/donation/participant.rb
631
625
  - spec/factories/name_pieces.rb
632
- - spec/factories/shave_schedule/time_selection_permissions.rb
633
626
  - spec/factories/event/coach_tracking/coaching_interactions.rb
634
627
  - spec/factories/event/coach_tracking/proceeds.rb
635
628
  - spec/factories/event/coach_tracking/plaque.rb
636
- - spec/factories/event/contacts.rb
637
- - spec/factories/event/photos.rb
638
629
  - spec/factories/event/contacts/contact.rb
639
630
  - spec/factories/event/contacts/name_pieces.rb
640
- - spec/factories/event/venue.rb
641
- - spec/factories/event/coach_tracking.rb
642
631
  - spec/factories/event/venue/location.rb
643
632
  - spec/factories/event/venue/social.rb
633
+ - spec/factories/event/coach_tracking.rb
634
+ - spec/factories/event/venue.rb
644
635
  - spec/factories/event/totals.rb
645
- - spec/factories/team/rankings/ranking.rb
646
- - spec/factories/team/photos.rb
647
- - spec/factories/team/totals.rb
648
- - spec/factories/team/rankings.rb
649
- - spec/factories/fundraiser/photos.rb
650
- - spec/factories/fundraiser/totals.rb
651
- - spec/factories/fundraiser/policies.rb
652
- - spec/factories/search_event.rb
653
- - spec/factories/person.rb
654
- - spec/factories/search_team.rb
655
- - spec/factories/fundraiser.rb
656
- - spec/factories/error.rb
636
+ - spec/factories/event/photos.rb
637
+ - spec/factories/event/contacts.rb
638
+ - spec/factories/event_application.rb
657
639
  - spec/factories/payment.rb
658
- - spec/factories/challenge.rb
640
+ - spec/factories/kid_institution.rb
641
+ - spec/factories/error.rb
642
+ - spec/factories/kid.rb
643
+ - spec/factories/organization/email_addresses.rb
644
+ - spec/factories/organization/phone_numbers.rb
645
+ - spec/factories/organization/addresses.rb
646
+ - spec/factories/search_fundraiser.rb
647
+ - spec/factories/kid_honor.rb
648
+ - spec/factories/photos.rb
649
+ - spec/factories/phone.rb
650
+ - spec/factories/fundraising_page.rb
651
+ - spec/factories/user.rb
652
+ - spec/factories/team.rb
659
653
  - spec/factories/fund.rb
654
+ - spec/factories/memorial/totals.rb
655
+ - spec/factories/memorial/photos.rb
656
+ - spec/factories/memorial/tribute.rb
657
+ - spec/factories/location.rb
658
+ - spec/factories/researcher.rb
659
+ - spec/factories/donation.rb