stbaldricks 10.6.0.alpha.1 → 10.8.1.alpha.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/lib/stbaldricks/configuration.rb +1 -1
  3. data/lib/stbaldricks/endpoints/photo.rb +1 -3
  4. data/lib/stbaldricks/entities/batch.rb +2 -2
  5. data/lib/stbaldricks/entities/challenge.rb +4 -4
  6. data/lib/stbaldricks/entities/challenger.rb +2 -2
  7. data/lib/stbaldricks/entities/challenger/model_type.rb +2 -0
  8. data/lib/stbaldricks/entities/concerns/entity_response_concern.rb +2 -4
  9. data/lib/stbaldricks/entities/contact.rb +1 -1
  10. data/lib/stbaldricks/entities/deduplicator_match.rb +5 -5
  11. data/lib/stbaldricks/entities/donation.rb +3 -3
  12. data/lib/stbaldricks/entities/donation/donor_type.rb +2 -0
  13. data/lib/stbaldricks/entities/donation/how_created.rb +2 -0
  14. data/lib/stbaldricks/entities/donation/payment_gateway.rb +2 -0
  15. data/lib/stbaldricks/entities/donation/payment_type.rb +2 -0
  16. data/lib/stbaldricks/entities/donation/promo_code.rb +2 -0
  17. data/lib/stbaldricks/entities/donation/recipient_type.rb +2 -0
  18. data/lib/stbaldricks/entities/donation/special_donation_type.rb +2 -0
  19. data/lib/stbaldricks/entities/donation/status.rb +2 -0
  20. data/lib/stbaldricks/entities/donation/submitter_type.rb +2 -0
  21. data/lib/stbaldricks/entities/event.rb +10 -10
  22. data/lib/stbaldricks/entities/event/fund_relationship_type.rb +2 -0
  23. data/lib/stbaldricks/entities/event/how_created.rb +2 -0
  24. data/lib/stbaldricks/entities/event/promo_code.rb +2 -0
  25. data/lib/stbaldricks/entities/event/status.rb +2 -0
  26. data/lib/stbaldricks/entities/event/sub_type.rb +2 -0
  27. data/lib/stbaldricks/entities/event/type.rb +2 -0
  28. data/lib/stbaldricks/entities/event_application/model_type.rb +2 -0
  29. data/lib/stbaldricks/entities/event_application/status.rb +2 -0
  30. data/lib/stbaldricks/entities/fundraiser.rb +20 -20
  31. data/lib/stbaldricks/entities/international_partner.rb +2 -2
  32. data/lib/stbaldricks/entities/kid.rb +62 -62
  33. data/lib/stbaldricks/entities/kid_honor.rb +4 -4
  34. data/lib/stbaldricks/entities/lib/address.rb +2 -2
  35. data/lib/stbaldricks/entities/lib/alternate_shipping_address.rb +2 -2
  36. data/lib/stbaldricks/entities/lib/cacheable.rb +1 -3
  37. data/lib/stbaldricks/entities/lib/email_address.rb +2 -2
  38. data/lib/stbaldricks/entities/lib/fundraising_page.rb +1 -1
  39. data/lib/stbaldricks/entities/lib/payment.rb +14 -14
  40. data/lib/stbaldricks/entities/lib/phone.rb +3 -3
  41. data/lib/stbaldricks/entities/lib/third_party_media.rb +2 -2
  42. data/lib/stbaldricks/entities/lib/top_level.rb +2 -2
  43. data/lib/stbaldricks/entities/memorial.rb +2 -2
  44. data/lib/stbaldricks/entities/message.rb +8 -8
  45. data/lib/stbaldricks/entities/organization.rb +21 -21
  46. data/lib/stbaldricks/entities/page.rb +3 -5
  47. data/lib/stbaldricks/entities/participant.rb +42 -42
  48. data/lib/stbaldricks/entities/person.rb +96 -96
  49. data/lib/stbaldricks/entities/photo.rb +25 -25
  50. data/lib/stbaldricks/entities/recurring_gift.rb +23 -18
  51. data/lib/stbaldricks/entities/search.rb +8 -8
  52. data/lib/stbaldricks/entities/shave_schedule.rb +2 -2
  53. data/lib/stbaldricks/entities/team.rb +14 -14
  54. data/lib/stbaldricks/entities/user.rb +7 -5
  55. data/lib/stbaldricks/enums/cancer_types.rb +2 -0
  56. data/lib/stbaldricks/enums/country.rb +2 -0
  57. data/lib/stbaldricks/enums/league_status.rb +2 -0
  58. data/lib/stbaldricks/enums/model_type.rb +2 -0
  59. data/lib/stbaldricks/enums/permission_model_type.rb +2 -0
  60. data/lib/stbaldricks/enums/province.rb +2 -0
  61. data/lib/stbaldricks/enums/state.rb +2 -0
  62. data/lib/stbaldricks/enums/top_level_category_type.rb +2 -0
  63. data/lib/stbaldricks/log.rb +2 -0
  64. data/lib/stbaldricks/patches/string.rb +1 -1
  65. data/lib/stbaldricks/version.rb +1 -1
  66. data/spec/factories/kid.rb +1 -1
  67. metadata +89 -89
