effective_memberships 0.1.2

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 (152) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +114 -0
  4. data/Rakefile +18 -0
  5. data/app/assets/config/effective_memberships_manifest.js +3 -0
  6. data/app/assets/javascripts/effective_memberships/applicant_courses.js +29 -0
  7. data/app/assets/javascripts/effective_memberships/applicant_experiences.js +38 -0
  8. data/app/assets/javascripts/effective_memberships/base.js +0 -0
  9. data/app/assets/javascripts/effective_memberships.js +1 -0
  10. data/app/assets/stylesheets/effective_memberships/base.scss +5 -0
  11. data/app/assets/stylesheets/effective_memberships.scss +1 -0
  12. data/app/controllers/admin/applicant_course_areas_controller.rb +15 -0
  13. data/app/controllers/admin/applicant_course_names_controller.rb +15 -0
  14. data/app/controllers/admin/applicants_controller.rb +33 -0
  15. data/app/controllers/admin/categories_controller.rb +19 -0
  16. data/app/controllers/admin/fees_controller.rb +18 -0
  17. data/app/controllers/admin/registrar_actions_controller.rb +49 -0
  18. data/app/controllers/effective/applicant_references_controller.rb +37 -0
  19. data/app/controllers/effective/applicants_controller.rb +34 -0
  20. data/app/controllers/effective/fee_payments_controller.rb +29 -0
  21. data/app/datatables/admin/effective_applicant_course_areas_datatable.rb +17 -0
  22. data/app/datatables/admin/effective_applicant_course_names_datatable.rb +17 -0
  23. data/app/datatables/admin/effective_applicants_datatable.rb +55 -0
  24. data/app/datatables/admin/effective_categories_datatable.rb +23 -0
  25. data/app/datatables/admin/effective_fees_datatable.rb +69 -0
  26. data/app/datatables/admin/effective_membership_histories_datatable.rb +35 -0
  27. data/app/datatables/effective_applicant_courses_datatable.rb +30 -0
  28. data/app/datatables/effective_applicant_educations_datatable.rb +22 -0
  29. data/app/datatables/effective_applicant_experiences_datatable.rb +42 -0
  30. data/app/datatables/effective_applicant_references_datatable.rb +34 -0
  31. data/app/datatables/effective_applicants_datatable.rb +34 -0
  32. data/app/helpers/effective_memberships_helper.rb +15 -0
  33. data/app/mailers/effective/memberships_mailer.rb +84 -0
  34. data/app/models/concerns/effective_memberships_applicant.rb +612 -0
  35. data/app/models/concerns/effective_memberships_applicant_review.rb +149 -0
  36. data/app/models/concerns/effective_memberships_category.rb +196 -0
  37. data/app/models/concerns/effective_memberships_fee_payment.rb +229 -0
  38. data/app/models/concerns/effective_memberships_owner.rb +263 -0
  39. data/app/models/concerns/effective_memberships_registrar.rb +300 -0
  40. data/app/models/effective/applicant.rb +7 -0
  41. data/app/models/effective/applicant_course.rb +40 -0
  42. data/app/models/effective/applicant_course_area.rb +31 -0
  43. data/app/models/effective/applicant_course_name.rb +29 -0
  44. data/app/models/effective/applicant_education.rb +36 -0
  45. data/app/models/effective/applicant_experience.rb +79 -0
  46. data/app/models/effective/applicant_reference.rb +81 -0
  47. data/app/models/effective/applicant_review.rb +7 -0
  48. data/app/models/effective/category.rb +7 -0
  49. data/app/models/effective/fee.rb +142 -0
  50. data/app/models/effective/fee_payment.rb +7 -0
  51. data/app/models/effective/membership.rb +119 -0
  52. data/app/models/effective/membership_category.rb +11 -0
  53. data/app/models/effective/membership_history.rb +40 -0
  54. data/app/models/effective/registrar.rb +19 -0
  55. data/app/models/effective/registrar_action.rb +97 -0
  56. data/app/views/admin/applicant_course_areas/_form.html.haml +8 -0
  57. data/app/views/admin/applicant_course_areas/_form_applicant_course_area.html.haml +8 -0
  58. data/app/views/admin/applicant_course_areas/index.html.haml +8 -0
  59. data/app/views/admin/applicant_course_name/_form.html.haml +9 -0
  60. data/app/views/admin/applicants/_form.html.haml +38 -0
  61. data/app/views/admin/applicants/_form_approve.html.haml +34 -0
  62. data/app/views/admin/applicants/_form_decline.html.haml +11 -0
  63. data/app/views/admin/applicants/_form_process.html.haml +18 -0
  64. data/app/views/admin/applicants/_status.html.haml +133 -0
  65. data/app/views/admin/categories/_form.html.haml +14 -0
  66. data/app/views/admin/categories/_form_applicant.html.haml +12 -0
  67. data/app/views/admin/categories/_form_applicant_content.html.haml +19 -0
  68. data/app/views/admin/categories/_form_applicant_eligibility.html.haml +13 -0
  69. data/app/views/admin/categories/_form_applicant_fees.html.haml +29 -0
  70. data/app/views/admin/categories/_form_applicant_steps.html.haml +42 -0
  71. data/app/views/admin/categories/_form_category.html.haml +10 -0
  72. data/app/views/admin/categories/_form_fee_payment.html.haml +9 -0
  73. data/app/views/admin/categories/_form_fee_payment_content.html.haml +19 -0
  74. data/app/views/admin/categories/_form_fee_payment_steps.html.haml +9 -0
  75. data/app/views/admin/categories/_form_renewals.html.haml +32 -0
  76. data/app/views/admin/fees/_fee.html.haml +1 -0
  77. data/app/views/admin/fees/_form.html.haml +14 -0
  78. data/app/views/admin/memberships/_status.html.haml +6 -0
  79. data/app/views/admin/registrar_actions/_form.html.haml +10 -0
  80. data/app/views/admin/registrar_actions/_form_bad_standing.html.haml +43 -0
  81. data/app/views/admin/registrar_actions/_form_fees_paid.html.haml +30 -0
  82. data/app/views/admin/registrar_actions/_form_reclassify.html.haml +43 -0
  83. data/app/views/admin/registrar_actions/_form_register.html.haml +44 -0
  84. data/app/views/admin/registrar_actions/_form_remove.html.haml +17 -0
  85. data/app/views/effective/applicant_references/_applicant_reference.html.haml +51 -0
  86. data/app/views/effective/applicant_references/_datatable_actions.html.haml +4 -0
  87. data/app/views/effective/applicant_references/_form.html.haml +18 -0
  88. data/app/views/effective/applicant_references/_form_declaration.html.haml +37 -0
  89. data/app/views/effective/applicant_references/complete.html.haml +3 -0
  90. data/app/views/effective/applicant_references/edit.html.haml +8 -0
  91. data/app/views/effective/applicants/_applicant.html.haml +6 -0
  92. data/app/views/effective/applicants/_content.html.haml +10 -0
  93. data/app/views/effective/applicants/_course_amounts.html.haml +19 -0
  94. data/app/views/effective/applicants/_dashboard.html.haml +19 -0
  95. data/app/views/effective/applicants/_declarations.html.haml +16 -0
  96. data/app/views/effective/applicants/_demographics.html.haml +9 -0
  97. data/app/views/effective/applicants/_demographics_fields.html.haml +11 -0
  98. data/app/views/effective/applicants/_demographics_owner.html.haml +20 -0
  99. data/app/views/effective/applicants/_education.html.haml +14 -0
  100. data/app/views/effective/applicants/_experience.html.haml +28 -0
  101. data/app/views/effective/applicants/_files.html.haml +27 -0
  102. data/app/views/effective/applicants/_layout.html.haml +3 -0
  103. data/app/views/effective/applicants/_orders.html.haml +4 -0
  104. data/app/views/effective/applicants/_references.html.haml +15 -0
  105. data/app/views/effective/applicants/_summary.html.haml +40 -0
  106. data/app/views/effective/applicants/billing.html.haml +14 -0
  107. data/app/views/effective/applicants/checkout.html.haml +6 -0
  108. data/app/views/effective/applicants/course_amounts.html.haml +50 -0
  109. data/app/views/effective/applicants/declarations.html.haml +19 -0
  110. data/app/views/effective/applicants/demographics.html.haml +11 -0
  111. data/app/views/effective/applicants/education.html.haml +27 -0
  112. data/app/views/effective/applicants/experience.html.haml +51 -0
  113. data/app/views/effective/applicants/files.html.haml +14 -0
  114. data/app/views/effective/applicants/references.html.haml +24 -0
  115. data/app/views/effective/applicants/select.html.haml +27 -0
  116. data/app/views/effective/applicants/start.html.haml +18 -0
  117. data/app/views/effective/applicants/submitted.html.haml +44 -0
  118. data/app/views/effective/applicants/summary.html.haml +8 -0
  119. data/app/views/effective/fee_payments/_content.html.haml +8 -0
  120. data/app/views/effective/fee_payments/_declarations.html.haml +16 -0
  121. data/app/views/effective/fee_payments/_demographics.html.haml +9 -0
  122. data/app/views/effective/fee_payments/_demographics_fields.html.haml +11 -0
  123. data/app/views/effective/fee_payments/_demographics_owner.html.haml +20 -0
  124. data/app/views/effective/fee_payments/_fee_payment.html.haml +6 -0
  125. data/app/views/effective/fee_payments/_layout.html.haml +3 -0
  126. data/app/views/effective/fee_payments/_orders.html.haml +4 -0
  127. data/app/views/effective/fee_payments/billing.html.haml +14 -0
  128. data/app/views/effective/fee_payments/checkout.html.haml +6 -0
  129. data/app/views/effective/fee_payments/declarations.html.haml +20 -0
  130. data/app/views/effective/fee_payments/demographics.html.haml +12 -0
  131. data/app/views/effective/fee_payments/start.html.haml +20 -0
  132. data/app/views/effective/fee_payments/submitted.html.haml +14 -0
  133. data/app/views/effective/fee_payments/summary.html.haml +8 -0
  134. data/app/views/effective/fees/_dashboard.html.haml +22 -0
  135. data/app/views/effective/fees/_fee.html.haml +37 -0
  136. data/app/views/effective/memberships/_dashboard.html.haml +29 -0
  137. data/app/views/effective/memberships/_membership.html.haml +40 -0
  138. data/app/views/effective/memberships_mailer/applicant_approved.liquid +15 -0
  139. data/app/views/effective/memberships_mailer/applicant_declined.liquid +13 -0
  140. data/app/views/effective/memberships_mailer/applicant_reference_notification.liquid +15 -0
  141. data/app/views/layouts/effective_memberships_mailer_layout.html.haml +7 -0
  142. data/config/effective_memberships.rb +47 -0
  143. data/config/routes.rb +32 -0
  144. data/db/migrate/01_create_effective_memberships.rb.erb +380 -0
  145. data/db/seeds.rb +59 -0
  146. data/lib/effective_memberships/engine.rb +23 -0
  147. data/lib/effective_memberships/version.rb +3 -0
  148. data/lib/effective_memberships.rb +86 -0
  149. data/lib/generators/effective_memberships/install_generator.rb +40 -0
  150. data/lib/generators/templates/effective_memberships_mailer_preview.rb +4 -0
  151. data/lib/tasks/effective_memberships_tasks.rake +17 -0
  152. metadata +377 -0
