stbaldricks 10.11.0 → 11.0.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/stbaldricks/entities/config.rb +2 -2
- data/lib/stbaldricks/entities/lib/base.rb +3 -1
- data/lib/stbaldricks/entities/participant.rb +8 -4
- data/lib/stbaldricks/entities/search.rb +2 -1
- data/lib/stbaldricks/enums/permission.rb +9 -4
- data/lib/stbaldricks/log.rb +2 -2
- data/lib/stbaldricks/version.rb +1 -1
- data/spec/factories/participant/roles/role.rb +17 -13
- data/spec/factories/participant/roles.rb +4 -2
- data/spec/factories/participant.rb +8 -2
- metadata +94 -94
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40fd11be830c045ef1b529814d08332767014aadfb020ca1ff5e16b96a1918d6
|
4
|
+
data.tar.gz: beaf98a25b9e5af406be151d1edd50c9fe50134001b25672eb7a974ae85b9ea2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f2c5845ec76d03d70ba12c20223b5fc21f7b02549b555ec95e1931f90b6e87e0e14b4a577d1d4db4eecb2664c73a8e226abd0634b90ccd971a29183faabddc7
|
7
|
+
data.tar.gz: '09b469ad214c30a2b806a36b7fc8225a544f627bdb458a692bcd1e13a812494c6609d615c4be268191a2bc91f7c2947e84d9c38e7173d46133d732ffb959e6ef'
|
@@ -22,7 +22,7 @@ module SBF
|
|
22
22
|
# NOTE: If you add another attribute, be sure to mock it out in `configure :test` of app.rb
|
23
23
|
|
24
24
|
# Attempts to call the method on the cached configuration object
|
25
|
-
# rubocop:disable Style/
|
25
|
+
# rubocop:disable Style/MissingRespondToMissing
|
26
26
|
def self.method_missing(method_name, *arguments, &block)
|
27
27
|
# The first time a missing method is called, call reload to make sure the instance has been populated
|
28
28
|
unless @_loaded
|
@@ -35,7 +35,7 @@ module SBF
|
|
35
35
|
|
36
36
|
super(method_name, *arguments, &block)
|
37
37
|
end
|
38
|
-
# rubocop:enable Style/
|
38
|
+
# rubocop:enable Style/MissingRespondToMissing
|
39
39
|
end
|
40
40
|
end
|
41
41
|
end
|
@@ -390,7 +390,8 @@ module SBF
|
|
390
390
|
|
391
391
|
# Creates a private method which resolves the class type based on the class mappings and the value
|
392
392
|
# rubocop:disable Metrics/MethodLength
|
393
|
-
|
393
|
+
# rubocop:todo Metrics/PerceivedComplexity
|
394
|
+
def self.add_class_selector_method(attribute, class_mappings) # rubocop:todo Metrics/CyclomaticComplexity
|
394
395
|
method_name = :"select_#{attribute}_class"
|
395
396
|
|
396
397
|
define_singleton_method(method_name) do |value|
|
@@ -451,6 +452,7 @@ module SBF
|
|
451
452
|
|
452
453
|
private_class_method method_name
|
453
454
|
end
|
455
|
+
# rubocop:enable Metrics/PerceivedComplexity
|
454
456
|
# rubocop:enable Metrics/MethodLength
|
455
457
|
private_class_method :add_class_selector_method
|
456
458
|
|
@@ -118,11 +118,13 @@ module SBF
|
|
118
118
|
LEAD_TREASURER = 'lead_treasurer'.freeze
|
119
119
|
LEAD_ORGANIZER = 'lead_organizer'.freeze
|
120
120
|
BARBER_COORDINATOR = 'barber_coordinator'.freeze
|
121
|
-
|
121
|
+
EVENT_SUPPORT_VOLUNTEER = 'event_support_volunteer'.freeze
|
122
|
+
INDIVIDUAL_FUNDRAISER = 'individual_fundraiser'.freeze
|
122
123
|
end
|
123
124
|
|
124
125
|
CORE_COMMITTEE_TYPES = [Type::ORGANIZER, Type::TREASURER, Type::BARBER_COORDINATOR, Type::SHAVEE_RECRUITER].freeze
|
125
|
-
|
126
|
+
TYPES_WITHOUT_LEADS = [Type::SHAVEE, Type::EVENT_SUPPORT_VOLUNTEER, Type::INDIVIDUAL_FUNDRAISER, Type::SHAVEE_RECRUITER, Type::TEAM_CAPTAIN,
|
127
|
+
Type::BARBER_COORDINATOR, Type::BARBER, Type::TREASURER, Type::ORGANIZER].freeze
|
126
128
|
class Role < SBF::Client::BaseEntity
|
127
129
|
attr_accessor :status
|
128
130
|
|
@@ -168,14 +170,16 @@ module SBF
|
|
168
170
|
attr_accessor :requested_shavee_packet
|
169
171
|
end
|
170
172
|
|
171
|
-
class
|
173
|
+
class EventSupportVolunteer < SBF::Client::Participant::Roles::Role; end
|
174
|
+
class IndividualFundraiser < SBF::Client::Participant::Roles::Role; end
|
172
175
|
class ShaveeRecruiter < SBF::Client::Participant::Roles::Role; end
|
173
176
|
class TeamCaptain < SBF::Client::Participant::Roles::Role; end
|
174
177
|
class BarberCoordinator < SBF::Client::Participant::Roles::Role; end
|
175
178
|
class Treasurer < SBF::Client::Participant::Roles::LeadRole; end
|
176
179
|
|
177
180
|
entity_attr_accessor :shavee, 'SBF::Client::Participant::Roles::Shavee'
|
178
|
-
entity_attr_accessor :
|
181
|
+
entity_attr_accessor :event_support_volunteer, 'SBF::Client::Participant::Roles::EventSupportVolunteer'
|
182
|
+
entity_attr_accessor :individual_fundraiser, 'SBF::Client::Participant::Roles::IndividualFundraiser'
|
179
183
|
entity_attr_accessor :barber_coordinator, 'SBF::Client::Participant::Roles::BarberCoordinator'
|
180
184
|
entity_attr_accessor :shavee_recruiter, 'SBF::Client::Participant::Roles::ShaveeRecruiter'
|
181
185
|
entity_attr_accessor :team_captain, 'SBF::Client::Participant::Roles::TeamCaptain'
|
@@ -31,7 +31,7 @@ module SBF
|
|
31
31
|
EVENT_ADD_SUPPORTERS = 209
|
32
32
|
EVENT_DELETE_SUPPORTERS = 210
|
33
33
|
EVENT_MANAGE_PARTICIPANTS = 211
|
34
|
-
|
34
|
+
EVENT_MANAGE_INDIVIDUAL_FUNDRAISERS = 212
|
35
35
|
EVENT_MANAGE_KIDS = 213
|
36
36
|
EVENT_ADD_KID = 214
|
37
37
|
EVENT_DELETE_KID = 215
|
@@ -41,13 +41,15 @@ module SBF
|
|
41
41
|
EVENT_MASS_PASSWORD_RESET = 219
|
42
42
|
EVENT_FAST_REGISTRATION = 220
|
43
43
|
EVENT_DELETE_EVENT = 221
|
44
|
+
EVENT_VIEW_EVENT_PERFORMANCE = 222
|
45
|
+
EVENT_MANAGE_EVENT_SUPPORT_VOLUNTEERS = 223
|
44
46
|
|
45
47
|
# text descriptions found in LookupUtility
|
46
48
|
EVENT_MEMBER_UPDATE_EVENT_INFORMATION = 300
|
47
49
|
EVENT_MEMBER_ACTIVITIES = 301
|
48
50
|
EVENT_MEMBER_PHOTO_GALLERY = 302
|
49
51
|
EVENT_MEMBER_SUPPORTERS = 303
|
50
|
-
|
52
|
+
EVENT_MEMBER_MANAGE_INDIVIDUAL_FUNDRAISERS_AND_ORGANIZERS = 305
|
51
53
|
EVENT_MEMBER_MANAGE_HONORED_KIDS_WITH_CANCER = 306
|
52
54
|
EVENT_MEMBER_VIEW_FUNDRAISING_REPORTS = 307
|
53
55
|
EVENT_MEMBER_DOWNLOAD_EVENT_PLANNING_MATERIALS = 308
|
@@ -59,6 +61,7 @@ module SBF
|
|
59
61
|
EVENT_MEMBER_VIEW_TEAM_TOTALS_LIST = 314
|
60
62
|
EVENT_MEMBER_COMMUNICATE = 315
|
61
63
|
EVENT_MEMBER_FAST_DONATION = 316
|
64
|
+
EVENT_MEMBER_MANAGE_EVENT_SUPPORT_VOLUNTEERS_AND_ORGANIZERS = 317
|
62
65
|
|
63
66
|
# Participant Role Permissions
|
64
67
|
EVENT_ORGANIZER = 1905
|
@@ -153,7 +156,8 @@ module SBF
|
|
153
156
|
EVENT_ADD_SUPPORTERS => :EVENT_ADD_SUPPORTERS,
|
154
157
|
EVENT_DELETE_SUPPORTERS => :EVENT_DELETE_SUPPORTERS,
|
155
158
|
EVENT_MANAGE_PARTICIPANTS => :EVENT_MANAGE_PARTICIPANTS,
|
156
|
-
|
159
|
+
EVENT_MANAGE_INDIVIDUAL_FUNDRAISERS => :EVENT_MANAGE_INDIVIDUAL_FUNDRAISERS,
|
160
|
+
EVENT_MANAGE_EVENT_SUPPORT_VOLUNTEERS => :EVENT_MANAGE_EVENT_SUPPORT_VOLUNTEERS,
|
157
161
|
EVENT_MANAGE_KIDS => :EVENT_MANAGE_KIDS,
|
158
162
|
EVENT_ADD_KID => :EVENT_ADD_KID,
|
159
163
|
EVENT_DELETE_KID => :EVENT_DELETE_KID,
|
@@ -167,7 +171,8 @@ module SBF
|
|
167
171
|
EVENT_MEMBER_ACTIVITIES => :EVENT_MEMBER_ACTIVITIES,
|
168
172
|
EVENT_MEMBER_PHOTO_GALLERY => :EVENT_MEMBER_PHOTO_GALLERY,
|
169
173
|
EVENT_MEMBER_SUPPORTERS => :EVENT_MEMBER_SUPPORTERS,
|
170
|
-
|
174
|
+
EVENT_MEMBER_MANAGE_INDIVIDUAL_FUNDRAISERS_AND_ORGANIZERS => :EVENT_MEMBER_MANAGE_INDIVIDUAL_FUNDRAISERS_AND_ORGANIZERS,
|
175
|
+
EVENT_MEMBER_MANAGE_EVENT_SUPPORT_VOLUNTEERS_AND_ORGANIZERS => :EVENT_MEMBER_MANAGE_EVENT_SUPPORT_VOLUNTEERS_AND_ORGANIZERS,
|
171
176
|
EVENT_MEMBER_MANAGE_HONORED_KIDS_WITH_CANCER => :EVENT_MEMBER_MANAGE_HONORED_KIDS_WITH_CANCER,
|
172
177
|
EVENT_MEMBER_VIEW_FUNDRAISING_REPORTS => :EVENT_MEMBER_VIEW_FUNDRAISING_REPORTS,
|
173
178
|
EVENT_MEMBER_DOWNLOAD_EVENT_PLANNING_MATERIALS => :EVENT_MEMBER_DOWNLOAD_EVENT_PLANNING_MATERIALS,
|
data/lib/stbaldricks/log.rb
CHANGED
@@ -10,11 +10,11 @@ module SBF
|
|
10
10
|
REQUIRED_METHODS = %i(debug info warn error fatal unknown add level)
|
11
11
|
# rubocop:enable Style/MutableConstant
|
12
12
|
|
13
|
-
# rubocop:disable Style/
|
13
|
+
# rubocop:disable Style/MissingRespondToMissing
|
14
14
|
def self.method_missing(sym, *args, &block)
|
15
15
|
SBF::Client::Configuration.logger.send(sym, *args, &block)
|
16
16
|
end
|
17
|
-
# rubocop:enable Style/
|
17
|
+
# rubocop:enable Style/MissingRespondToMissing
|
18
18
|
end
|
19
19
|
end
|
20
20
|
end
|
data/lib/stbaldricks/version.rb
CHANGED
@@ -10,10 +10,23 @@ FactoryBot.define do
|
|
10
10
|
|
11
11
|
after :build do |role, evaluator|
|
12
12
|
role.status = SBF::Client::Participant::Roles::Status::ACTIVE if unpopulated?(evaluator, :status)
|
13
|
+
role.requested_shavee_packet = false if unpopulated?(evaluator, :requested_shavee_packet)
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
|
-
factory :
|
17
|
+
factory :participant_roles_event_support_volunteer, class: SBF::Client::Participant::Roles::EventSupportVolunteer do
|
18
|
+
skip_create
|
19
|
+
|
20
|
+
initialize_with do
|
21
|
+
new(attributes)
|
22
|
+
end
|
23
|
+
|
24
|
+
after :build do |role, evaluator|
|
25
|
+
role.status = SBF::Client::Participant::Roles::Status::ACTIVE if unpopulated?(evaluator, :status)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
factory :participant_roles_individual_fundraiser, class: SBF::Client::Participant::Roles::IndividualFundraiser do
|
17
30
|
skip_create
|
18
31
|
|
19
32
|
initialize_with do
|
@@ -70,6 +83,7 @@ FactoryBot.define do
|
|
70
83
|
|
71
84
|
after :build do |role, evaluator|
|
72
85
|
role.status = SBF::Client::Participant::Roles::Status::ACTIVE if unpopulated?(evaluator, :status)
|
86
|
+
role.policies = build(:participant_roles_organizer_role_policies) if unpopulated?(evaluator, :policies)
|
73
87
|
end
|
74
88
|
end
|
75
89
|
|
@@ -119,19 +133,9 @@ FactoryBot.define do
|
|
119
133
|
|
120
134
|
status { SBF::Client::Participant::Roles::Status::ACTIVE }
|
121
135
|
is_lead { true }
|
122
|
-
end
|
123
|
-
|
124
|
-
factory :participant_roles_organizer_role, class: SBF::Client::Participant::Roles::Organizer do
|
125
|
-
skip_create
|
126
|
-
|
127
|
-
initialize_with do
|
128
|
-
new(attributes)
|
129
|
-
end
|
130
|
-
|
131
|
-
status { SBF::Client::Participant::Roles::Status::ACTIVE }
|
132
136
|
|
133
|
-
after :build do |organizer|
|
134
|
-
organizer.policies = build(:participant_roles_organizer_role_policies)
|
137
|
+
after :build do |organizer, evaluator|
|
138
|
+
organizer.policies = build(:participant_roles_organizer_role_policies) if unpopulated?(evaluator, :policies)
|
135
139
|
end
|
136
140
|
end
|
137
141
|
|
@@ -8,7 +8,8 @@ FactoryBot.define do
|
|
8
8
|
|
9
9
|
transient do
|
10
10
|
shavee { true }
|
11
|
-
|
11
|
+
event_support_volunteer { nil }
|
12
|
+
individual_fundraiser { nil }
|
12
13
|
shavee_recruiter { nil }
|
13
14
|
team_captain { nil }
|
14
15
|
barber_coordinator { nil }
|
@@ -21,7 +22,8 @@ FactoryBot.define do
|
|
21
22
|
|
22
23
|
after :build do |roles, evaluator|
|
23
24
|
roles.shavee = build(:participant_roles_shavee) if evaluator.shavee
|
24
|
-
roles.
|
25
|
+
roles.event_support_volunteer = build(:participant_roles_event_support_volunteer) if evaluator.event_support_volunteer
|
26
|
+
roles.individual_fundraiser = build(:participant_roles_individual_fundraiser) if evaluator.individual_fundraiser
|
25
27
|
roles.shavee_recruiter = build(:participant_roles_shavee_recruiter) if evaluator.shavee_recruiter
|
26
28
|
roles.team_captain = build(:participant_roles_team_captain) if evaluator.team_captain
|
27
29
|
roles.barber_coordinator = build(:participant_roles_barber_coordinator) if evaluator.barber_coordinator
|
@@ -81,9 +81,15 @@ FactoryBot.define do
|
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
84
|
-
factory :
|
84
|
+
factory :event_support_volunteer, class: SBF::Client::FullParticipant, parent: :participant do
|
85
85
|
after :build do |participant, evaluator|
|
86
|
-
participant.roles = build(:participant_roles,
|
86
|
+
participant.roles = build(:participant_roles, event_support_volunteer: true, shavee: false) if unpopulated?(evaluator, :roles)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
factory :individual_fundraiser, class: SBF::Client::FullParticipant, parent: :participant do
|
91
|
+
after :build do |participant, evaluator|
|
92
|
+
participant.roles = build(:participant_roles, individual_fundraiser: true, shavee: false) if unpopulated?(evaluator, :roles)
|
87
93
|
end
|
88
94
|
end
|
89
95
|
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:
|
4
|
+
version: 11.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Firespring
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -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:
|
229
|
+
version: 0.93.1
|
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:
|
236
|
+
version: 0.93.1
|
237
237
|
- !ruby/object:Gem::Dependency
|
238
238
|
name: rubocop-performance
|
239
239
|
requirement: !ruby/object:Gem::Requirement
|
@@ -539,11 +539,11 @@ files:
|
|
539
539
|
- spec/factories/treatment_status.rb
|
540
540
|
- spec/factories/user.rb
|
541
541
|
- spec/factories/venue.rb
|
542
|
-
homepage:
|
542
|
+
homepage:
|
543
543
|
licenses:
|
544
544
|
- MIT
|
545
545
|
metadata: {}
|
546
|
-
post_install_message:
|
546
|
+
post_install_message:
|
547
547
|
rdoc_options: []
|
548
548
|
require_paths:
|
549
549
|
- lib
|
@@ -558,105 +558,105 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
558
558
|
- !ruby/object:Gem::Version
|
559
559
|
version: '0'
|
560
560
|
requirements: []
|
561
|
-
rubygems_version: 3.0.3
|
562
|
-
signing_key:
|
561
|
+
rubygems_version: 3.0.3.1
|
562
|
+
signing_key:
|
563
563
|
specification_version: 4
|
564
564
|
summary: St. Baldrick's Foundation Ruby Client Library
|
565
565
|
test_files:
|
566
566
|
- lib/stbaldricks_factories.rb
|
567
|
-
- spec/factories/
|
568
|
-
- spec/factories/
|
569
|
-
- spec/factories/
|
570
|
-
- spec/factories/
|
567
|
+
- spec/factories/organization/addresses.rb
|
568
|
+
- spec/factories/organization/email_addresses.rb
|
569
|
+
- spec/factories/organization/phone_numbers.rb
|
570
|
+
- spec/factories/payment.rb
|
571
|
+
- spec/factories/fundraising_page.rb
|
572
|
+
- spec/factories/donation/participant.rb
|
573
|
+
- spec/factories/challenge.rb
|
571
574
|
- spec/factories/kid_institution.rb
|
572
|
-
- spec/factories/
|
573
|
-
- spec/factories/
|
574
|
-
- spec/factories/
|
575
|
-
- spec/factories/
|
576
|
-
- spec/factories/
|
577
|
-
- spec/factories/shave_schedule/time_selection_permissions.rb
|
578
|
-
- spec/factories/collection.rb
|
579
|
-
- spec/factories/event.rb
|
580
|
-
- spec/factories/challenger.rb
|
581
|
-
- spec/factories/campaign/totals.rb
|
582
|
-
- spec/factories/kid_honor.rb
|
583
|
-
- spec/factories/response.rb
|
584
|
-
- spec/factories/grant_institution.rb
|
585
|
-
- spec/factories/organization.rb
|
575
|
+
- spec/factories/memorial/totals.rb
|
576
|
+
- spec/factories/memorial/photos.rb
|
577
|
+
- spec/factories/memorial/tribute.rb
|
578
|
+
- spec/factories/search_kid.rb
|
579
|
+
- spec/factories/contact.rb
|
586
580
|
- spec/factories/researcher.rb
|
587
|
-
- spec/factories/
|
588
|
-
- spec/factories/
|
589
|
-
- spec/factories/
|
590
|
-
- spec/factories/
|
591
|
-
- spec/factories/
|
592
|
-
- spec/factories/
|
593
|
-
- spec/factories/
|
594
|
-
- spec/factories/
|
595
|
-
- spec/factories/event/coach_tracking/coaching_interactions.rb
|
596
|
-
- spec/factories/event/coach_tracking/proceeds.rb
|
597
|
-
- spec/factories/event/coach_tracking/plaque.rb
|
598
|
-
- spec/factories/event/contacts/name_pieces.rb
|
599
|
-
- spec/factories/event/contacts/contact.rb
|
600
|
-
- spec/factories/fundraiser/totals.rb
|
601
|
-
- spec/factories/fundraiser/policies.rb
|
602
|
-
- spec/factories/fundraiser/photos.rb
|
603
|
-
- spec/factories/shave_schedule.rb
|
604
|
-
- spec/factories/event_supporter.rb
|
605
|
-
- spec/factories/participant/totals.rb
|
581
|
+
- spec/factories/photos.rb
|
582
|
+
- spec/factories/challenger.rb
|
583
|
+
- spec/factories/name_pieces.rb
|
584
|
+
- spec/factories/milestone.rb
|
585
|
+
- spec/factories/person/policies.rb
|
586
|
+
- spec/factories/person/addresses.rb
|
587
|
+
- spec/factories/person/email_addresses.rb
|
588
|
+
- spec/factories/person/phone_numbers.rb
|
606
589
|
- spec/factories/participant/policies.rb
|
607
|
-
- spec/factories/participant/
|
590
|
+
- spec/factories/participant/totals.rb
|
608
591
|
- spec/factories/participant/photos.rb
|
609
|
-
- spec/factories/participant/
|
592
|
+
- spec/factories/participant/roles/role.rb
|
610
593
|
- spec/factories/participant/rankings/ranking.rb
|
594
|
+
- spec/factories/participant/rankings.rb
|
611
595
|
- spec/factories/participant/roles.rb
|
612
|
-
- spec/factories/
|
613
|
-
- spec/factories/
|
614
|
-
- spec/factories/
|
615
|
-
- spec/factories/
|
616
|
-
- spec/factories/
|
617
|
-
- spec/factories/
|
596
|
+
- spec/factories/donation.rb
|
597
|
+
- spec/factories/third_party_media.rb
|
598
|
+
- spec/factories/search_team.rb
|
599
|
+
- spec/factories/permissions.rb
|
600
|
+
- spec/factories/photo.rb
|
601
|
+
- spec/factories/collection.rb
|
602
|
+
- spec/factories/campaign.rb
|
603
|
+
- spec/factories/grant.rb
|
604
|
+
- spec/factories/location.rb
|
605
|
+
- spec/factories/email_address.rb
|
606
|
+
- spec/factories/disease.rb
|
607
|
+
- spec/factories/participant.rb
|
608
|
+
- spec/factories/kid.rb
|
618
609
|
- spec/factories/search_participant.rb
|
619
|
-
- spec/factories/
|
620
|
-
- spec/factories/
|
621
|
-
- spec/factories/
|
610
|
+
- spec/factories/event_supporter.rb
|
611
|
+
- spec/factories/page.rb
|
612
|
+
- spec/factories/message.rb
|
613
|
+
- spec/factories/response.rb
|
614
|
+
- spec/factories/search_event.rb
|
615
|
+
- spec/factories/event_application.rb
|
616
|
+
- spec/factories/fundraiser.rb
|
617
|
+
- spec/factories/team.rb
|
618
|
+
- spec/factories/memorial.rb
|
619
|
+
- spec/factories/diagnosis.rb
|
622
620
|
- spec/factories/team/totals.rb
|
623
621
|
- spec/factories/team/photos.rb
|
624
|
-
- spec/factories/team/rankings.rb
|
625
622
|
- spec/factories/team/rankings/ranking.rb
|
626
|
-
- spec/factories/
|
627
|
-
- spec/factories/
|
628
|
-
- spec/factories/
|
629
|
-
- spec/factories/
|
630
|
-
- spec/factories/
|
631
|
-
- spec/factories/
|
632
|
-
- spec/factories/
|
633
|
-
- spec/factories/
|
634
|
-
- spec/factories/person/phone_numbers.rb
|
635
|
-
- spec/factories/person/email_addresses.rb
|
623
|
+
- spec/factories/team/rankings.rb
|
624
|
+
- spec/factories/newsletter_recipient.rb
|
625
|
+
- spec/factories/shave_schedule.rb
|
626
|
+
- spec/factories/organization.rb
|
627
|
+
- spec/factories/campaign/totals.rb
|
628
|
+
- spec/factories/lib/helpers.rb
|
629
|
+
- spec/factories/lib/faker_patch.rb
|
630
|
+
- spec/factories/error.rb
|
636
631
|
- spec/factories/donor.rb
|
637
|
-
- spec/factories/
|
638
|
-
- spec/factories/
|
639
|
-
- spec/factories/
|
640
|
-
- spec/factories/
|
641
|
-
- spec/factories/
|
642
|
-
- spec/factories/
|
643
|
-
- spec/factories/
|
632
|
+
- spec/factories/contact_group.rb
|
633
|
+
- spec/factories/recurring_gift.rb
|
634
|
+
- spec/factories/person.rb
|
635
|
+
- spec/factories/treatment_status.rb
|
636
|
+
- spec/factories/fundraiser/policies.rb
|
637
|
+
- spec/factories/fundraiser/totals.rb
|
638
|
+
- spec/factories/fundraiser/photos.rb
|
644
639
|
- spec/factories/venue.rb
|
645
|
-
- spec/factories/organization/addresses.rb
|
646
|
-
- spec/factories/organization/phone_numbers.rb
|
647
|
-
- spec/factories/organization/email_addresses.rb
|
648
|
-
- spec/factories/lib/faker_patch.rb
|
649
|
-
- spec/factories/lib/helpers.rb
|
650
|
-
- spec/factories/newsletter_recipient.rb
|
651
|
-
- spec/factories/payment.rb
|
652
|
-
- spec/factories/contact.rb
|
653
|
-
- spec/factories/message.rb
|
654
640
|
- spec/factories/search_fundraiser.rb
|
655
|
-
- spec/factories/
|
656
|
-
- spec/factories/
|
657
|
-
- spec/factories/
|
658
|
-
- spec/factories/
|
659
|
-
- spec/factories/
|
660
|
-
- spec/factories/
|
661
|
-
- spec/factories/
|
662
|
-
- spec/factories/
|
641
|
+
- spec/factories/institution.rb
|
642
|
+
- spec/factories/grant_institution.rb
|
643
|
+
- spec/factories/address.rb
|
644
|
+
- spec/factories/phone.rb
|
645
|
+
- spec/factories/event/totals.rb
|
646
|
+
- spec/factories/event/photos.rb
|
647
|
+
- spec/factories/event/contacts/contact.rb
|
648
|
+
- spec/factories/event/contacts/name_pieces.rb
|
649
|
+
- spec/factories/event/coach_tracking/coaching_interactions.rb
|
650
|
+
- spec/factories/event/coach_tracking/proceeds.rb
|
651
|
+
- spec/factories/event/coach_tracking/plaque.rb
|
652
|
+
- spec/factories/event/coach_tracking.rb
|
653
|
+
- spec/factories/event/venue/location.rb
|
654
|
+
- spec/factories/event/venue/social.rb
|
655
|
+
- spec/factories/event/contacts.rb
|
656
|
+
- spec/factories/event/venue.rb
|
657
|
+
- spec/factories/fund.rb
|
658
|
+
- spec/factories/event.rb
|
659
|
+
- spec/factories/kid/custom_institution.rb
|
660
|
+
- spec/factories/shave_schedule/time_selection_permissions.rb
|
661
|
+
- spec/factories/user.rb
|
662
|
+
- spec/factories/kid_honor.rb
|