@@ -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,32 @@ 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
+ APPLEPAY = 'applepay'.freeze
55
+ CREDIT_CARD = 'credit_card'.freeze
56
+ PAYPAL = 'paypal'.freeze
56
57
  end
57
58
 
58
59
  class FullParticipant < SBF::Client::FullParticipant
@@ -169,8 +170,8 @@ module SBF
169
170
  entity_attr_accessor :name_pieces, 'SBF::Client::NamePieces'
170
171
 
171
172
  module Type
172
- HONOR = 'honor'
173
- MEMORY = 'memory'
173
+ HONOR = 'honor'.freeze
174
+ MEMORY = 'memory'.freeze
174
175
  end
175
176
  end
176
177
  end
@@ -212,6 +213,10 @@ module SBF
212
213
  [
213
214
  ->(v) { v[:type] == SBF::Client::Payment::Type::PAYPAL },
214
215
  'SBF::Client::Payment::PaypalDetails'
216
+ ],
217
+ [
218
+ ->(v) { v[:type] == SBF::Client::Payment::Type::APPLEPAY },
219
+ 'SBF::Client::Payment::ApplepayDetails'
215
220
  ]
216
221
  ]
217
222
  )
@@ -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.alpha.1'
3
+ VERSION = '10.8.1.alpha.1'.freeze
4
4
  end
5
5
  end
@@ -19,7 +19,7 @@ FactoryBot.define do
19
19
  after :build do |kid, evaluator|
20
20
  kid.name_pieces = build(:name_pieces) if unpopulated?(evaluator, :name_pieces)
21
21
  kid.address = build(:address) if unpopulated?(evaluator, :address)
22
- kid.diagnosis = build(:diagnosis) if unpopulated?(evaluator, :diagnosis)
22
+ kid.diagnosis = build(:diagnosis, date: Faker::Date.between(from: kid.birthday, to: DateTime.now).to_s) if unpopulated?(evaluator, :diagnosis)
23
23
  kid.treatment_status = build(:treatment_status) if unpopulated?(evaluator, :treatment_status)
24
24
  kid.web_page = build(:web_page) if unpopulated?(evaluator, :web_page)
25
25
  kid.photos = build(:photos) if unpopulated?(evaluator, :photos)
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.alpha.1
4
+ version: 10.8.1.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: 2020-05-18 00:00:00.000000000 Z
11
+ date: 2020-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 5.2.2
19
+ version: 5.2.4.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 5.2.2
26
+ version: 5.2.4.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: htmlentities
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 0.17.0
47
+ version: '0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 0.17.0
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: bundler-audit
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -224,16 +224,16 @@ dependencies:
224
224
  name: rubocop
225
225
  requirement: !ruby/object:Gem::Requirement
226
226
  requirements:
227
- - - '='
227
+ - - ">="
228
228
  - !ruby/object:Gem::Version
229
- version: 0.82.0
229
+ version: '0'
230
230
  type: :development
231
231
  prerelease: false
232
232
  version_requirements: !ruby/object:Gem::Requirement
233
233
  requirements:
234
- - - '='
234
+ - - ">="
235
235
  - !ruby/object:Gem::Version
236
- version: 0.82.0
236
+ version: '0'
237
237
  - !ruby/object:Gem::Dependency
238
238
  name: rubocop-performance
239
239
  requirement: !ruby/object:Gem::Requirement