metadata ADDED
@@ -0,0 +1,377 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: effective_memberships
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Code and Effect
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-12-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 6.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 6.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: effective_bootstrap
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: effective_datatables
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 4.0.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 4.0.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: effective_orders
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: effective_resources
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: wicked
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: sqlite3
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: devise
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: haml-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: pry-byebug
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: effective_test_bot
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: effective_developer
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: effective_email_templates
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ description: Manage your professional association online. Membership categories, applications
196
+ to join and reclassify, annual dues payments and more.
197
+ email:
198
+ - info@codeandeffect.com
199
+ executables: []
200
+ extensions: []
201
+ extra_rdoc_files: []
202
+ files:
203
+ - MIT-LICENSE
204
+ - README.md
205
+ - Rakefile
206
+ - app/assets/config/effective_memberships_manifest.js
207
+ - app/assets/javascripts/effective_memberships.js
208
+ - app/assets/javascripts/effective_memberships/applicant_courses.js
209
+ - app/assets/javascripts/effective_memberships/applicant_experiences.js
210
+ - app/assets/javascripts/effective_memberships/base.js
211
+ - app/assets/stylesheets/effective_memberships.scss
212
+ - app/assets/stylesheets/effective_memberships/base.scss
213
+ - app/controllers/admin/applicant_course_areas_controller.rb
214
+ - app/controllers/admin/applicant_course_names_controller.rb
215
+ - app/controllers/admin/applicants_controller.rb
216
+ - app/controllers/admin/categories_controller.rb
217
+ - app/controllers/admin/fees_controller.rb
218
+ - app/controllers/admin/registrar_actions_controller.rb
219
+ - app/controllers/effective/applicant_references_controller.rb
220
+ - app/controllers/effective/applicants_controller.rb
221
+ - app/controllers/effective/fee_payments_controller.rb
222
+ - app/datatables/admin/effective_applicant_course_areas_datatable.rb
223
+ - app/datatables/admin/effective_applicant_course_names_datatable.rb
224
+ - app/datatables/admin/effective_applicants_datatable.rb
225
+ - app/datatables/admin/effective_categories_datatable.rb
226
+ - app/datatables/admin/effective_fees_datatable.rb
227
+ - app/datatables/admin/effective_membership_histories_datatable.rb
228
+ - app/datatables/effective_applicant_courses_datatable.rb
229
+ - app/datatables/effective_applicant_educations_datatable.rb
230
+ - app/datatables/effective_applicant_experiences_datatable.rb
231
+ - app/datatables/effective_applicant_references_datatable.rb
232
+ - app/datatables/effective_applicants_datatable.rb
233
+ - app/helpers/effective_memberships_helper.rb
234
+ - app/mailers/effective/memberships_mailer.rb
235
+ - app/models/concerns/effective_memberships_applicant.rb
236
+ - app/models/concerns/effective_memberships_applicant_review.rb
237
+ - app/models/concerns/effective_memberships_category.rb
238
+ - app/models/concerns/effective_memberships_fee_payment.rb
239
+ - app/models/concerns/effective_memberships_owner.rb
240
+ - app/models/concerns/effective_memberships_registrar.rb
241
+ - app/models/effective/applicant.rb
242
+ - app/models/effective/applicant_course.rb
243
+ - app/models/effective/applicant_course_area.rb
244
+ - app/models/effective/applicant_course_name.rb
245
+ - app/models/effective/applicant_education.rb
246
+ - app/models/effective/applicant_experience.rb
247
+ - app/models/effective/applicant_reference.rb
248
+ - app/models/effective/applicant_review.rb
249
+ - app/models/effective/category.rb
250
+ - app/models/effective/fee.rb
251
+ - app/models/effective/fee_payment.rb
252
+ - app/models/effective/membership.rb
253
+ - app/models/effective/membership_category.rb
254
+ - app/models/effective/membership_history.rb
255
+ - app/models/effective/registrar.rb
256
+ - app/models/effective/registrar_action.rb
257
+ - app/views/admin/applicant_course_areas/_form.html.haml
258
+ - app/views/admin/applicant_course_areas/_form_applicant_course_area.html.haml
259
+ - app/views/admin/applicant_course_areas/index.html.haml
260
+ - app/views/admin/applicant_course_name/_form.html.haml
261
+ - app/views/admin/applicants/_form.html.haml
262
+ - app/views/admin/applicants/_form_approve.html.haml
263
+ - app/views/admin/applicants/_form_decline.html.haml
264
+ - app/views/admin/applicants/_form_process.html.haml
265
+ - app/views/admin/applicants/_status.html.haml
266
+ - app/views/admin/categories/_form.html.haml
267
+ - app/views/admin/categories/_form_applicant.html.haml
268
+ - app/views/admin/categories/_form_applicant_content.html.haml
269
+ - app/views/admin/categories/_form_applicant_eligibility.html.haml
270
+ - app/views/admin/categories/_form_applicant_fees.html.haml
271
+ - app/views/admin/categories/_form_applicant_steps.html.haml
272
+ - app/views/admin/categories/_form_category.html.haml
273
+ - app/views/admin/categories/_form_fee_payment.html.haml
274
+ - app/views/admin/categories/_form_fee_payment_content.html.haml
275
+ - app/views/admin/categories/_form_fee_payment_steps.html.haml
276
+ - app/views/admin/categories/_form_renewals.html.haml
277
+ - app/views/admin/fees/_fee.html.haml
278
+ - app/views/admin/fees/_form.html.haml
279
+ - app/views/admin/memberships/_status.html.haml
280
+ - app/views/admin/registrar_actions/_form.html.haml
281
+ - app/views/admin/registrar_actions/_form_bad_standing.html.haml
282
+ - app/views/admin/registrar_actions/_form_fees_paid.html.haml
283
+ - app/views/admin/registrar_actions/_form_reclassify.html.haml
284
+ - app/views/admin/registrar_actions/_form_register.html.haml
285
+ - app/views/admin/registrar_actions/_form_remove.html.haml
286
+ - app/views/effective/applicant_references/_applicant_reference.html.haml
287
+ - app/views/effective/applicant_references/_datatable_actions.html.haml
288
+ - app/views/effective/applicant_references/_form.html.haml
289
+ - app/views/effective/applicant_references/_form_declaration.html.haml
290
+ - app/views/effective/applicant_references/complete.html.haml
291
+ - app/views/effective/applicant_references/edit.html.haml
292
+ - app/views/effective/applicants/_applicant.html.haml
293
+ - app/views/effective/applicants/_content.html.haml
294
+ - app/views/effective/applicants/_course_amounts.html.haml
295
+ - app/views/effective/applicants/_dashboard.html.haml
296
+ - app/views/effective/applicants/_declarations.html.haml
297
+ - app/views/effective/applicants/_demographics.html.haml
298
+ - app/views/effective/applicants/_demographics_fields.html.haml
299
+ - app/views/effective/applicants/_demographics_owner.html.haml
300
+ - app/views/effective/applicants/_education.html.haml
301
+ - app/views/effective/applicants/_experience.html.haml
302
+ - app/views/effective/applicants/_files.html.haml
303
+ - app/views/effective/applicants/_layout.html.haml
304
+ - app/views/effective/applicants/_orders.html.haml
305
+ - app/views/effective/applicants/_references.html.haml
306
+ - app/views/effective/applicants/_summary.html.haml
307
+ - app/views/effective/applicants/billing.html.haml
308
+ - app/views/effective/applicants/checkout.html.haml
309
+ - app/views/effective/applicants/course_amounts.html.haml
310
+ - app/views/effective/applicants/declarations.html.haml
311
+ - app/views/effective/applicants/demographics.html.haml
312
+ - app/views/effective/applicants/education.html.haml
313
+ - app/views/effective/applicants/experience.html.haml
314
+ - app/views/effective/applicants/files.html.haml
315
+ - app/views/effective/applicants/references.html.haml
316
+ - app/views/effective/applicants/select.html.haml
317
+ - app/views/effective/applicants/start.html.haml
318
+ - app/views/effective/applicants/submitted.html.haml
319
+ - app/views/effective/applicants/summary.html.haml
320
+ - app/views/effective/fee_payments/_content.html.haml
321
+ - app/views/effective/fee_payments/_declarations.html.haml
322
+ - app/views/effective/fee_payments/_demographics.html.haml
323
+ - app/views/effective/fee_payments/_demographics_fields.html.haml
324
+ - app/views/effective/fee_payments/_demographics_owner.html.haml
325
+ - app/views/effective/fee_payments/_fee_payment.html.haml
326
+ - app/views/effective/fee_payments/_layout.html.haml
327
+ - app/views/effective/fee_payments/_orders.html.haml
328
+ - app/views/effective/fee_payments/billing.html.haml
329
+ - app/views/effective/fee_payments/checkout.html.haml
330
+ - app/views/effective/fee_payments/declarations.html.haml
331
+ - app/views/effective/fee_payments/demographics.html.haml
332
+ - app/views/effective/fee_payments/start.html.haml
333
+ - app/views/effective/fee_payments/submitted.html.haml
334
+ - app/views/effective/fee_payments/summary.html.haml
335
+ - app/views/effective/fees/_dashboard.html.haml
336
+ - app/views/effective/fees/_fee.html.haml
337
+ - app/views/effective/memberships/_dashboard.html.haml
338
+ - app/views/effective/memberships/_membership.html.haml
339
+ - app/views/effective/memberships_mailer/applicant_approved.liquid
340
+ - app/views/effective/memberships_mailer/applicant_declined.liquid
341
+ - app/views/effective/memberships_mailer/applicant_reference_notification.liquid
342
+ - app/views/layouts/effective_memberships_mailer_layout.html.haml
343
+ - config/effective_memberships.rb
344
+ - config/routes.rb
345
+ - db/migrate/01_create_effective_memberships.rb.erb
346
+ - db/seeds.rb
347
+ - lib/effective_memberships.rb
348
+ - lib/effective_memberships/engine.rb
349
+ - lib/effective_memberships/version.rb
350
+ - lib/generators/effective_memberships/install_generator.rb
351
+ - lib/generators/templates/effective_memberships_mailer_preview.rb
352
+ - lib/tasks/effective_memberships_tasks.rake
353
+ homepage: https://github.com/code-and-effect/effective_memberships
354
+ licenses:
355
+ - MIT
356
+ metadata: {}
357
+ post_install_message:
358
+ rdoc_options: []
359
+ require_paths:
360
+ - lib
361
+ required_ruby_version: !ruby/object:Gem::Requirement
362
+ requirements:
363
+ - - ">="
364
+ - !ruby/object:Gem::Version
365
+ version: '0'
366
+ required_rubygems_version: !ruby/object:Gem::Requirement
367
+ requirements:
368
+ - - ">="
369
+ - !ruby/object:Gem::Version
370
+ version: '0'
371
+ requirements: []
372
+ rubygems_version: 3.1.2
373
+ signing_key:
374
+ specification_version: 4
375
+ summary: Manage your professional association online. Membership categories, applications
376
+ to join and reclassify, annual dues payments and more.
377
+ test_files: []