@@ -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/memorial.rb
566
- - spec/factories/kid_honor.rb
567
- - spec/factories/donor.rb
568
- - spec/factories/newsletter_recipient.rb
569
- - spec/factories/recurring_gift.rb
570
- - spec/factories/contact.rb
571
- - spec/factories/team.rb
565
+ - spec/factories/organization/addresses.rb
566
+ - spec/factories/organization/email_addresses.rb
567
+ - spec/factories/organization/phone_numbers.rb
568
+ - spec/factories/payment.rb
569
+ - spec/factories/fundraising_page.rb
572
570
  - spec/factories/donation/participant.rb
573
- - spec/factories/phone.rb
574
- - spec/factories/response.rb
575
- - spec/factories/grant.rb
571
+ - spec/factories/challenge.rb
572
+ - spec/factories/kid_institution.rb
573
+ - spec/factories/memorial/totals.rb
574
+ - spec/factories/memorial/photos.rb
575
+ - spec/factories/memorial/tribute.rb
576
+ - spec/factories/search_kid.rb
577
+ - spec/factories/contact.rb
576
578
  - spec/factories/researcher.rb
577
- - spec/factories/payment.rb
578
- - spec/factories/collection.rb
579
- - spec/factories/fundraiser.rb
580
- - spec/factories/lib/helpers.rb
581
- - spec/factories/lib/faker_patch.rb
579
+ - spec/factories/photos.rb
580
+ - spec/factories/challenger.rb
581
+ - spec/factories/name_pieces.rb
582
+ - spec/factories/person/policies.rb
583
+ - spec/factories/person/addresses.rb
582
584
  - spec/factories/person/email_addresses.rb
583
585
  - spec/factories/person/phone_numbers.rb
584
- - spec/factories/person/addresses.rb
585
- - spec/factories/person/policies.rb
586
- - spec/factories/campaign.rb
587
- - spec/factories/page.rb
588
- - spec/factories/kid_institution.rb
589
- - spec/factories/participant.rb
590
- - spec/factories/donation.rb
591
- - spec/factories/event/venue/social.rb
592
- - spec/factories/event/venue/location.rb
593
- - spec/factories/event/coach_tracking/coaching_interactions.rb
594
- - spec/factories/event/coach_tracking/plaque.rb
595
- - spec/factories/event/coach_tracking/proceeds.rb
596
- - spec/factories/event/venue.rb
597
- - spec/factories/event/contacts/contact.rb
598
- - spec/factories/event/contacts/name_pieces.rb
599
- - spec/factories/event/photos.rb
600
- - spec/factories/event/coach_tracking.rb
601
- - spec/factories/event/contacts.rb
602
- - spec/factories/event/totals.rb
603
- - spec/factories/permissions.rb
604
- - spec/factories/location.rb
605
- - spec/factories/participant/rankings/ranking.rb
606
- - spec/factories/participant/rankings.rb
607
- - spec/factories/participant/photos.rb
608
586
  - spec/factories/participant/policies.rb
587
+ - spec/factories/participant/totals.rb
588
+ - spec/factories/participant/photos.rb
609
589
  - spec/factories/participant/roles/role.rb
590
+ - spec/factories/participant/rankings/ranking.rb
591
+ - spec/factories/participant/rankings.rb
610
592
  - spec/factories/participant/roles.rb
611
- - spec/factories/participant/totals.rb
612
- - spec/factories/event_application.rb
593
+ - spec/factories/donation.rb
594
+ - spec/factories/third_party_media.rb
595
+ - spec/factories/search_team.rb
596
+ - spec/factories/permissions.rb
597
+ - spec/factories/photo.rb
598
+ - spec/factories/collection.rb
599
+ - spec/factories/campaign.rb
600
+ - spec/factories/grant.rb
601
+ - spec/factories/location.rb
602
+ - spec/factories/email_address.rb
603
+ - spec/factories/disease.rb
604
+ - spec/factories/participant.rb
605
+ - spec/factories/kid.rb
606
+ - spec/factories/search_participant.rb
607
+ - spec/factories/event_supporter.rb
608
+ - spec/factories/page.rb
613
609
  - spec/factories/message.rb
614
- - spec/factories/user.rb
615
- - spec/factories/shave_schedule.rb
610
+ - spec/factories/response.rb
611
+ - spec/factories/search_event.rb
612
+ - spec/factories/event_application.rb
613
+ - spec/factories/fundraiser.rb
614
+ - spec/factories/team.rb
615
+ - spec/factories/memorial.rb
616
+ - spec/factories/diagnosis.rb
617
+ - spec/factories/team/totals.rb
618
+ - spec/factories/team/photos.rb
616
619
  - spec/factories/team/rankings/ranking.rb
617
620
  - spec/factories/team/rankings.rb
618
- - spec/factories/team/photos.rb
619
- - spec/factories/team/totals.rb
620
- - spec/factories/search_participant.rb
621
- - spec/factories/search_event.rb
622
- - spec/factories/photo.rb
623
- - spec/factories/kid/custom_institution.rb
624
- - spec/factories/search_team.rb
625
- - spec/factories/error.rb
626
- - spec/factories/search_fundraiser.rb
621
+ - spec/factories/newsletter_recipient.rb
622
+ - spec/factories/shave_schedule.rb
623
+ - spec/factories/organization.rb
627
624
  - spec/factories/campaign/totals.rb
628
- - spec/factories/name_pieces.rb
629
- - spec/factories/challenger.rb
630
- - spec/factories/memorial/tribute.rb
631
- - spec/factories/memorial/photos.rb
632
- - spec/factories/memorial/totals.rb
625
+ - spec/factories/lib/helpers.rb
626
+ - spec/factories/lib/faker_patch.rb
627
+ - spec/factories/error.rb
628
+ - spec/factories/donor.rb
629
+ - spec/factories/contact_group.rb
630
+ - spec/factories/recurring_gift.rb
631
+ - spec/factories/person.rb
632
+ - spec/factories/treatment_status.rb
633
+ - spec/factories/fundraiser/policies.rb
634
+ - spec/factories/fundraiser/totals.rb
635
+ - spec/factories/fundraiser/photos.rb
633
636
  - spec/factories/venue.rb
637
+ - spec/factories/search_fundraiser.rb
634
638
  - spec/factories/institution.rb
635
- - spec/factories/treatment_status.rb
636
- - spec/factories/photos.rb
639
+ - spec/factories/grant_institution.rb
640
+ - spec/factories/address.rb
641
+ - spec/factories/phone.rb
642
+ - spec/factories/event/totals.rb
643
+ - spec/factories/event/photos.rb
644
+ - spec/factories/event/contacts/contact.rb
645
+ - spec/factories/event/contacts/name_pieces.rb
646
+ - spec/factories/event/coach_tracking/coaching_interactions.rb
647
+ - spec/factories/event/coach_tracking/proceeds.rb
648
+ - spec/factories/event/coach_tracking/plaque.rb
649
+ - spec/factories/event/coach_tracking.rb
650
+ - spec/factories/event/venue/location.rb
651
+ - spec/factories/event/venue/social.rb
652
+ - spec/factories/event/contacts.rb
653
+ - spec/factories/event/venue.rb
637
654
  - spec/factories/fund.rb
638
- - spec/factories/search_kid.rb
639
- - spec/factories/person.rb
640
- - spec/factories/contact_group.rb
641
- - spec/factories/disease.rb
642
- - spec/factories/fundraising_page.rb
643
- - spec/factories/event_supporter.rb
644
655
  - spec/factories/event.rb
645
- - spec/factories/organization/email_addresses.rb
646
- - spec/factories/organization/phone_numbers.rb
647
- - spec/factories/organization/addresses.rb
648
- - spec/factories/address.rb
649
- - spec/factories/third_party_media.rb
650
- - spec/factories/kid.rb
656
+ - spec/factories/kid/custom_institution.rb
651
657
  - spec/factories/shave_schedule/time_selection_permissions.rb
652
- - spec/factories/challenge.rb
653
- - spec/factories/fundraiser/photos.rb
654
- - spec/factories/fundraiser/policies.rb
655
- - spec/factories/fundraiser/totals.rb
656
- - spec/factories/organization.rb
657
- - spec/factories/grant_institution.rb
658
- - spec/factories/email_address.rb
659
- - spec/factories/diagnosis.rb
658
+ - spec/factories/user.rb
659
+ - spec/factories/kid_honor.rb