s3_zipper 1.0.5 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d141bd69a9eb29e50cf3781c59f215254e18d51665abc1198a0967ad3a922abe
4
- data.tar.gz: 05330c23b72f68b5835a7366c3e4e0068e047d5c65634b96649e9d3045806fd6
3
+ metadata.gz: 18f7c3e76e26f41f3569c8ac79286ab177ca784030295a632d982c583d4224ed
4
+ data.tar.gz: 77524a5e4dab56ee971e3ace79a180d5b75d402a20a2e161f84f4928c7adc5ba
5
5
  SHA512:
6
- metadata.gz: d3835736db7015aadfadba7fe643b6581721ec582af4414c5a07496b322fd3db0245c49d20c53466af1e9765467cb218d49d9f5e116044882c82e4f29f484df8
7
- data.tar.gz: c305141de9bd88f8fe2757b6cd2fe8dc9b037f7ba4860fb746acd735b84103149a25c22e312583f9ca4707f89487ed1c095526fcd6d137ed0749bda5b05fb6bc
6
+ metadata.gz: 90296881a51654691d993dde6dda87c6439d49a5d8c102ef6ae6a56b5b7d9062dfa167df1d0a23f2b03dc16c4d412620fd781a0a2030a87e49154402ba28f486
7
+ data.tar.gz: e942e8065b7e18b514b60542c086d62363e966ca057c82c8a85360e015d64ad1a6e1e7d167c491ec0ae1bb90352175330428f5b7b9e2eab9d6091df61235d2c1
data/.env.test CHANGED
@@ -1,4 +1,3 @@
1
- MOL_TRANSPORTER=redis://localhost
2
1
  # AWS KEYS
3
2
  AWS_ACCESS_KEY_ID=test-key-id
4
3
  AWS_SECRET_ACCESS_KEY=test-secret-key
data/.rubocop.yml ADDED
@@ -0,0 +1,174 @@
1
+ inherit_from: .rubocop_todo.yml
2
+ ###################### CONFIGURATION ######################
3
+
4
+ AllCops:
5
+ StyleGuideBaseURL: "https://github.com/capshareinc/capshare/blob/master/doc/style_guide/ruby.md"
6
+ TargetRubyVersion: 2.3
7
+ DisplayStyleGuide: true
8
+ DisabledByDefault: true
9
+
10
+ Rails:
11
+ Enabled: true
12
+
13
+ ###################### LAYOUT ######################
14
+
15
+ Layout/AccessModifierIndentation:
16
+ Enabled: true
17
+ StyleGuide: "#indent-access-assignment"
18
+
19
+ Layout/AlignArray:
20
+ Enabled: true
21
+
22
+ Layout/CaseIndentation:
23
+ Enabled: true
24
+ StyleGuide: "#indent-when-as-case"
25
+
26
+ Layout/DotPosition:
27
+ Enabled: true
28
+ EnforcedStyle: leading
29
+
30
+ Layout/DefEndAlignment:
31
+ Enabled: true
32
+
33
+ Layout/ElseAlignment:
34
+ Enabled: true
35
+
36
+ Layout/EmptyLinesAroundClassBody:
37
+ Enabled: true
38
+ EnforcedStyle: no_empty_lines
39
+
40
+ Layout/EmptyLineAfterMagicComment:
41
+ Enabled: true
42
+
43
+ Layout/EmptyLines:
44
+ Enabled: true
45
+
46
+ Layout/SpaceBeforeBlockBraces:
47
+ Enabled: true
48
+ StyleGuide: "#spaces-operators"
49
+
50
+ Layout/SpaceInsideBlockBraces:
51
+ Enabled: true
52
+ StyleGuide: "#spaces-operators"
53
+
54
+ Layout/FirstArrayElementLineBreak:
55
+ Enabled: true
56
+
57
+ Layout/FirstHashElementLineBreak:
58
+ Enabled: true
59
+
60
+ Layout/FirstMethodArgumentLineBreak:
61
+ Enabled: true
62
+
63
+ Layout/InitialIndentation:
64
+ Enabled: true
65
+
66
+ Layout/MultilineArrayBraceLayout:
67
+ Enabled: true
68
+ EnforcedStyle: symmetrical
69
+
70
+ Layout/MultilineBlockLayout:
71
+ Enabled: true
72
+
73
+ Layout/SpaceAfterMethodName:
74
+ Enabled: true
75
+
76
+ Layout/SpaceInsideHashLiteralBraces:
77
+ Enabled: true
78
+
79
+ Layout/IndentationConsistency:
80
+ Enabled: true
81
+
82
+ Layout/TrailingBlankLines:
83
+ Enabled: true
84
+
85
+ Layout/TrailingWhitespace:
86
+ Enabled: true
87
+ StyleGuide: "#trailing-whitespace"
88
+
89
+ Layout/AlignParameters:
90
+ Enabled: true
91
+
92
+ Layout/MultilineMethodCallBraceLayout:
93
+ Enabled: true
94
+ EnforcedStyle: symmetrical
95
+
96
+ Layout/MultilineMethodCallIndentation:
97
+ Enabled: true
98
+ EnforcedStyle: aligned
99
+
100
+ Layout/SpaceAfterComma:
101
+ Enabled: true
102
+ StyleGuide: "#spaces-operators"
103
+
104
+ Layout/SpaceAroundOperators:
105
+ Enabled: true
106
+ StyleGuide: "#spaces-operators"
107
+
108
+ Layout/SpaceBeforeComma:
109
+ Enabled: true
110
+ StyleGuide: "##no-space-before-commas"
111
+
112
+ Layout/SpaceAroundBlockParameters:
113
+ Enabled: true
114
+ StyleGuide: "#spaces-block-params"
115
+
116
+ Layout/SpaceAfterNot:
117
+ Enabled: true
118
+ StyleGuide: "#no-space-after-!"
119
+
120
+ Layout/SpaceInsideRangeLiteral:
121
+ Enabled: true
122
+ StyleGuide: "#no-spaces-range-literals"
123
+
124
+ Layout/SpaceInsideStringInterpolation:
125
+ Enabled: true
126
+ StyleGuide: "#no-spaces-string-interpolation"
127
+
128
+ Layout/IndentFirstHashElement:
129
+ Enabled: true
130
+ EnforcedStyle: consistent
131
+
132
+ Layout/AlignHash:
133
+ Enabled: true
134
+ EnforcedHashRocketStyle: table
135
+ EnforcedColonStyle: table
136
+
137
+
138
+
139
+ ###################### Style ######################
140
+
141
+ Style/RedundantReturn:
142
+ Enabled: true
143
+
144
+ Style/RedundantSelf:
145
+ Enabled: true
146
+
147
+ Style/MethodDefParentheses:
148
+ Enabled: true
149
+ EnforcedStyle: require_no_parentheses
150
+
151
+ Style/StringLiterals:
152
+ Enabled: true
153
+ EnforcedStyle: double_quotes
154
+
155
+ Style/TrailingCommaInArguments:
156
+ Enabled: true
157
+ EnforcedStyleForMultiline: comma
158
+
159
+ Style/FrozenStringLiteralComment:
160
+ Enabled: true
161
+
162
+ Style/TrailingCommaInArrayLiteral:
163
+ Enable: true
164
+ EnforcedStyleForMultiline: comma
165
+
166
+ Style/TrailingCommanInHashLiteral:
167
+ Enable: true
168
+ EnforcedStyleForMultiline: comma
169
+
170
+ #Style/MultilineTernaryOperator:
171
+ # Enable: true
172
+
173
+ #Style/StringHashKeys:
174
+ # Enable: true
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,1569 @@
1
+ AllCops:
2
+ Exclude:
3
+ #
4
+ # With the git diff integration, we don't actually want to exclude these files
5
+ # however, I am keeping the list of failing files here, so they can be removed once
6
+ # they are known to be passing
7
+ #
8
+ # - 'app/coordinators/debt_certificate_coordinator.rb'
9
+ # - 'app/coordinators/equity_certificate_coordinator.rb'
10
+ # - 'app/models/option_expense_report/oer_export.rb'
11
+ # - 'app/models/google_client.rb'
12
+ # - 'app/models/concerns/auditable.rb'
13
+ # - 'app/models/captable.rb'
14
+ # - 'app/helpers/transactions_helper.rb'
15
+ # - 'app/helpers/captables_helper.rb'
16
+ # - 'app/helpers/sheets_helper.rb'
17
+ # - 'test/unit/models/adjustment_test.rb'
18
+ # - 'test/unit/models/transaction/warrant_grant_test.rb'
19
+ # - 'test/unit/models/holdings_unclaimer_test.rb'
20
+ # - 'test/unit/models/share_total_test.rb'
21
+ # - 'test/unit/models/cap_iq/treasury_test.rb'
22
+ # - 'test/unit/presenters/debt_certificates/index_presenter_test.rb'
23
+ # - 'test/unit/finders/transactions/secondaries_from_security_type_finder_test.rb'
24
+ # - 'test/unit/finders/transactions/secondaries_from_equity_certificate_finder_test.rb'
25
+ # - 'test/unit/services/transactions/create_test.rb'
26
+ # - 'test/unit/services/marketing/events/record_demo_captable_viewed_test.rb'
27
+ # - 'test/unit/services/import/report_generator_test.rb'
28
+ # - 'test/system/vesting_results_system_test.rb'
29
+ # - 'test/controllers/financing_rounds/transactions_controller_test.rb'
30
+ # - 'test/functional/vesting_functional_tests/vesting_functional_test_helper.rb'
31
+ # - 'config/routes.rb'
32
+ # - 'lib/tasks/create_product_skus.rake'
33
+ # - 'app/services/import/report_generator.rb'
34
+ # - 'app/concerns/html_to_plain_text.rb'
35
+ # - 'test/system/utilities/certificate.rb'
36
+ # - 'app/monitors/missing_company_permission_monitor.rb'
37
+ # - 'app/monitors/permissions_sync_monitor.rb'
38
+ # - 'app/monitors/missing_portfolio_company_monitor.rb'
39
+ # - 'app/models/shareholder.rb'
40
+ # - 'app/models/transaction/equity_issuance/transaction_vesting.rb'
41
+ # - 'app/models/transaction/certificate_transaction.rb'
42
+ # - 'app/models/transaction/transaction.rb'
43
+ # - 'app/models/transaction/equity_issuance.rb'
44
+ # - 'app/models/transaction/debt_issuance/transaction_accrual.rb'
45
+ # - 'app/models/portfolio.rb'
46
+ # - 'app/models/auditors/captable_auditor.rb'
47
+ # - 'app/models/document_repo.rb'
48
+ # - 'app/models/guaranteed_company_shareholder.rb'
49
+ # - 'app/models/user_access.rb'
50
+ # - 'app/models/equity_certificate.rb'
51
+ # - 'app/models/security/derivative_security.rb'
52
+ # - 'app/models/security/non_derivative_security.rb'
53
+ # - 'app/models/security/security.rb'
54
+ # - 'app/models/security/preferred_security.rb'
55
+ # - 'app/models/waterfall/standard_waterfall.rb'
56
+ # - 'app/models/waterfall/master_breakpoint.rb'
57
+ # - 'app/models/product_subscriptions/monthly_revenue_stats.rb'
58
+ # - 'app/models/allocation_processor.rb'
59
+ # - 'app/models/shareholder/termination.rb'
60
+ # - 'app/models/certificates/common.rb'
61
+ # - 'app/models/certificates/preferred.rb'
62
+ # - 'app/models/certificates/option.rb'
63
+ # - 'app/models/valuation.rb'
64
+ # - 'app/models/product/valuation_services/irc409a.rb'
65
+ # - 'app/models/breakpoint_processor.rb'
66
+ # - 'app/models/company_shareholder.rb'
67
+ # - 'app/models/certificate_expense.rb'
68
+ # - 'app/models/transaction_vesting/update_vesting.rb'
69
+ # - 'app/models/company.rb'
70
+ # - 'app/models/accrual.rb'
71
+ # - 'app/models/legal/company_jurisdiction.rb'
72
+ # - 'app/models/legal/annual_report.rb'
73
+ # - 'app/finders/captables/shareholders_with_outstanding_shares_finder.rb'
74
+ # - 'app/finders/transactions/secondaries_from_security_type_finder.rb'
75
+ # - 'app/finders/transactions/secondaries_from_equity_certificate_finder.rb'
76
+ # - 'app/finders/companies/non_restricted_access_by_user_finder.rb'
77
+ # - 'app/serializers/user_logs/data_table_serializer.rb'
78
+ # - 'app/serializers/companies/data_table_serializer.rb'
79
+ # - 'app/controllers/audit_logs_controller.rb'
80
+ # - 'app/controllers/documents_controller.rb'
81
+ # - 'app/controllers/public_comps_controller.rb'
82
+ # - 'app/controllers/valuation_wizard_controller.rb'
83
+ # - 'app/controllers/product_subscriptions_controller.rb'
84
+ # - 'app/controllers/permissions_controller.rb'
85
+ # - 'app/controllers/users_controller.rb'
86
+ # - 'app/controllers/workflows_controller.rb'
87
+ # - 'app/controllers/companies_controller.rb'
88
+ # - 'app/controllers/company_shareholders/user_invites_controller.rb'
89
+ # - 'app/controllers/companies/valuations/requests_controller.rb'
90
+ # - 'app/data_fixers/update_compounding_to_default_value_data_fixer.rb'
91
+ # - 'app/data_fixers/update_interest_rate_to_default_value_data_fixer.rb'
92
+ # - 'app/data_fixers/add_companies_to_firm_data_fixer.rb'
93
+ # - 'app/data_fixers/vestable_status_data_fixer.rb'
94
+ # - 'app/helpers/captable_graphs_helper.rb'
95
+ # - 'app/helpers/shared/svg_helper.rb'
96
+ # - 'app/services/securities/exports/main.rb'
97
+ # - 'app/services/debt_certificates/exports/debt.rb'
98
+ # - 'app/services/captables/exports/show.rb'
99
+ # - 'app/services/accruals/update.rb'
100
+ # - 'app/services/users/link_to_company_shareholder.rb'
101
+ # - 'app/services/waterfalls/exports/security.rb'
102
+ # - 'app/services/waterfalls/exports/certificate.rb'
103
+ # - 'app/services/marketing/leads/daily_updater.rb'
104
+ # - 'app/services/equity_certificates/exports/warrants.rb'
105
+ # - 'app/services/equity_certificates/exports/common.rb'
106
+ # - 'app/services/equity_certificates/exports/preferred.rb'
107
+ # - 'app/services/equity_certificates/exports/options.rb'
108
+ # - 'app/services/equity_certificates/set_option_plan_fields.rb'
109
+ # - 'app/services/equity_certificates/set_issued_shares.rb'
110
+ # - 'test/unit/models/certificate_expense_test.rb'
111
+ # - 'test/unit/models/transaction/equity_issuance/transaction_vesting_test.rb'
112
+ # - 'test/unit/models/transaction/equity_issuance_test.rb'
113
+ # - 'test/unit/models/security/non_derivative_security_test.rb'
114
+ # - 'test/unit/models/security/warrant_security_test.rb'
115
+ # - 'test/unit/models/equity_certificate_test.rb'
116
+ # - 'test/unit/models/summary_captable_test.rb'
117
+ # - 'test/unit/models/allocation_processor_test.rb'
118
+ # - 'test/unit/models/option_expense_report_processor_test.rb'
119
+ # - 'test/unit/models/firm_test.rb'
120
+ # - 'test/unit/models/guaranteed_company_shareholder_test.rb'
121
+ # - 'test/unit/models/captable_permission_test.rb'
122
+ # - 'test/unit/presenters/regression_tests/show_presenter_test.rb'
123
+ # - 'test/unit/lib/ms_sql_client_test.rb'
124
+ # - 'test/unit/helpers/irc_409a_helper_test.rb'
125
+ # - 'test/unit/services/import_service_test.rb'
126
+ # - 'test/unit/services/product_subscriptions/update_test.rb'
127
+ # - 'test/unit/services/valuations/update_ntm_options_test.rb'
128
+ # - 'test/unit/services/accruals/update_test.rb'
129
+ # - 'test/unit/services/equity_certificates/cancelled_and_repurchased_test_helper.rb'
130
+ # - 'test/factories/transaction_factory.rb'
131
+ # - 'test/regression/mock_regression_test.rb'
132
+ # - 'test/controllers/company_shareholders/user_invites_controller_test.rb'
133
+ # - 'test/controllers/shareholders/user_invites_controller_test.rb'
134
+ # - 'test/controllers/exports_controller_test.rb'
135
+ # - 'test/test_helpers/option_expense_report_test_helper.rb'
136
+ # - 'test/functional/product_subscription_functional_test.rb'
137
+ # - 'lib/test_utilities/vesting_fixture_generator.rb'
138
+ # - 'app/monitors/inactive_transaction_monitor.rb'
139
+ # - 'app/monitors/inactive_certificate_monitor.rb'
140
+ # - 'app/monitors/underlying_security_monitor.rb'
141
+ # - 'app/coordinators/security_date_group_coordinator.rb'
142
+ # - 'app/coordinators/valuation_coordinator.rb'
143
+ # - 'app/coordinators/user_coordinator.rb'
144
+ # - 'app/coordinators/item_coordinator.rb'
145
+ # - 'app/coordinators/option_plan_coordinator.rb'
146
+ # - 'app/coordinators/portfolio_company_coordinator.rb'
147
+ # - 'app/coordinators/portfolio_coordinator.rb'
148
+ # - 'app/coordinators/registration_coordinator.rb'
149
+ # - 'app/mailers/workflow_mailer.rb'
150
+ # - 'app/mailers/user_mailer.rb'
151
+ # - 'app/models/transaction/common_issuance.rb'
152
+ # - 'app/models/transaction/transfer.rb'
153
+ # - 'app/models/transaction/preferred_issuance.rb'
154
+ # - 'app/models/transaction/conversion.rb'
155
+ # - 'app/models/transaction/vesting_transaction.rb'
156
+ # - 'app/models/transaction/warrant_grant.rb'
157
+ # - 'app/models/transaction/into_transfer.rb'
158
+ # - 'app/models/ma_comp.rb'
159
+ # - 'app/models/adjustment.rb'
160
+ # - 'app/models/public_comp.rb'
161
+ # - 'app/models/discount_rate.rb'
162
+ # - 'app/models/auditors/securities/security_auditor.rb'
163
+ # - 'app/models/auditors/auditor.rb'
164
+ # - 'app/models/public_comp_list.rb'
165
+ # - 'app/models/guaranteed_permission.rb'
166
+ # - 'app/models/opm/backsolve_opm.rb'
167
+ # - 'app/models/allocation_total.rb'
168
+ # - 'app/models/cap_iq/treasury.rb'
169
+ # - 'app/models/cap_iq/stock_price_history.rb'
170
+ # - 'app/models/cap_iq/public.rb'
171
+ # - 'app/models/security/warrant_security.rb'
172
+ # - 'app/models/dlom.rb'
173
+ # - 'app/models/user_log.rb'
174
+ # - 'app/models/waterfall/target_waterfall.rb'
175
+ # - 'app/models/financial_statements/source_datum.rb'
176
+ # - 'app/models/financial_statements/cash_flow.rb'
177
+ # - 'app/models/financial_statements/spreadsheet_importer.rb'
178
+ # - 'app/models/financial_statements/cell.rb'
179
+ # - 'app/models/financial_statements/depreciation_and_amortization.rb'
180
+ # - 'app/models/financial_statements/debt_and_interest.rb'
181
+ # - 'app/models/financial_statements/google_spreadsheet.rb'
182
+ # - 'app/models/template_tags/date_tag.rb'
183
+ # - 'app/models/template_tags/certificate_id_tag.rb'
184
+ # - 'app/models/template_tags/percent_tag.rb'
185
+ # - 'app/models/template_tags/vesting_plan_description_tag.rb'
186
+ # - 'app/models/template_tags/invested_capital_tag.rb'
187
+ # - 'app/models/template_tags/price_tag.rb'
188
+ # - 'app/models/template_tags/par_value_tag.rb'
189
+ # - 'app/models/template_tags/originating_certificate_id_tag.rb'
190
+ # - 'app/models/template_tags/shares_tag.rb'
191
+ # - 'app/models/template_tags/security_name_tag.rb'
192
+ # - 'app/models/template_tags/price_per_share_tag.rb'
193
+ # - 'app/models/template_tags/xfactor_tag.rb'
194
+ # - 'app/models/template_tags/number_tag.rb'
195
+ # - 'app/models/template_tags/year_spelled_out_tag.rb'
196
+ # - 'app/models/template_tags/vesting_start_date_tag.rb'
197
+ # - 'app/models/template_tags/strike_price_tag.rb'
198
+ # - 'app/models/template_tags/currency_tag.rb'
199
+ # - 'app/models/template_tags/signature_date_tag.rb'
200
+ # - 'app/models/template_tags/date_spelled_out_tag.rb'
201
+ # - 'app/models/template_tags/signature_tag.rb'
202
+ # - 'app/models/template_tags/shares_spelled_out_tag.rb'
203
+ # - 'app/models/template_tags/option_plan_name_tag.rb'
204
+ # - 'app/models/template_tags/vesting_plan_name_tag.rb'
205
+ # - 'app/models/template/conversion_template.rb'
206
+ # - 'app/models/industry.rb'
207
+ # - 'app/models/weighted_exit.rb'
208
+ # - 'app/models/step.rb'
209
+ # - 'app/models/workflows/transaction_item.rb'
210
+ # - 'app/models/product/captable_management_software/pro.rb'
211
+ # - 'app/models/product/captable_management_software/institutional.rb'
212
+ # - 'app/models/holdings_unclaimer.rb'
213
+ # - 'app/models/summary_captable.rb'
214
+ # - 'app/models/portfolio_valuation.rb'
215
+ # - 'app/models/action.rb'
216
+ # - 'app/models/ma_comp_list.rb'
217
+ # - 'app/models/expiration_policy.rb'
218
+ # - 'app/models/company_permission.rb'
219
+ # - 'app/models/feature.rb'
220
+ # - 'app/models/notification.rb'
221
+ # - 'app/models/option_valuation/put_option.rb'
222
+ # - 'app/models/option_valuation/option_valuation.rb'
223
+ # - 'app/models/option_valuation/finnerty_put_option.rb'
224
+ # - 'app/models/option_valuation/call_option.rb'
225
+ # - 'app/models/debt_certificate.rb'
226
+ # - 'app/models/option_expense_report.rb'
227
+ # - 'app/models/time_vesting_trigger.rb'
228
+ # - 'app/models/token.rb'
229
+ # - 'app/models/exit_scenario.rb'
230
+ # - 'app/models/admin_user.rb'
231
+ # - 'app/models/security_date_group.rb'
232
+ # - 'app/models/feature_search.rb'
233
+ # - 'app/models/comp_list.rb'
234
+ # - 'app/models/concerns/excel_sheet.rb'
235
+ # - 'app/models/user.rb'
236
+ # - 'app/policies/captables/modified_at_policy.rb'
237
+ # - 'app/policies/vesting_plans/vesting_rebuild_policy.rb'
238
+ # - 'app/policies/transactions/primary_transaction_policy.rb'
239
+ # - 'app/policies/transactions/proper_certificate_policy.rb'
240
+ # - 'app/policies/vesting/rounding_policy.rb'
241
+ # - 'app/policies/equity_certificates/option_expiration_date_policy.rb'
242
+ # - 'app/presenters/debt_certificates/index_presenter.rb'
243
+ # - 'app/presenters/certificates/presenter.rb'
244
+ # - 'app/presenters/transactions/presenter.rb'
245
+ # - 'app/presenters/workflow_mailers/item_complete_presenter.rb'
246
+ # - 'app/finders/transactions/from_certificate_finder.rb'
247
+ # - 'app/finders/company_shareholder_user_finder.rb'
248
+ # - 'app/finders/shareholders/transactions_for_destroy_finder.rb'
249
+ # - 'app/finders/companies/addable_to_firm_by_user_finder.rb'
250
+ # - 'app/support_tools/promote_to_admin.rb'
251
+ # - 'app/controllers/konacha/specs_controller.rb'
252
+ # - 'app/controllers/backsolve_opms_controller.rb'
253
+ # - 'app/controllers/primary_transactions_controller.rb'
254
+ # - 'app/controllers/debt_certificates_controller.rb'
255
+ # - 'app/controllers/valuation_templates_controller.rb'
256
+ # - 'app/controllers/adjustments_controller.rb'
257
+ # - 'app/controllers/pwerms_controller.rb'
258
+ # - 'app/controllers/equity_certificates_controller.rb'
259
+ # - 'app/controllers/financing_rounds/investment_transactions_controller.rb'
260
+ # - 'app/controllers/financing_rounds/convertible_transactions_controller.rb'
261
+ # - 'app/controllers/summary_captables_controller.rb'
262
+ # - 'app/controllers/dloms_controller.rb'
263
+ # - 'app/controllers/features_controller.rb'
264
+ # - 'app/controllers/firms_controller.rb'
265
+ # - 'app/controllers/options_controller.rb'
266
+ # - 'app/controllers/comp_lists_controller.rb'
267
+ # - 'app/controllers/portfolio_company_valuations_controller.rb'
268
+ # - 'app/controllers/waterfall_summary_controller.rb'
269
+ # - 'app/controllers/company_shareholders_controller.rb'
270
+ # - 'app/controllers/returns_analysis_controller.rb'
271
+ # - 'app/controllers/welcome/investment_firms_controller.rb'
272
+ # - 'app/controllers/welcome/law_firms_controller.rb'
273
+ # - 'app/controllers/dcfs_controller.rb'
274
+ # - 'app/controllers/opms_controller.rb'
275
+ # - 'app/controllers/search_controller.rb'
276
+ # - 'app/controllers/emails_controller.rb'
277
+ # - 'app/controllers/shareholder_auditor_controller.rb'
278
+ # - 'app/controllers/ma_comps_controller.rb'
279
+ # - 'app/controllers/support_tools/admin_users_controller.rb'
280
+ # - 'app/controllers/support_tools/workflow_status_controller.rb'
281
+ # - 'app/controllers/discount_rates_controller.rb'
282
+ # - 'app/controllers/import_controller.rb'
283
+ # - 'app/controllers/ma_comp_lists_controller.rb'
284
+ # - 'app/controllers/secondary_transactions_controller.rb'
285
+ # - 'app/controllers/document_generators_controller.rb'
286
+ # - 'app/collections/equity_issuance_collection.rb'
287
+ # - 'app/collections/vesting_tranche_collection.rb'
288
+ # - 'app/data_fixers/company_admin_data_fixer.rb'
289
+ # - 'app/data_fixers/deserialize_auditor_item_column_data_fixer.rb'
290
+ # - 'app/data_fixers/update_shareholder_state_of_residency_data_fixer.rb'
291
+ # - 'app/data_fixers/duplicate_dwt_firm_permissions_data_fixer.rb'
292
+ # - 'app/services/option_expense_reports/format_columns_export.rb'
293
+ # - 'app/services/option_plans/increase_authorized_adjustment.rb'
294
+ # - 'app/services/option_plans/transfer_authorized_adjustment.rb'
295
+ # - 'app/services/option_plans/decrease_authorized_adjustment.rb'
296
+ # - 'app/services/option_plans/adjust.rb'
297
+ # - 'app/services/option_plans/create_base_adjustment.rb'
298
+ # - 'app/services/option_plans/import.rb'
299
+ # - 'app/services/securities/preferred_securities/import.rb'
300
+ # - 'app/services/securities/common_securities/import.rb'
301
+ # - 'app/services/certificate_expenses/set_tran_details.rb'
302
+ # - 'app/services/vesting_plan_triggers/import.rb'
303
+ # - 'app/services/captables/expire_cache.rb'
304
+ # - 'app/services/captables/import.rb'
305
+ # - 'app/services/vesting_plans/import.rb'
306
+ # - 'app/services/valuations/update_opm.rb'
307
+ # - 'app/services/valuations/update_backsolve_with_opm.rb'
308
+ # - 'app/services/valuations/update_comp_lists.rb'
309
+ # - 'app/services/valuations/create_with_captable_copy.rb'
310
+ # - 'app/services/valuations/update_portfolio_company_valuations.rb'
311
+ # - 'app/services/valuations/update_backsolve_opm.rb'
312
+ # - 'app/services/valuations/update_pwerm.rb'
313
+ # - 'app/services/certificates/sort_by_name.rb'
314
+ # - 'app/services/transactions/cancellations/import.rb'
315
+ # - 'app/services/transactions/sales/import.rb'
316
+ # - 'app/services/transactions/conversions/import.rb'
317
+ # - 'app/services/transactions/debt_issuances/import.rb'
318
+ # - 'app/services/transactions/preferred_issuances/import.rb'
319
+ # - 'app/services/transactions/transfers/import.rb'
320
+ # - 'app/services/transactions/cancellation_debts/import.rb'
321
+ # - 'app/services/transactions/vesting/set_default_sum_remainder.rb'
322
+ # - 'app/services/transactions/repurchases/import.rb'
323
+ # - 'app/services/transactions/exercises/import.rb'
324
+ # - 'app/services/transactions/option_grants/import.rb'
325
+ # - 'app/services/transactions/warrant_grants/import.rb'
326
+ # - 'app/services/transactions/common_issuances/import.rb'
327
+ # - 'app/services/transactions/create.rb'
328
+ # - 'app/services/transactions/repayments/import.rb'
329
+ # - 'app/services/security_date_groups/destroy.rb'
330
+ # - 'app/services/mailing_lists/subscribe.rb'
331
+ # - 'app/services/allocations/preferred_warrant_allocator.rb'
332
+ # - 'app/services/users/create_law_firm.rb'
333
+ # - 'app/services/users/create_investment_firm.rb'
334
+ # - 'app/services/captable_permissions/update_rights.rb'
335
+ # - 'app/services/company_shareholders/create_permission.rb'
336
+ # - 'app/services/company_shareholders/link_to_user.rb'
337
+ # - 'app/services/company_permissions/update_rights.rb'
338
+ # - 'app/services/shareholders/import.rb'
339
+ # - 'app/services/demos/create_option_plan.rb'
340
+ # - 'app/services/portfolio_companies/update_breakeven.rb'
341
+ # - 'app/services/portfolio_companies/update.rb'
342
+ # - 'app/services/companies/convert_demo.rb'
343
+ # - 'app/services/companies/import.rb'
344
+ # - 'app/concerns/sheetable/sheet.rb'
345
+ # - 'test/unit/monitors/transactions_without_certificates_monitor_test.rb'
346
+ # - 'test/unit/monitors/missing_primary_captable_monitor_test.rb'
347
+ # - 'test/unit/monitors/admin_user_permission_monitor_test.rb'
348
+ # - 'test/unit/monitors/dipping_breakpoint_monitor_test.rb'
349
+ # - 'test/unit/monitors/junk_permission_monitor_test.rb'
350
+ # - 'test/unit/monitors/admin_user_portfolio_company_monitor_test.rb'
351
+ # - 'test/unit/monitors/orphaned_permission_monitor_test.rb'
352
+ # - 'test/unit/monitors/legal/empty_shareholders_monitor_test.rb'
353
+ # - 'test/unit/monitors/missing_company_permission_monitor_test.rb'
354
+ # - 'test/unit/coordinators/item_coordinator_test.rb'
355
+ # - 'test/unit/coordinators/option_plan_coordinator_test.rb'
356
+ # - 'test/unit/coordinators/security_date_group_coordinator_test.rb'
357
+ # - 'test/unit/coordinators/debt_certificate_coordinator_test.rb'
358
+ # - 'test/unit/coordinators/equity_certificate_coordinator_test.rb'
359
+ # - 'test/unit/models/captable_processor_test.rb'
360
+ # - 'test/unit/models/transaction/into_conversion_test.rb'
361
+ # - 'test/unit/models/transaction/repayment_test.rb'
362
+ # - 'test/unit/models/transaction/cancellation_debt_test.rb'
363
+ # - 'test/unit/models/transaction/into_exercise_test.rb'
364
+ # - 'test/unit/models/transaction/option_grant_test.rb'
365
+ # - 'test/unit/models/transaction/conversion_test.rb'
366
+ # - 'test/unit/models/transaction/into_transfer_test.rb'
367
+ # - 'test/unit/models/transaction/transaction_test.rb'
368
+ # - 'test/unit/models/transaction/into_split_transaction_test.rb'
369
+ # - 'test/unit/models/transaction/into_sale_test.rb'
370
+ # - 'test/unit/models/transaction/into_equity_issuance_test.rb'
371
+ # - 'test/unit/models/transaction/common_issuance_test.rb'
372
+ # - 'test/unit/models/transaction/debt_issuance_test.rb'
373
+ # - 'test/unit/models/transaction/vesting_transaction_test.rb'
374
+ # - 'test/unit/models/permission_test.rb'
375
+ # - 'test/unit/models/portfolio_test.rb'
376
+ # - 'test/unit/models/payments/missing_credit_card_test.rb'
377
+ # - 'test/unit/models/auditors/securities/security_auditor_test.rb'
378
+ # - 'test/unit/models/auditors/shareholder_auditor_test.rb'
379
+ # - 'test/unit/models/auditors/auditor_test.rb'
380
+ # - 'test/unit/models/holdings_claimer_test.rb'
381
+ # - 'test/unit/models/debt_term_test.rb'
382
+ # - 'test/unit/models/shareholder_test.rb'
383
+ # - 'test/unit/models/product_subscription_test.rb'
384
+ # - 'test/unit/models/breakpoint_processor_test.rb'
385
+ # - 'test/unit/models/dcf_test.rb'
386
+ # - 'test/unit/models/time_vesting_trigger_test.rb'
387
+ # - 'test/unit/models/step_test.rb'
388
+ # - 'test/unit/models/exit_scenario_test.rb'
389
+ # - 'test/unit/models/security/security_test.rb'
390
+ # - 'test/unit/models/security/security_subclass_test.rb'
391
+ # - 'test/unit/models/debt_certificate_test.rb'
392
+ # - 'test/unit/models/financial_statements/income_statement_test.rb'
393
+ # - 'test/unit/models/company_test.rb'
394
+ # - 'test/unit/models/template/repayment_template_test.rb'
395
+ # - 'test/unit/models/fulfillment_project_test.rb'
396
+ # - 'test/unit/models/workflows/transaction_item_test.rb'
397
+ # - 'test/unit/models/workflows/action_required_email_attributes_test.rb'
398
+ # - 'test/unit/models/delayed_job_stats_test.rb'
399
+ # - 'test/unit/models/product_sku_test.rb'
400
+ # - 'test/unit/models/admin_user_test.rb'
401
+ # - 'test/unit/models/certificates/option_test.rb'
402
+ # - 'test/unit/models/certificates/common_test.rb'
403
+ # - 'test/unit/models/certificates/preferred_test.rb'
404
+ # - 'test/unit/models/portfolio_valuation_test.rb'
405
+ # - 'test/unit/models/item_test.rb'
406
+ # - 'test/unit/models/transaction_vesting/calculate_rounding_test.rb'
407
+ # - 'test/unit/models/action_test.rb'
408
+ # - 'test/unit/models/captable/duplication_test.rb'
409
+ # - 'test/unit/models/company_permission_test.rb'
410
+ # - 'test/unit/models/document_test.rb'
411
+ # - 'test/unit/models/guaranteed_permission_test.rb'
412
+ # - 'test/unit/models/hub_spot/contact_repo_test.rb'
413
+ # - 'test/unit/models/legal/board_of_director_test.rb'
414
+ # - 'test/unit/models/legal/firm_specific_company_info_test.rb'
415
+ # - 'test/unit/models/financing_round_test.rb'
416
+ # - 'test/unit/models/intercom_test.rb'
417
+ # - 'test/unit/models/document_generators/pdf_settings_test.rb'
418
+ # - 'test/unit/models/equity_certificates/transaction_interface_test.rb'
419
+ # - 'test/unit/models/concerns/adjusting_transaction_test.rb'
420
+ # - 'test/unit/models/concerns/adjustable_test.rb'
421
+ # - 'test/unit/models/concerns/auditable_test.rb'
422
+ # - 'test/unit/models/captable_test.rb'
423
+ # - 'test/unit/models/user_test.rb'
424
+ # - 'test/unit/policies/captables/modified_at_policy_test.rb'
425
+ # - 'test/unit/policies/transaction_items/partial_name_policy_test.rb'
426
+ # - 'test/unit/policies/transactions/proper_certificate_policy_test.rb'
427
+ # - 'test/unit/policies/transactions/primary_transaction_policy_test.rb'
428
+ # - 'test/unit/policies/vesting/fractional_share_setting_test.rb'
429
+ # - 'test/unit/policies/vesting/rounding_policy_test.rb'
430
+ # - 'test/unit/policies/actions/unfinished_policy_test.rb'
431
+ # - 'test/unit/policies/templates/locked_policy_test.rb'
432
+ # - 'test/unit/policies/items/status_policy_test.rb'
433
+ # - 'test/unit/policies/document_generators/pending_policy_test.rb'
434
+ # - 'test/unit/policies/equity_certificates/option_expiration_date_policy_test.rb'
435
+ # - 'test/unit/presenters/payments/show_presenter_test.rb'
436
+ # - 'test/unit/presenters/captables/equity_plan_presenter_test.rb'
437
+ # - 'test/unit/presenters/product_subscriptions/show_presenter_test.rb'
438
+ # - 'test/unit/presenters/product_subscriptions/index_presenter_test.rb'
439
+ # - 'test/unit/presenters/workflows/item_presenter_test.rb'
440
+ # - 'test/unit/presenters/certificates/presenter_test.rb'
441
+ # - 'test/unit/presenters/transactions/index_presenter_test.rb'
442
+ # - 'test/unit/presenters/workflow_mailers/action_required_presenter_test.rb'
443
+ # - 'test/unit/presenters/workflow_mailers/presenter_test.rb'
444
+ # - 'test/unit/presenters/workflow_mailers/workflow_complete_presenter_test.rb'
445
+ # - 'test/unit/presenters/workflow_mailers/item_complete_presenter_test.rb'
446
+ # - 'test/unit/presenters/user_invite_mailers/presenter_test.rb'
447
+ # - 'test/unit/finders/transactions/from_certificate_finder_test.rb'
448
+ # - 'test/unit/finders/transactions/to_certificate_finder_test.rb'
449
+ # - 'test/unit/finders/transactions/secondaries_from_debt_finder_test.rb'
450
+ # - 'test/unit/finders/accruals/debt_issuance_ids_finder_test.rb'
451
+ # - 'test/unit/finders/accruals/captable_ids_finder_test.rb'
452
+ # - 'test/unit/finders/company_shareholder_user_finder_test.rb'
453
+ # - 'test/unit/finders/shareholders/transactions_for_destroy_finder_test.rb'
454
+ # - 'test/unit/finders/shareholders/option_certificate_finder_test.rb'
455
+ # - 'test/unit/finders/companies/addable_to_firm_by_user_finder_test.rb'
456
+ # - 'test/unit/finders/companies/non_restricted_access_by_user_finder_test.rb'
457
+ # - 'test/unit/lib/tasks/cron_tasks_test.rb'
458
+ # - 'test/unit/lib/ms_sql_importer_test.rb'
459
+ # - 'test/unit/lib/monkey_patches/array_test.rb'
460
+ # - 'test/unit/lib/monkey_patches/active_record_test.rb'
461
+ # - 'test/unit/lib/monkey_patches/date_test.rb'
462
+ # - 'test/unit/lib/monkey_patches/string_test.rb'
463
+ # - 'test/unit/lib/monkey_patches/integer_test.rb'
464
+ # - 'test/unit/lib/monkey_patches/numeric_test.rb'
465
+ # - 'test/unit/lib/monkey_patches/nil_class_test.rb'
466
+ # - 'test/unit/lib/xlsx_importer_test.rb'
467
+ # - 'test/unit/support_tools/promote_to_admin_test.rb'
468
+ # - 'test/unit/fixtures/transaction_without_certificate_data_fixer_test.rb'
469
+ # - 'test/unit/publishers/option_expense_reports/publish_generate_event_test.rb'
470
+ # - 'test/unit/publishers/captables/publish_export_event_test.rb'
471
+ # - 'test/unit/publishers/workflows/publish_execute_event_test.rb'
472
+ # - 'test/unit/publishers/valuation_services/irc409as/publish_subscribe_event_test.rb'
473
+ # - 'test/unit/validators/transactions/restricted_stock_validator_test.rb'
474
+ # - 'test/unit/validators/captable_permissions/less_than_company_permission_validator_test.rb'
475
+ # - 'test/unit/collections/acts_as_collection_test.rb'
476
+ # - 'test/unit/collections/vesting_tranche_collection_test.rb'
477
+ # - 'test/unit/data_fixers/missing_primary_captable_data_fixer_test.rb'
478
+ # - 'test/unit/data_fixers/add_companies_to_firm_data_fixer_test.rb'
479
+ # - 'test/unit/data_fixers/orphaned_permission_data_fixer_test.rb'
480
+ # - 'test/unit/data_fixers/missing_company_permission_data_fixer_test.rb'
481
+ # - 'test/unit/data_fixers/deserialize_auditor_item_column_data_fixer_test.rb'
482
+ # - 'test/unit/data_fixers/junk_permission_data_fixer_test.rb'
483
+ # - 'test/unit/data_fixers/update_interest_rate_to_default_value_data_fixer_test.rb'
484
+ # - 'test/unit/data_fixers/admin_user_portfolio_company_data_fixer_test.rb'
485
+ # - 'test/unit/data_fixers/polymorphic_type_data_fixer_test.rb'
486
+ # - 'test/unit/data_fixers/company_admin_data_fixer_test.rb'
487
+ # - 'test/unit/helpers/templates_helper_test.rb'
488
+ # - 'test/unit/helpers/sheets_helper_test.rb'
489
+ # - 'test/unit/helpers/welcome_helper_test.rb'
490
+ # - 'test/unit/helpers/securities_helper_test.rb'
491
+ # - 'test/unit/helpers/product_subscriptions_helper_test.rb'
492
+ # - 'test/unit/helpers/string_helper_test.rb'
493
+ # - 'test/unit/helpers/option_expense_report_helper_test.rb'
494
+ # - 'test/unit/helpers/navbar_helper_test.rb'
495
+ # - 'test/unit/helpers/flash_helper_test.rb'
496
+ # - 'test/unit/services/option_expense_reports/get_risk_free_rates_test.rb'
497
+ # - 'test/unit/services/option_plans/import_test.rb'
498
+ # - 'test/unit/services/option_plans/update_test.rb'
499
+ # - 'test/unit/services/option_plans/increase_authorized_adjustment_test.rb'
500
+ # - 'test/unit/services/option_plans/transfer_authorized_adjustment_test.rb'
501
+ # - 'test/unit/services/option_plans/adjust_test.rb'
502
+ # - 'test/unit/services/option_plans/create_base_adjustment_test.rb'
503
+ # - 'test/unit/services/securities/preferred_securities/import_test.rb'
504
+ # - 'test/unit/services/securities/common_securities/import_test.rb'
505
+ # - 'test/unit/services/securities/exports/main_test.rb'
506
+ # - 'test/unit/services/vesting_plan_triggers/import_test.rb'
507
+ # - 'test/unit/services/products/invoice_test.rb'
508
+ # - 'test/unit/services/captables/set_as_primary_test.rb'
509
+ # - 'test/unit/services/captables/import_test.rb'
510
+ # - 'test/unit/services/captables/update_test.rb'
511
+ # - 'test/unit/services/captables/search_test.rb'
512
+ # - 'test/unit/services/captables/exports/show_test.rb'
513
+ # - 'test/unit/services/vesting_plans/import_test.rb'
514
+ # - 'test/unit/services/vesting_plans/update_test.rb'
515
+ # - 'test/unit/services/product_subscriptions/verify_product_access_test.rb'
516
+ # - 'test/unit/services/product_subscriptions/verify_feature_access_test.rb'
517
+ # - 'test/unit/services/product_subscriptions/charge_test.rb'
518
+ # - 'test/unit/services/product_subscriptions/invalidate_product_test.rb'
519
+ # - 'test/unit/services/workflows/execute_test.rb'
520
+ # - 'test/unit/services/workflows/send_item_complete_email_test.rb'
521
+ # - 'test/unit/services/workflows/advance_test.rb'
522
+ # - 'test/unit/services/valuations/update_public_comp_list_test.rb'
523
+ # - 'test/unit/services/valuations/update_comp_lists_test.rb'
524
+ # - 'test/unit/services/valuations/weighted_exit_test.rb'
525
+ # - 'test/unit/services/valuations/update_dcf_test.rb'
526
+ # - 'test/unit/services/valuations/update_backsolve_opm_mvic_test.rb'
527
+ # - 'test/unit/services/valuations/update_opm_test.rb'
528
+ # - 'test/unit/services/valuations/update_ma_comp_list_test.rb'
529
+ # - 'test/unit/services/valuations/update_pwerm_test.rb'
530
+ # - 'test/unit/services/valuations/update_volatility_test.rb'
531
+ # - 'test/unit/services/valuations/update_backsolve_with_opm_test.rb'
532
+ # - 'test/unit/services/valuations/update_weighted_exit_test.rb'
533
+ # - 'test/unit/services/valuations/update_dlom_test.rb'
534
+ # - 'test/unit/services/valuations/update_backsolve_opm_test.rb'
535
+ # - 'test/unit/services/valuations/update_portfolio_company_valuations_test.rb'
536
+ # - 'test/unit/services/valuations/update_names_test.rb'
537
+ # - 'test/unit/services/valuations/update_discount_rate_test.rb'
538
+ # - 'test/unit/services/certificates/sort_by_name_test.rb'
539
+ # - 'test/unit/services/permissions/update_rights_test.rb'
540
+ # - 'test/unit/services/transactions/undestroy_test.rb'
541
+ # - 'test/unit/services/transactions/cancellations/import_test.rb'
542
+ # - 'test/unit/services/transactions/sales/import_test.rb'
543
+ # - 'test/unit/services/transactions/conversions/import_test.rb'
544
+ # - 'test/unit/services/transactions/debt_issuances/import_test.rb'
545
+ # - 'test/unit/services/transactions/preferred_issuances/import_test.rb'
546
+ # - 'test/unit/services/transactions/transfers/import_test.rb'
547
+ # - 'test/unit/services/transactions/vesting/set_default_sum_remainder_test.rb'
548
+ # - 'test/unit/services/transactions/repurchases/import_test.rb'
549
+ # - 'test/unit/services/transactions/exercises/import_test.rb'
550
+ # - 'test/unit/services/transactions/option_grants/import_test.rb'
551
+ # - 'test/unit/services/transactions/warrant_grants/import_test.rb'
552
+ # - 'test/unit/services/transactions/common_issuances/import_test.rb'
553
+ # - 'test/unit/services/transactions/repayments/import_test.rb'
554
+ # - 'test/unit/services/security_date_groups/destroy_test.rb'
555
+ # - 'test/unit/services/security_date_groups/find_or_create_for_equity_certificate_test.rb'
556
+ # - 'test/unit/services/allocations/preferred_uncapped_participation_test.rb'
557
+ # - 'test/unit/services/allocations/preferred_warrant_allocator_test.rb'
558
+ # - 'test/unit/services/allocations/preferred_test.rb'
559
+ # - 'test/unit/services/allocations/preferred_capped_participation_test.rb'
560
+ # - 'test/unit/services/allocations/common_warrant_allocator_test.rb'
561
+ # - 'test/unit/services/users/create_law_firm_test.rb'
562
+ # - 'test/unit/services/users/create_investment_firm_test.rb'
563
+ # - 'test/unit/services/users/destroy_permissions_test.rb'
564
+ # - 'test/unit/services/users/lockout_admin_test.rb'
565
+ # - 'test/unit/services/users/send_invite_email_test.rb'
566
+ # - 'test/unit/services/users/link_to_company_shareholder_test.rb'
567
+ # - 'test/unit/services/captable_permissions/update_rights_test.rb'
568
+ # - 'test/unit/services/partner_stripe_accounts/update_charge_test.rb'
569
+ # - 'test/unit/services/marketing/leads/daily_updater_test.rb'
570
+ # - 'test/unit/services/marketing/leads/filter_test.rb'
571
+ # - 'test/unit/services/marketing/events/record_option_expense_report_generated_test.rb'
572
+ # - 'test/unit/services/marketing/events/record_captable_exported_test.rb'
573
+ # - 'test/unit/services/marketing/events/record_workflow_executed_test.rb'
574
+ # - 'test/unit/services/company_shareholders/link_to_user_test.rb'
575
+ # - 'test/unit/services/company_permissions/update_rights_test.rb'
576
+ # - 'test/unit/services/legal/firm_specific_company_infos/import_test.rb'
577
+ # - 'test/unit/services/legal/board_of_directors/import_test.rb'
578
+ # - 'test/unit/services/shareholders/import_test.rb'
579
+ # - 'test/unit/services/shareholders/exports/index_detailed_test.rb'
580
+ # - 'test/unit/services/shareholders/exports/index_test.rb'
581
+ # - 'test/unit/services/demos/create_shareholders_test.rb'
582
+ # - 'test/unit/services/portfolio_companies/update_test.rb'
583
+ # - 'test/unit/services/companies/import_test.rb'
584
+ # - 'test/unit/services/companies/valuations/requests/create_test.rb'
585
+ # - 'test/unit/services/companies/create_test.rb'
586
+ # - 'test/unit/services/equity_certificates/find_or_create_test.rb'
587
+ # - 'test/unit/services/equity_certificates/auto_name_test.rb'
588
+ # - 'test/unit/services/equity_certificates/set_option_plan_fields_test.rb'
589
+ # - 'test/unit/services/equity_certificates/set_exercise_proceeds_test.rb'
590
+ # - 'test/unit/concerns/itemizable_test.rb'
591
+ # - 'test/unit/concerns/permissable_test.rb'
592
+ # - 'test/system/user_invite_system_test.rb'
593
+ # - 'test/system/utilities/download_helper.rb'
594
+ # - 'test/controllers/securities/export_requests_controller_test.rb'
595
+ # - 'test/controllers/waterfall_summary_controller_test.rb'
596
+ # - 'test/controllers/document_generators_controller_test.rb'
597
+ # - 'test/controllers/search_controller_test.rb'
598
+ # - 'test/controllers/captables/export_requests_controller_test.rb'
599
+ # - 'test/controllers/primary_transactions_controller_test.rb'
600
+ # - 'test/controllers/valuation_wizard_controller_test.rb'
601
+ # - 'test/controllers/waterfalls_controller_test.rb'
602
+ # - 'test/controllers/shareholders_controller_test.rb'
603
+ # - 'test/controllers/welcome/investment_firms_controller_test.rb'
604
+ # - 'test/controllers/welcome/law_firms_controller_test.rb'
605
+ # - 'test/controllers/permissions/user_invites_controller_test.rb'
606
+ # - 'test/controllers/public_comps_controller_test.rb'
607
+ # - 'test/controllers/option_expense_report_wizard_controller_test.rb'
608
+ # - 'test/controllers/ma_comp_lists_controller_test.rb'
609
+ # - 'test/controllers/opms_controller_test.rb'
610
+ # - 'test/controllers/captable_auditors_controller_test.rb'
611
+ # - 'test/controllers/support_tools/captable_process_requests_controller_test.rb'
612
+ # - 'test/controllers/support_tools/workflow_emails_controller_test.rb'
613
+ # - 'test/controllers/support_tools/payments_controller_test.rb'
614
+ # - 'test/controllers/support_tools/delayed_jobs_controller_test.rb'
615
+ # - 'test/controllers/partner_stripe_accounts_controller_test.rb'
616
+ # - 'test/controllers/waterfalls/export_requests_controller_test.rb'
617
+ # - 'test/controllers/equity_certificates_controller_test.rb'
618
+ # - 'test/controllers/sessions_controller_test.rb'
619
+ # - 'test/controllers/portfolios_controller_test.rb'
620
+ # - 'test/controllers/legal/annual_reports_controller_test.rb'
621
+ # - 'test/controllers/product_subscriptions_controller_test.rb'
622
+ # - 'test/controllers/shareholders/export_requests_controller_test.rb'
623
+ # - 'test/controllers/returns_analysis_controller_test.rb'
624
+ # - 'test/controllers/concerns/authorization_management_test.rb'
625
+ # - 'test/controllers/concerns/product_subscription_management_test.rb'
626
+ # - 'test/controllers/concerns/resource_loader_test.rb'
627
+ # - 'test/functional/workflow_emails_functional_test.rb'
628
+ # - 'test/functional/vesting_functional_tests/vesting_reconciliation_in_final_period_functional_test.rb'
629
+ # - 'test/functional/vesting_functional_tests/basic_vesting_functional_test.rb'
630
+ # - 'test/functional/company_shareholder_invite_user_functional_test.rb'
631
+ # - 'test/functional/users_shareholders_functional_test.rb'
632
+ # - 'test/functional/share_total_functional_test.rb'
633
+ # - 'test/functional/import_service_functional_test.rb'
634
+ # - 'test/functional/captable_copy_functional_test.rb'
635
+ # - 'test/functional/auditable_test.rb'
636
+ # - 'test/functional/transaction_functional_test.rb'
637
+ # - 'test/functional/workflow_mailers/workflow_complete_functional_test.rb'
638
+ # - 'test/functional/workflow_mailers/action_required_functional_test.rb'
639
+ # - 'test/functional/permission_functional_test.rb'
640
+ # - 'lib/test_utilities/system_tests.rb'
641
+ # - 'lib/monkey_patches/delayed_job.rb'
642
+ # - 'lib/ms_sql/table_formatter.rb'
643
+ # - 'lib/ms_sql/logger.rb'
644
+ # - 'app/models/opm/opm.rb'
645
+ # - 'app/models/waterfall/waterfall.rb'
646
+ # - 'app/models/waterfall/pwerm_scenario.rb'
647
+ # - 'app/models/financial_statements/equity_schedule.rb'
648
+ # - 'app/models/financial_statements/income_statement.rb'
649
+ # - 'app/models/financial_statements/balance_sheet.rb'
650
+ # - 'app/models/financial_statements/working_capital.rb'
651
+ # - 'app/models/portfolio_company.rb'
652
+ # - 'app/models/allocation.rb'
653
+ # - 'app/models/dcf.rb'
654
+ # - 'app/models/captable/duplication.rb'
655
+ # - 'app/presenters/product_subscriptions/show_presenter.rb'
656
+ # - 'app/presenters/workflow_mailers/action_required_presenter.rb'
657
+ # - 'app/controllers/waterfalls_controller.rb'
658
+ # - 'app/controllers/transactions_controller.rb'
659
+ # - 'app/controllers/concerns/authorization_management.rb'
660
+ # - 'app/views/financing_round_transactions/show.json.jbuilder'
661
+ # - 'app/views/financing_rounds/convertible_transactions/show.json.jbuilder'
662
+ # - 'app/views/financing_rounds/show.json.jbuilder'
663
+ # - 'app/views/new_design/financing_round_transactions/show.json.jbuilder'
664
+ # - 'app/views/new_design/financing_rounds/convertible_transactions/show.json.jbuilder'
665
+ # - 'app/views/new_design/financing_rounds/show.json.jbuilder'
666
+ # - 'app/helpers/valuation_reports_helper.rb'
667
+ # - 'app/helpers/financing_rounds_helper.rb'
668
+ # - 'app/helpers/string_helper.rb'
669
+ # - 'app/helpers/adjustments_helper.rb'
670
+ # - 'app/helpers/product_subscriptions_helper.rb'
671
+ # - 'app/services/vesting_plans/update.rb'
672
+ # - 'app/services/companies/create.rb'
673
+ # - 'test/unit/coordinators/master_breakpoint_coordinator_test.rb'
674
+ # - 'test/unit/models/workflow_test.rb'
675
+ # - 'test/unit/models/template/certificate_template_test.rb'
676
+ # - 'test/unit/models/product/captable_management_software/institutional_test.rb'
677
+ # - 'test/unit/policies/workflows/action_required_email_type_policy_test.rb'
678
+ # - 'test/unit/fixtures/transaction_equity_certificate_fixtures_test.rb'
679
+ # - 'test/unit/fixtures/transaction_fixtures_test.rb'
680
+ # - 'test/unit/helpers/adjustments_helper_test.rb'
681
+ # - 'test/unit/helpers/transactions_helper_test.rb'
682
+ # - 'test/unit/services/company_shareholders/create_permission_test.rb'
683
+ # - 'test/unit/services/shareholders/destroy_test.rb'
684
+ # - 'test/unit/services/shareholders/merge_test.rb'
685
+ # - 'test/unit/services/equity_certificates/set_repurchased_and_returned_shares_test.rb'
686
+ # - 'test/unit/services/equity_certificates/set_cancelled_and_removed_shares_test.rb'
687
+ # - 'test/unit/services/equity_certificates/set_cancelled_and_returned_shares_test.rb'
688
+ # - 'test/unit/services/equity_certificates/set_repurchased_and_removed_shares_test.rb'
689
+ # - 'test/system/shareholder_invite_system_test.rb'
690
+ # - 'test/system/scenarios_system_test.rb'
691
+ # - 'test/controllers/users_controller_test.rb'
692
+ # - 'test/controllers/financing_rounds/investment_transactions_controller_test.rb'
693
+ # - 'test/controllers/financing_rounds/convertible_transactions_controller_test.rb'
694
+ # - 'test/functional/certificate_sort_functional_test.rb'
695
+ # - 'config/environments/production.rb'
696
+ # - 'config/initializers/assets.rb'
697
+ # - 'config/initializers/konacha.rb'
698
+ # - 'lib/tasks/automation/konacha.rake'
699
+ # - 'app/models/transaction/equity_issuance/virtual_vesting.rb'
700
+ # - 'app/models/debt_term.rb'
701
+ # - 'app/models/concerns/investor.rb'
702
+ # - 'app/models/concerns/acts_as_spreadsheet.rb'
703
+ # - 'app/models/concerns/date_parsable.rb'
704
+ # - 'app/controllers/shareholders_controller.rb'
705
+ # - 'app/helpers/round_helper.rb'
706
+ # - 'app/services/equity_certificates/set_exercise_proceeds.rb'
707
+ # - 'app/concerns/formula.rb'
708
+ # - 'test/unit/utilities/helpers.rb'
709
+ # - 'test/unit/services/captables/expire_cache_test.rb'
710
+ # - 'test/unit/services/leads/send_upload_lead_test.rb'
711
+ # - 'test/system/option_grant_secondaries_system_test.rb'
712
+ # - 'test/controllers/transactions_controller_test.rb'
713
+ # - 'test/controllers/companies_controller_test.rb'
714
+ # - 'test/controllers/financing_rounds_controller_test.rb'
715
+ # - 'config/routes/captables.rb'
716
+ # - 'lib/tasks/one_offs/useful/most_active_users.rake'
717
+ # - 'lib/tasks/manage_expirations.rake'
718
+ # - 'lib/xlsx_importer.rb'
719
+ # - 'test/system/firm_and_portfolio_system_test.rb'
720
+ # - 'test/unit/mailers/workflows/item_complete_mailer_test.rb'
721
+ # - 'test/system/utilities/firm.rb'
722
+ # - 'lib/ms_sql/client.rb'
723
+ # - 'app/models/transaction/debt_issuance/virtual_accrual.rb'
724
+ # - 'app/models/valuation_history.rb'
725
+ # - 'app/models/item.rb'
726
+ # - 'app/models/share_total.rb'
727
+ # - 'app/models/cap_iq/client.rb'
728
+ # - 'app/models/cap_iq/company.rb'
729
+ # - 'app/models/cap_iq/ma.rb'
730
+ # - 'app/models/security/common_security.rb'
731
+ # - 'app/models/waterfall/waterfall_processor.rb'
732
+ # - 'app/models/waterfall/pwerm.rb'
733
+ # - 'app/models/option_plan.rb'
734
+ # - 'app/models/template/template.rb'
735
+ # - 'app/models/forfeiture_rate.rb'
736
+ # - 'app/models/transaction_vesting/calculate_rounding.rb'
737
+ # - 'app/models/permission.rb'
738
+ # - 'app/models/concerns/copyable.rb'
739
+ # - 'app/models/concerns/acts_as_google_sheet.rb'
740
+ # - 'app/models/custom_permission.rb'
741
+ # - 'app/models/vesting_plan.rb'
742
+ # - 'app/policies/transaction_items/partial_name_policy.rb'
743
+ # - 'app/policies/workflows/action_required_email_type_policy.rb'
744
+ # - 'app/policies/templates/locked_policy.rb'
745
+ # - 'app/policies/items/status_policy.rb'
746
+ # - 'app/policies/document_generators/pending_policy.rb'
747
+ # - 'app/finders/transactions/secondaries_from_debt_finder.rb'
748
+ # - 'app/controllers/application_controller.rb'
749
+ # - 'app/controllers/financing_rounds/transactions_controller.rb'
750
+ # - 'app/controllers/source_data_controller.rb'
751
+ # - 'app/controllers/concerns/resource_loader.rb'
752
+ # - 'app/controllers/concerns/standard_functions.rb'
753
+ # - 'app/data_fixers/security_name_data_fixer.rb'
754
+ # - 'app/helpers/valuations_helper.rb'
755
+ # - 'app/helpers/shareholders_helper.rb'
756
+ # - 'app/helpers/option_expense_report_helper.rb'
757
+ # - 'app/helpers/notifications_helper.rb'
758
+ # - 'app/helpers/comp_lists_helper.rb'
759
+ # - 'app/helpers/auditor_helper.rb'
760
+ # - 'app/helpers/document_generators_helper.rb'
761
+ # - 'app/helpers/equity_certificates_helper.rb'
762
+ # - 'app/helpers/waterfalls_helper.rb'
763
+ # - 'app/helpers/flash_helper.rb'
764
+ # - 'app/helpers/audit_logs_helper.rb'
765
+ # - 'app/helpers/application_helper.rb'
766
+ # - 'app/services/captables/create.rb'
767
+ # - 'app/services/workflows/advance.rb'
768
+ # - 'app/services/valuations/update_dcf.rb'
769
+ # - 'app/services/valuations/create_with_blank_captable.rb'
770
+ # - 'app/services/valuations/update_volatility.rb'
771
+ # - 'app/services/valuations/update_backsolve_opm_mvic.rb'
772
+ # - 'app/services/valuations/update_ma_comp_list.rb'
773
+ # - 'app/services/valuations/update_public_comp_list.rb'
774
+ # - 'app/services/valuations/update_names.rb'
775
+ # - 'app/services/valuations/update_dlom.rb'
776
+ # - 'app/services/valuations/update_discount_rate.rb'
777
+ # - 'app/services/valuations/update_weighted_exit.rb'
778
+ # - 'app/services/valuations/update_ntm_options.rb'
779
+ # - 'app/services/valuations/create.rb'
780
+ # - 'app/services/shareholders/exports/index_detailed.rb'
781
+ # - 'app/services/demos/create_captable.rb'
782
+ # - 'app/concerns/accessible.rb'
783
+ # - 'app/concerns/liquid_filters.rb'
784
+ # - 'app/concerns/sheetable/row.rb'
785
+ # - 'app/concerns/sheetable/cell.rb'
786
+ # - 'app/concerns/certificate_export.rb'
787
+ # - 'app/concerns/permissable.rb'
788
+ # - 'test/unit/mailers/mailer_test_helper.rb'
789
+ # - 'test/unit/data_fixers/fix_by_destroying_interface_tests.rb'
790
+ # - 'test/unit/data_fixers/fix_by_deleting_interface_tests.rb'
791
+ # - 'app/monitors/warrant_grant_missing_security_monitor.rb'
792
+ # - 'app/monitors/orphaned_captable_monitor.rb'
793
+ # - 'app/monitors/admin_user_portfolio_company_monitor.rb'
794
+ # - 'app/monitors/acts_as_monitor.rb'
795
+ # - 'app/monitors/time_vesting_trigger_units_monitor.rb'
796
+ # - 'app/monitors/junk_permission_monitor.rb'
797
+ # - 'app/monitors/dipping_breakpoint_monitor.rb'
798
+ # - 'app/monitors/orphaned_permission_monitor.rb'
799
+ # - 'app/coordinators/coordinator.rb'
800
+ # - 'app/mailers/workflows/action_required_mailer.rb'
801
+ # - 'app/mailers/workflows/item_complete_mailer.rb'
802
+ # - 'app/mailers/contact_mailer.rb'
803
+ # - 'app/mailers/user_invite_mailer.rb'
804
+ # - 'app/mailers/valuation_calculation_mailer.rb'
805
+ # - 'app/mailers/marketing_mailer.rb'
806
+ # - 'app/models/payment.rb'
807
+ # - 'app/models/intercom.rb'
808
+ # - 'app/models/transaction/into_conversion.rb'
809
+ # - 'app/models/transaction/into_sale.rb'
810
+ # - 'app/models/transaction/sale.rb'
811
+ # - 'app/models/transaction/valuation_option_grant.rb'
812
+ # - 'app/models/transaction/into_split_transaction.rb'
813
+ # - 'app/models/transaction/option_grant.rb'
814
+ # - 'app/models/transaction/into_equity_issuance.rb'
815
+ # - 'app/models/transaction/split_reduction_transaction.rb'
816
+ # - 'app/models/transaction/into_exercise.rb'
817
+ # - 'app/models/transaction/into_debt_issuance.rb'
818
+ # - 'app/models/options/guaranteed_plan.rb'
819
+ # - 'app/models/auditors/shareholder_auditor.rb'
820
+ # - 'app/models/auditors/equity_certificate_auditor.rb'
821
+ # - 'app/models/option_expense_report_processor.rb'
822
+ # - 'app/models/workflow.rb'
823
+ # - 'app/models/firm.rb'
824
+ # - 'app/models/missing_product_subscription.rb'
825
+ # - 'app/models/cap_iq/closeprice.rb'
826
+ # - 'app/models/cap_iq/treasury_oer.rb'
827
+ # - 'app/models/security/option_security.rb'
828
+ # - 'app/models/document_generator.rb'
829
+ # - 'app/models/document.rb'
830
+ # - 'app/models/financing_round.rb'
831
+ # - 'app/models/holdings_claimer.rb'
832
+ # - 'app/models/small_stock_risk_premium.rb'
833
+ # - 'app/models/workflows/action_required_email_attributes.rb'
834
+ # - 'app/models/audit_item.rb'
835
+ # - 'app/models/firm_permission.rb'
836
+ # - 'app/models/portfolio_company_valuation.rb'
837
+ # - 'app/models/transaction_vesting/virtual_update_vesting.rb'
838
+ # - 'app/models/delayed_job_stats.rb'
839
+ # - 'app/models/vesting_periods.rb'
840
+ # - 'app/models/missing_user.rb'
841
+ # - 'app/models/progress_tracker.rb'
842
+ # - 'app/models/missing_company_shareholder.rb'
843
+ # - 'app/models/valuation_report.rb'
844
+ # - 'app/models/product_subscription.rb'
845
+ # - 'app/models/mutex_processor.rb'
846
+ # - 'app/models/product_sku.rb'
847
+ # - 'app/models/line_item.rb'
848
+ # - 'app/models/captable_processor.rb'
849
+ # - 'app/models/vesting_trigger.rb'
850
+ # - 'app/models/multi_processor.rb'
851
+ # - 'app/models/equity_certificates/transaction_interface.rb'
852
+ # - 'app/models/equity_term.rb'
853
+ # - 'app/models/concerns/adjustable.rb'
854
+ # - 'app/models/concerns/nameable.rb'
855
+ # - 'app/models/concerns/summation_attributes.rb'
856
+ # - 'app/models/concerns/into_transaction.rb'
857
+ # - 'app/models/concerns/secondary_transaction.rb'
858
+ # - 'app/models/concerns/string_to_decimal.rb'
859
+ # - 'app/models/concerns/subscriber.rb'
860
+ # - 'app/models/concerns/percent_parsable.rb'
861
+ # - 'app/models/concerns/state_parsable.rb'
862
+ # - 'app/models/concerns/coordinatable.rb'
863
+ # - 'app/models/concerns/boolean_parsable.rb'
864
+ # - 'app/models/captable_permission.rb'
865
+ # - 'app/models/company_specific_discount.rb'
866
+ # - 'app/policies/option_expense_reports/measurement_date_policy.rb'
867
+ # - 'app/policies/product_subscriptions/access_policy.rb'
868
+ # - 'app/policies/product_subscriptions/company_access_via_firm_policy.rb'
869
+ # - 'app/policies/transactions/readable_type_policy.rb'
870
+ # - 'app/policies/marketing/leads/subscription_tracking_policy.rb'
871
+ # - 'app/policies/legal/access_policy.rb'
872
+ # - 'app/presenters/payments/show_presenter.rb'
873
+ # - 'app/presenters/base_presenter.rb'
874
+ # - 'app/presenters/debt_certificates/show_presenter.rb'
875
+ # - 'app/presenters/product_subscriptions/index_presenter.rb'
876
+ # - 'app/presenters/workflows/item_presenter.rb'
877
+ # - 'app/presenters/welcome/private_company_presenter.rb'
878
+ # - 'app/presenters/transactions/into_exercises/edit_presenter.rb'
879
+ # - 'app/presenters/workflow_mailers/presenter.rb'
880
+ # - 'app/presenters/user_invite_mailers/presenter.rb'
881
+ # - 'app/finders/shareholders/option_certificate_finder.rb'
882
+ # - 'app/finders/inactive_admin_user_finder.rb'
883
+ # - 'app/validators/transactions/non_restricted_stock_validator.rb'
884
+ # - 'app/validators/transactions/restricted_stock_validator.rb'
885
+ # - 'app/validators/captable_permissions/less_than_company_permission_validator.rb'
886
+ # - 'app/validators/strong_password_validator.rb'
887
+ # - 'app/controllers/captables_controller.rb'
888
+ # - 'app/controllers/expiration_policies_controller.rb'
889
+ # - 'app/controllers/exit_scenarios_controller.rb'
890
+ # - 'app/controllers/option_expense_report_wizard_controller.rb'
891
+ # - 'app/controllers/confirmations/passwords_controller.rb'
892
+ # - 'app/controllers/confirmations_controller.rb'
893
+ # - 'app/controllers/concerns/user_log_management.rb'
894
+ # - 'app/controllers/concerns/product_subscription_management.rb'
895
+ # - 'app/collections/debt_issuance_collection.rb'
896
+ # - 'app/collections/delay_save_without_coordinators.rb'
897
+ # - 'app/collections/acts_as_collection.rb'
898
+ # - 'app/data_fixers/permissions_sync_data_fixer.rb'
899
+ # - 'app/data_fixers/acts_as_data_fixer.rb'
900
+ # - 'app/data_fixers/paranoia_data_fixer.rb'
901
+ # - 'app/data_fixers/remove_duplicate_documents_data_fixer.rb'
902
+ # - 'app/data_fixers/polymorphic_type_data_fixer.rb'
903
+ # - 'app/helpers/documents_helper.rb'
904
+ # - 'app/helpers/valuation_templates_helper.rb'
905
+ # - 'app/helpers/partner_stripe_accounts_helper.rb'
906
+ # - 'app/helpers/welcome_helper.rb'
907
+ # - 'app/helpers/form_helper.rb'
908
+ # - 'app/helpers/permissions_helper.rb'
909
+ # - 'app/helpers/securities_helper.rb'
910
+ # - 'app/helpers/datetime_helper.rb'
911
+ # - 'app/helpers/navbar_helper.rb'
912
+ # - 'app/helpers/import_helper.rb'
913
+ # - 'app/helpers/toggler_helper.rb'
914
+ # - 'app/helpers/payments_helper.rb'
915
+ # - 'app/helpers/workflows_helper.rb'
916
+ # - 'app/helpers/breakpoints_helper.rb'
917
+ # - 'app/helpers/templates_helper.rb'
918
+ # - 'app/helpers/icon_helper.rb'
919
+ # - 'app/helpers/data_helper.rb'
920
+ # - 'app/helpers/debt_certificates_helper.rb'
921
+ # - 'app/helpers/states_helper.rb'
922
+ # - 'app/helpers/portfolio_valuations_helper.rb'
923
+ # - 'app/helpers/option_plans_helper.rb'
924
+ # - 'app/helpers/pagination_helper.rb'
925
+ # - 'app/helpers/transaction_forms_helper.rb'
926
+ # - 'app/helpers/irc_409a_helper.rb'
927
+ # - 'app/helpers/confirmations_helper.rb'
928
+ # - 'app/services/option_expense_reports/get_risk_free_rates.rb'
929
+ # - 'app/services/option_plans/update.rb'
930
+ # - 'app/services/options/update_plan_after_equity_certificate_changes.rb'
931
+ # - 'app/services/products/invoice.rb'
932
+ # - 'app/services/captables/downgrade_permissions.rb'
933
+ # - 'app/services/captables/search.rb'
934
+ # - 'app/services/captables/copy.rb'
935
+ # - 'app/services/captables/set_as_primary.rb'
936
+ # - 'app/services/captables/update.rb'
937
+ # - 'app/services/public_comps/get_market_data.rb'
938
+ # - 'app/services/product_subscriptions/start_billing.rb'
939
+ # - 'app/services/product_subscriptions/verify_feature_access.rb'
940
+ # - 'app/services/product_subscriptions/verify_product_access.rb'
941
+ # - 'app/services/product_subscriptions/charge.rb'
942
+ # - 'app/services/product_subscriptions/update.rb'
943
+ # - 'app/services/product_subscriptions/subscribe.rb'
944
+ # - 'app/services/product_subscriptions/invalidate_product.rb'
945
+ # - 'app/services/leads/send_template_lead.rb'
946
+ # - 'app/services/leads/send_valuation_lead.rb'
947
+ # - 'app/services/leads/send_upsell_message.rb'
948
+ # - 'app/services/leads/send_upload_lead.rb'
949
+ # - 'app/services/valuation_calculations/send_report.rb'
950
+ # - 'app/services/portfolios/grant_company_permission.rb'
951
+ # - 'app/services/pdf/create_from_html.rb'
952
+ # - 'app/services/workflows/send_action_required_email.rb'
953
+ # - 'app/services/workflows/items/update_actions.rb'
954
+ # - 'app/services/workflows/items/convert_to_pdf.rb'
955
+ # - 'app/services/welcome/private_companies/process_payment.rb'
956
+ # - 'app/services/transactions/undestroy.rb'
957
+ # - 'app/services/security_date_groups/find_or_create_for_equity_certificate.rb'
958
+ # - 'app/services/allocations/warrant_allocator.rb'
959
+ # - 'app/services/users/create_org.rb'
960
+ # - 'app/services/users/lockout_admin.rb'
961
+ # - 'app/services/partner_stripe_accounts/update_charge.rb'
962
+ # - 'app/services/partner_stripe_accounts/advance_queue.rb'
963
+ # - 'app/services/partner_stripe_accounts/create.rb'
964
+ # - 'app/services/waterfalls/exports/shareholder.rb'
965
+ # - 'app/services/marketing/leads/update.rb'
966
+ # - 'app/services/company_shareholders/link_to_portfolio_company.rb'
967
+ # - 'app/services/companies/upgrade_primary_subscription.rb'
968
+ # - 'app/services/equity_certificates/update_attributes.rb'
969
+ # - 'app/services/equity_certificates/auto_name.rb'
970
+ # - 'app/services/equity_certificates/set_as_converted_shares.rb'
971
+ # - 'app/services/service.rb'
972
+ # - 'app/concerns/runnable.rb'
973
+ # - 'app/concerns/itemizable.rb'
974
+ # - 'app/concerns/rounding.rb'
975
+ # - 'test/doubles/intercom_double.rb'
976
+ # - 'test/doubles/rest_client/bad_request.rb'
977
+ # - 'test/unit/monitors/underlying_security_monitor_test.rb'
978
+ # - 'test/unit/monitors/inactive_certificate_monitor_test.rb'
979
+ # - 'test/unit/monitors/acts_as_monitor_test.rb'
980
+ # - 'test/unit/models/waterfall/waterfall_processor_test.rb'
981
+ # - 'test/unit/models/template/template_test_helper.rb'
982
+ # - 'test/unit/models/mutex_processor_test.rb'
983
+ # - 'test/unit/models/concerns/percent_parsable_test.rb'
984
+ # - 'test/unit/policies/product_subscriptions/access_policy_test.rb'
985
+ # - 'test/unit/policies/transactions/readable_type_policy_test.rb'
986
+ # - 'test/unit/presenters/base_presenter_test.rb'
987
+ # - 'test/unit/presenters/transactions/presenter_test.rb'
988
+ # - 'test/unit/finders/inactive_admin_user_finder_test.rb'
989
+ # - 'test/unit/lib/monitor_jobs_test.rb'
990
+ # - 'test/unit/validators/strong_password_validator_test.rb'
991
+ # - 'test/unit/validators/transactions/non_restricted_stock_validator_test.rb'
992
+ # - 'test/unit/data_fixers/acts_as_data_fixer_test.rb'
993
+ # - 'test/unit/data_fixers/remove_duplicate_documents_data_fixer_test.rb'
994
+ # - 'test/unit/helpers/document_generators_helper_test.rb'
995
+ # - 'test/unit/helpers/datetime_helper_test.rb'
996
+ # - 'test/unit/helpers/portfolios_helper_test.rb'
997
+ # - 'test/unit/services/payments/rebill_failed_charges_test.rb'
998
+ # - 'test/unit/services/payments/update_stripe_test.rb'
999
+ # - 'test/unit/services/captables/destroy_test.rb'
1000
+ # - 'test/unit/services/captables/downgrade_permissions_test.rb'
1001
+ # - 'test/unit/services/valuation_calculations/send_report_test.rb'
1002
+ # - 'test/unit/services/service_test.rb'
1003
+ # - 'test/system/settings_system_test.rb'
1004
+ # - 'test/system/import_equity_and_plans_system_test.rb'
1005
+ # - 'test/system/utilities/general.rb'
1006
+ # - 'test/system/utilities/securities_and_equity_plans.rb'
1007
+ # - 'test/system/utilities/hands_on_tables.rb'
1008
+ # - 'test/system/utilities/invitations.rb'
1009
+ # - 'test/system/utilities/settings.rb'
1010
+ # - 'test/system/utilities/summary.rb'
1011
+ # - 'test/system/utilities/pdf.rb'
1012
+ # - 'test/system/utilities/secondary_modals.rb'
1013
+ # - 'test/system/utilities/vesting_plans.rb'
1014
+ # - 'test/system/create_vesting_plans_system_test.rb'
1015
+ # - 'test/test_helper.rb'
1016
+ # - 'test/system_test_helper.rb'
1017
+ # - 'test/controllers/fulfillment_projects_controller_test.rb'
1018
+ # - 'test/test_helpers/hash_test_helper.rb'
1019
+ # - 'test/test_helpers/certificate_sort_helper.rb'
1020
+ # - 'test/test_helpers/controllers/search_test_helper.rb'
1021
+ # - 'test/test_helpers/controllers/general_test_helper.rb'
1022
+ # - 'test/functional/option_expense_report_processor_functional_test.rb'
1023
+ # - 'config/initializers/paper_trail.rb'
1024
+ # - 'config/initializers/log_formatting.rb'
1025
+ # - 'lib/test_utilities/tests.rb'
1026
+ # - 'lib/debug_utils.rb'
1027
+ # - 'lib/tasks/one_offs/useful/set_workflow_to_finished.rake'
1028
+ # - 'lib/tasks/automation/mofo_attach_documents.rake'
1029
+ # - 'lib/utilities.rb'
1030
+ # - 'lib/github_utilities.rb'
1031
+ # - 'lib/system_utilities.rb'
1032
+ # - 'lib/monkey_patches/date.rb'
1033
+ # - 'lib/monkey_patches/psych_monkey_patch.rb'
1034
+ # - 'lib/monkey_patches/try_method.rb'
1035
+ # - 'lib/monkey_patches/string.rb'
1036
+ # - 'lib/monkey_patches/array.rb'
1037
+ # - 'lib/monkey_patches/numeric.rb'
1038
+ # - 'lib/monkey_patches/hash.rb'
1039
+ # - 'lib/monkey_patches/symbol.rb'
1040
+ # - 'lib/monkey_patches/rational.rb'
1041
+ # - 'lib/monkey_patches/nil_class.rb'
1042
+ # - 'lib/monkey_patches/active_record_debugging.rb'
1043
+ # - 'lib/dev_tools/trace_controller_filters.rb'
1044
+ # - 'lib/hash_to_yaml_file.rb'
1045
+ # - 'app/coordinators/transaction/sale_coordinator.rb'
1046
+ # - 'app/coordinators/transaction/option_grant_coordinator.rb'
1047
+ # - 'app/coordinators/transaction/transaction_coordinator.rb'
1048
+ # - 'app/coordinators/transaction/transfer_coordinator.rb'
1049
+ # - 'app/coordinators/security/security_coordinator.rb'
1050
+ # - 'app/coordinators/product_subscription_coordinator.rb'
1051
+ # - 'app/coordinators/master_breakpoint_coordinator.rb'
1052
+ # - 'app/coordinators/partner_stripe_account_coordinator.rb'
1053
+ # - 'app/coordinators/waterfall_coordinator.rb'
1054
+ # - 'app/models/fulfillment_projects/captable_audit.rb'
1055
+ # - 'app/models/transaction/repurchase.rb'
1056
+ # - 'app/models/transaction/equity_issuance/field_defaults.rb'
1057
+ # - 'app/models/transaction/repayment.rb'
1058
+ # - 'app/models/transaction/exercise.rb'
1059
+ # - 'app/models/transaction/cancellation.rb'
1060
+ # - 'app/models/transaction/cancellation_debt.rb'
1061
+ # - 'app/models/transaction/debt_issuance.rb'
1062
+ # - 'app/models/state.rb'
1063
+ # - 'app/models/vesting_tranche.rb'
1064
+ # - 'app/models/valuation_calculation.rb'
1065
+ # - 'app/models/financing_rounds/investment_transaction.rb'
1066
+ # - 'app/models/template_tags/template_tag.rb'
1067
+ # - 'app/models/template/cancellation_template.rb'
1068
+ # - 'app/models/template/repayment_template.rb'
1069
+ # - 'app/models/template/exercise_template.rb'
1070
+ # - 'app/models/template/sale_template.rb'
1071
+ # - 'app/models/fulfillment_project.rb'
1072
+ # - 'app/models/comparison.rb'
1073
+ # - 'app/models/country.rb'
1074
+ # - 'app/models/product/product.rb'
1075
+ # - 'app/models/product/captable_management_software/starter.rb'
1076
+ # - 'app/models/product/captable_management_software/premium.rb'
1077
+ # - 'app/models/product/captable_management_software/enterprise.rb'
1078
+ # - 'app/models/product/captable_management_software/lite.rb'
1079
+ # - 'app/models/product/valuation_services/irc409a_tiered.rb'
1080
+ # - 'app/models/partner_stripe_account.rb'
1081
+ # - 'app/models/vesting/time_based/incremental_tranche_date.rb'
1082
+ # - 'app/models/vesting/time_based/selected_day_tranche_date.rb'
1083
+ # - 'app/models/vesting/time_based/end_of_month_tranche_date.rb'
1084
+ # - 'app/models/vesting/tranche_builder.rb'
1085
+ # - 'app/models/equity/common/issuance.rb'
1086
+ # - 'app/models/marketing/lead.rb'
1087
+ # - 'app/models/finance/future_value_calculator.rb'
1088
+ # - 'app/models/hub_spot/contact.rb'
1089
+ # - 'app/models/hub_spot/contact_repo.rb'
1090
+ # - 'app/models/legal/annual_meeting.rb'
1091
+ # - 'app/models/legal/annual_governance_todo.rb'
1092
+ # - 'app/models/legal/annual_report_list.rb'
1093
+ # - 'app/models/document_generators/pdf_settings.rb'
1094
+ # - 'app/models/concerns/adjusting_transaction.rb'
1095
+ # - 'app/models/missing_permission.rb'
1096
+ # - 'app/exceptions/permissions/authorization_error.rb'
1097
+ # - 'app/policies/terminations/expiration_status_policy.rb'
1098
+ # - 'app/policies/vesting/fractional_share_setting.rb'
1099
+ # - 'app/policies/actions/unfinished_policy.rb'
1100
+ # - 'app/presenters/captables/equity_plan_presenter.rb'
1101
+ # - 'app/presenters/workflow_mailers/workflow_complete_presenter.rb'
1102
+ # - 'app/presenters/shareholders/show_presenter.rb'
1103
+ # - 'app/presenters/regression_tests/show_presenter.rb'
1104
+ # - 'app/finders/product_subscriptions/paid_captable_management_software_finder.rb'
1105
+ # - 'app/finders/permissions/manager_permission_finder.rb'
1106
+ # - 'app/finders/permissions/viewer_permission_finder.rb'
1107
+ # - 'app/finders/transactions/to_certificate_finder.rb'
1108
+ # - 'app/finders/waterfalls/equity_certificate_finder.rb'
1109
+ # - 'app/support_tools/workflow_uri_parser.rb'
1110
+ # - 'app/support_tools/workflow_email_updater.rb'
1111
+ # - 'app/support_tools/card_transfer.rb'
1112
+ # - 'app/publishers/option_expense_reports/publish_generate_event.rb'
1113
+ # - 'app/publishers/captables/publish_export_event.rb'
1114
+ # - 'app/validators/email_validator.rb'
1115
+ # - 'app/controllers/fulfillment_projects_controller.rb'
1116
+ # - 'app/controllers/securities_controller.rb'
1117
+ # - 'app/controllers/jobs_controller.rb'
1118
+ # - 'app/controllers/templates_controller.rb'
1119
+ # - 'app/controllers/exports_controller.rb'
1120
+ # - 'app/controllers/valuations_controller.rb'
1121
+ # - 'app/controllers/pages_controller.rb'
1122
+ # - 'app/controllers/spreadsheets_controller.rb'
1123
+ # - 'app/controllers/valuation_histories_controller.rb'
1124
+ # - 'app/controllers/user_settings_controller.rb'
1125
+ # - 'app/controllers/welcome/private_companies_controller.rb'
1126
+ # - 'app/controllers/public_comp_lists_controller.rb'
1127
+ # - 'app/controllers/vesting_plans_controller.rb'
1128
+ # - 'app/controllers/valuation_services/irc409as/product_subscriptions_controller.rb'
1129
+ # - 'app/controllers/transactions/into_exercises_controller.rb'
1130
+ # - 'app/controllers/payments_controller.rb'
1131
+ # - 'app/controllers/actions_controller.rb'
1132
+ # - 'app/controllers/option_plans_controller.rb'
1133
+ # - 'app/controllers/captable_auditors_controller.rb'
1134
+ # - 'app/controllers/partner_stripe_accounts_controller.rb'
1135
+ # - 'app/controllers/portfolio_companies_controller.rb'
1136
+ # - 'app/controllers/portfolio_valuations_controller.rb'
1137
+ # - 'app/controllers/support_tools/shareholders_controller.rb'
1138
+ # - 'app/controllers/support_tools/workflow_emails_controller.rb'
1139
+ # - 'app/controllers/api/v1/common/issuances_controller.rb'
1140
+ # - 'app/controllers/system_templates_controller.rb'
1141
+ # - 'app/controllers/valuation_calculations_controller.rb'
1142
+ # - 'app/controllers/legal/company_jurisdictions/annual_reports_controller.rb'
1143
+ # - 'app/controllers/legal/annual_meetings_controller.rb'
1144
+ # - 'app/controllers/legal/company_jurisdictions_controller.rb'
1145
+ # - 'app/controllers/legal/dbas/cancellations_controller.rb'
1146
+ # - 'app/controllers/legal/dbas_controller.rb'
1147
+ # - 'app/controllers/shareholders/export_requests_controller.rb'
1148
+ # - 'app/controllers/financing_rounds_controller.rb'
1149
+ # - 'app/controllers/concerns/notification_management.rb'
1150
+ # - 'app/controllers/registrations_controller.rb'
1151
+ # - 'app/controllers/regression_tests_controller.rb'
1152
+ # - 'app/collections/debt_certificate_collection.rb'
1153
+ # - 'app/collections/transaction_collection.rb'
1154
+ # - 'app/collections/equity_certificate_collection.rb'
1155
+ # - 'app/views/securities/index.json.jbuilder'
1156
+ # - 'app/views/debt_certificates/index.json.jbuilder'
1157
+ # - 'app/views/financing_rounds/investment_transactions/show.json.jbuilder'
1158
+ # - 'app/views/new_design/securities/index.json.jbuilder'
1159
+ # - 'app/views/new_design/debt_certificates/index.json.jbuilder'
1160
+ # - 'app/views/new_design/financing_rounds/investment_transactions/show.json.jbuilder'
1161
+ # - 'app/views/new_design/transactions/show.json.jbuilder'
1162
+ # - 'app/views/new_design/layouts/unauthorized.json.jbuilder'
1163
+ # - 'app/views/new_design/shareholders/index.json.jbuilder'
1164
+ # - 'app/views/layouts/unauthorized.json.jbuilder'
1165
+ # - 'app/views/shareholders/index.json.jbuilder'
1166
+ # - 'app/data_fixers/update_failure_data_fixer.rb'
1167
+ # - 'app/data_fixers/missing_portfolio_company_data_fixer.rb'
1168
+ # - 'app/data_fixers/fulfillment_project_category_data_fixer.rb'
1169
+ # - 'app/data_fixers/security_date_group_data_fixer.rb'
1170
+ # - 'app/data_fixers/captable_accounting_data_fixer.rb'
1171
+ # - 'app/data_fixers/admin_user_portfolio_company_data_fixer.rb'
1172
+ # - 'app/data_fixers/missing_primary_captable_data_fixer.rb'
1173
+ # - 'app/data_fixers/missing_company_permission_data_fixer.rb'
1174
+ # - 'app/data_fixers/irc409a_product_data_fixer.rb'
1175
+ # - 'app/data_fixers/user_name_data_fixer.rb'
1176
+ # - 'app/data_fixers/fix_by_deleting.rb'
1177
+ # - 'app/data_fixers/fix_by_destroying.rb'
1178
+ # - 'app/data_fixers/junk_permission_data_fixer.rb'
1179
+ # - 'app/helpers/product_subscriptions/valuation_services/irc_409a_helper.rb'
1180
+ # - 'app/helpers/new_design/main_header_helper.rb'
1181
+ # - 'app/helpers/source_datum_helper.rb'
1182
+ # - 'app/helpers/import_report_helper.rb'
1183
+ # - 'app/helpers/drawer_helper.rb'
1184
+ # - 'app/helpers/portfolios_helper.rb'
1185
+ # - 'app/helpers/firms_helper.rb'
1186
+ # - 'app/helpers/marketing_helper.rb'
1187
+ # - 'app/helpers/exports_helper.rb'
1188
+ # - 'app/helpers/sub_header_helper.rb'
1189
+ # - 'app/helpers/legal/dbas_helper.rb'
1190
+ # - 'app/helpers/legal/company_jurisdictions_helper.rb'
1191
+ # - 'app/services/securities/exports/create_xlsx.rb'
1192
+ # - 'app/services/payments/update_stripe.rb'
1193
+ # - 'app/services/payments/rebill_failed_charges.rb'
1194
+ # - 'app/services/products/valuation_services/irc409a_invoice.rb'
1195
+ # - 'app/services/captables/exports/create_xlsx.rb'
1196
+ # - 'app/services/captables/destroy.rb'
1197
+ # - 'app/services/public_comps/calculate_volatility.rb'
1198
+ # - 'app/services/product_subscriptions/validate_payment.rb'
1199
+ # - 'app/services/terminations/cancel_vested_shares.rb'
1200
+ # - 'app/services/terminations/cancel_unvested_shares.rb'
1201
+ # - 'app/services/workflows/initiate_step.rb'
1202
+ # - 'app/services/workflows/exports/generate_pdf.rb'
1203
+ # - 'app/services/workflows/send_item_complete_email.rb'
1204
+ # - 'app/services/valuations/update_equity_value.rb'
1205
+ # - 'app/services/valuations/update_ltm_date.rb'
1206
+ # - 'app/services/valuations/update_fiscal_year.rb'
1207
+ # - 'app/services/valuations/create_methods.rb'
1208
+ # - 'app/services/valuations/update_captable.rb'
1209
+ # - 'app/services/certificates/update_sort_order.rb'
1210
+ # - 'app/services/portfolio_company_valuations/update.rb'
1211
+ # - 'app/services/permissions/update_to_restricted.rb'
1212
+ # - 'app/services/permissions/update_to_view.rb'
1213
+ # - 'app/services/permissions/update_to_edit.rb'
1214
+ # - 'app/services/permissions/update_rights.rb'
1215
+ # - 'app/services/valuation_services/irc409as/subscribe.rb'
1216
+ # - 'app/services/vesting/rounded_share_calculator.rb'
1217
+ # - 'app/services/allocations/preferred_pre_common.rb'
1218
+ # - 'app/services/allocations/preferred_warrant_capped_participation.rb'
1219
+ # - 'app/services/allocations/preferred_warrant_uncapped_participation.rb'
1220
+ # - 'app/services/allocations/option_allocator.rb'
1221
+ # - 'app/services/allocations/preferred_methods.rb'
1222
+ # - 'app/services/users/send_invite_email.rb'
1223
+ # - 'app/services/users/create_private_company.rb'
1224
+ # - 'app/services/waterfalls/exports/create_xlsx.rb'
1225
+ # - 'app/services/marketing/events/record_captable_exported.rb'
1226
+ # - 'app/services/marketing/events/record_option_expense_report_generated.rb'
1227
+ # - 'app/services/marketing/events/record_workflow_executed.rb'
1228
+ # - 'app/services/marketing/events/record_captable_search.rb'
1229
+ # - 'app/services/legal/board_of_directors/import.rb'
1230
+ # - 'app/services/shareholders/exports/create_xlsx.rb'
1231
+ # - 'app/services/shareholders/exports/index.rb'
1232
+ # - 'app/services/shareholders/exports/show.rb'
1233
+ # - 'app/services/shareholders/destroy.rb'
1234
+ # - 'app/services/generic_import.rb'
1235
+ # - 'app/services/demos/create_shareholders.rb'
1236
+ # - 'app/services/demos/create_securities.rb'
1237
+ # - 'app/services/demos/create_shares.rb'
1238
+ # - 'app/services/document_generators/generate_pdf.rb'
1239
+ # - 'app/services/equity_certificates/set_repurchased_and_removed_shares.rb'
1240
+ # - 'app/services/equity_certificates/find_expiration_policy.rb'
1241
+ # - 'app/services/equity_certificates/find_or_create.rb'
1242
+ # - 'app/services/equity_certificates/set_cancelled_and_returned_shares.rb'
1243
+ # - 'app/services/equity_certificates/set_repurchased_and_returned_shares.rb'
1244
+ # - 'app/services/equity_certificates/set_cancelled_and_removed_shares.rb'
1245
+ # - 'app/concerns/waterfall_export.rb'
1246
+ # - 'test/unit/monitors/missing_portfolio_company_monitor_test.rb'
1247
+ # - 'test/unit/monitors/permissions_sync_monitor_test.rb'
1248
+ # - 'test/unit/coordinators/permission_coordinator_test.rb'
1249
+ # - 'test/unit/coordinators/product_subscription_coordinator_test.rb'
1250
+ # - 'test/unit/coordinators/partner_stripe_account_coordinator_test.rb'
1251
+ # - 'test/unit/mailers/user_invite_mailer_test.rb'
1252
+ # - 'test/unit/mailers/valuation_calculation_mailer_test.rb'
1253
+ # - 'test/unit/mailers/workflow_mailer_test.rb'
1254
+ # - 'test/unit/mailers/devise_mailer_test.rb'
1255
+ # - 'test/unit/mailers/workflows/action_required_mailer_test.rb'
1256
+ # - 'test/unit/mailers/marketing_mailer_test.rb'
1257
+ # - 'test/unit/models/user_activity_test.rb'
1258
+ # - 'test/unit/models/transaction/exercise_test.rb'
1259
+ # - 'test/unit/models/transaction/equity_issuance/update_issuance_characteristic_test.rb'
1260
+ # - 'test/unit/models/transaction/equity_issuance/field_defaults_test.rb'
1261
+ # - 'test/unit/models/transaction/equity_issuance/field_validator_test.rb'
1262
+ # - 'test/unit/models/transaction/into_debt_issuance_test.rb'
1263
+ # - 'test/unit/models/transaction/sale_test.rb'
1264
+ # - 'test/unit/models/transaction/transactions_test_helper.rb'
1265
+ # - 'test/unit/models/transaction/certificate_transaction_test.rb'
1266
+ # - 'test/unit/models/transaction/transfer_test.rb'
1267
+ # - 'test/unit/models/transaction/debt_issuance/transaction_accrual_test.rb'
1268
+ # - 'test/unit/models/company_shareholder_test.rb'
1269
+ # - 'test/unit/models/shareholder_termination_test.rb'
1270
+ # - 'test/unit/models/partner_stripe_account_test.rb'
1271
+ # - 'test/unit/models/opm/opm_test.rb'
1272
+ # - 'test/unit/models/comparison_test.rb'
1273
+ # - 'test/unit/models/cap_iq/treasury_oer_test.rb'
1274
+ # - 'test/unit/models/cap_iq/closeprice_test.rb'
1275
+ # - 'test/unit/models/cap_iq/public_test.rb'
1276
+ # - 'test/unit/models/cap_iq/cap_iq_test_helper.rb'
1277
+ # - 'test/unit/models/security/option_security_test.rb'
1278
+ # - 'test/unit/models/public_comp_test.rb'
1279
+ # - 'test/unit/models/financing_rounds/convertible_transaction_test.rb'
1280
+ # - 'test/unit/models/financing_rounds/investment_transaction_test.rb'
1281
+ # - 'test/unit/models/waterfall/standard_waterfall_test.rb'
1282
+ # - 'test/unit/models/shareholder/termination_test.rb'
1283
+ # - 'test/unit/models/template_tags/vesting_plan_name_tag_test.rb'
1284
+ # - 'test/unit/models/template_tags/vesting_plan_description_tag_test.rb'
1285
+ # - 'test/unit/models/template_tags/signature_date_tag_test.rb'
1286
+ # - 'test/unit/models/template_tags/date_spelled_out_tag_test.rb'
1287
+ # - 'test/unit/models/template_tags/shares_spelled_out_tag_test.rb'
1288
+ # - 'test/unit/models/template_tags/originating_certificate_id_tag_test.rb'
1289
+ # - 'test/unit/models/template_tags/invested_capital_tag_test.rb'
1290
+ # - 'test/unit/models/template_tags/strike_price_tag_test.rb'
1291
+ # - 'test/unit/models/template_tags/signature_tag_test.rb'
1292
+ # - 'test/unit/models/template_tags/option_plan_name_tag_test.rb'
1293
+ # - 'test/unit/models/template/exercise_template_test.rb'
1294
+ # - 'test/unit/models/template/template_test.rb'
1295
+ # - 'test/unit/models/payment_test.rb'
1296
+ # - 'test/unit/models/document_generator_test.rb'
1297
+ # - 'test/unit/models/product/valuation_software/standard_test.rb'
1298
+ # - 'test/unit/models/product/product_test.rb'
1299
+ # - 'test/unit/models/product/captable_management_software/premium_test.rb'
1300
+ # - 'test/unit/models/product/captable_management_software/starter_test.rb'
1301
+ # - 'test/unit/models/product/captable_management_software/pro_test.rb'
1302
+ # - 'test/unit/models/product/captable_management_software/lite_test.rb'
1303
+ # - 'test/unit/models/product/captable_management_software/enterprise_test.rb'
1304
+ # - 'test/unit/models/product/option_expense_report_software/standard_test.rb'
1305
+ # - 'test/unit/models/product/valuation_services/irc_409a_tiered_test.rb'
1306
+ # - 'test/unit/models/product/valuation_services/irc409a_oct2017_test.rb'
1307
+ # - 'test/unit/models/product/valuation_services/irc409a_test.rb'
1308
+ # - 'test/unit/models/portfolio_company_valuation_test.rb'
1309
+ # - 'test/unit/models/progress_tracker_test.rb'
1310
+ # - 'test/unit/models/vesting/milestone_based/tranche_date_test.rb'
1311
+ # - 'test/unit/models/vesting/time_based/increment_period_test.rb'
1312
+ # - 'test/unit/models/transaction_vesting/update_vesting_test.rb'
1313
+ # - 'test/unit/models/option_plan_test.rb'
1314
+ # - 'test/unit/models/user_access_test.rb'
1315
+ # - 'test/unit/models/valuation_test.rb'
1316
+ # - 'test/unit/models/equity/common/issuance_test.rb'
1317
+ # - 'test/unit/models/marketing/lead_test.rb'
1318
+ # - 'test/unit/models/finance/period_calculator_test.rb'
1319
+ # - 'test/unit/models/finance/daily_interest_calculator_test.rb'
1320
+ # - 'test/unit/models/vesting_periods_test.rb'
1321
+ # - 'test/unit/models/legal/company_jurisdiction_test.rb'
1322
+ # - 'test/unit/models/legal/annual_meeting_test.rb'
1323
+ # - 'test/unit/models/legal/annual_governance_todo_test.rb'
1324
+ # - 'test/unit/models/legal/annual_report_list_test.rb'
1325
+ # - 'test/unit/models/legal/annual_report_test.rb'
1326
+ # - 'test/unit/models/option_expense_report_test.rb'
1327
+ # - 'test/unit/models/valuation_calculation_test.rb'
1328
+ # - 'test/unit/models/companies/valuations/request_test.rb'
1329
+ # - 'test/unit/models/concerns/secondary_transaction_test.rb'
1330
+ # - 'test/unit/models/concerns/date_parsable_test.rb'
1331
+ # - 'test/unit/models/concerns/excel_sheet_test.rb'
1332
+ # - 'test/unit/policies/vesting_plans/vesting_rebuild_policy_test.rb'
1333
+ # - 'test/unit/policies/product_subscriptions/company_access_via_firm_policy_test.rb'
1334
+ # - 'test/unit/policies/terminations/expiration_status_policy_test.rb'
1335
+ # - 'test/unit/policies/marketing/leads/subscription_tracking_policy_test.rb'
1336
+ # - 'test/unit/presenters/debt_certificates/show_presenter_test.rb'
1337
+ # - 'test/unit/presenters/welcome/private_company_presenter_test.rb'
1338
+ # - 'test/unit/presenters/transactions/into_exercises/edit_presenter_test.rb'
1339
+ # - 'test/unit/presenters/shareholders/show_presenter_test.rb'
1340
+ # - 'test/unit/finders/captables/shareholders_with_outstanding_shares_finder_test.rb'
1341
+ # - 'test/unit/finders/permissions/manager_permission_finder_test.rb'
1342
+ # - 'test/unit/finders/accruals/equity_certificate_ids_finder_test.rb'
1343
+ # - 'test/unit/finders/companies/common_shareholder_finder_test.rb'
1344
+ # - 'test/unit/serializers/logs/data_table_serializer_test.rb'
1345
+ # - 'test/unit/serializers/companies/data_table_serializer_test.rb'
1346
+ # - 'test/unit/equity_certificate_auditor_test.rb'
1347
+ # - 'test/unit/lib/test_utilities/vesting_fixture_generator_test.rb'
1348
+ # - 'test/unit/lib/html_diff_test.rb'
1349
+ # - 'test/unit/lib/regression_test_test.rb'
1350
+ # - 'test/unit/support_tools/workflow_email_updater_test.rb'
1351
+ # - 'test/unit/support_tools/workflow_status_updater_test.rb'
1352
+ # - 'test/unit/publishers/captables/publish_search_event_test.rb'
1353
+ # - 'test/unit/data_fixers/investment_firm_data_fixer_test.rb'
1354
+ # - 'test/unit/data_fixers/duplicate_dwt_firm_permissions_data_fixer_test.rb'
1355
+ # - 'test/unit/data_fixers/missing_portfolio_company_data_fixer_test.rb'
1356
+ # - 'test/unit/data_fixers/product_subscription_settings_data_fixer_test.rb'
1357
+ # - 'test/unit/data_fixers/vestable_status_data_fixer_test.rb'
1358
+ # - 'test/unit/data_fixers/fix_by_destroying_test.rb'
1359
+ # - 'test/unit/data_fixers/fix_by_deleting_test.rb'
1360
+ # - 'test/unit/data_fixers/user_name_data_fixer_test.rb'
1361
+ # - 'test/unit/data_fixers/notification_data_fixer_test.rb'
1362
+ # - 'test/unit/data_fixers/update_compounding_to_default_value_data_fixer_test.rb'
1363
+ # - 'test/unit/helpers/debt_certificates_helper_test.rb'
1364
+ # - 'test/unit/helpers/captable_graphs_helper_test.rb'
1365
+ # - 'test/unit/helpers/products/captable_management_software_helper_test.rb'
1366
+ # - 'test/unit/helpers/marketing_helper_test.rb'
1367
+ # - 'test/unit/helpers/html_components/menus_helper_test.rb'
1368
+ # - 'test/unit/helpers/product_subscriptions/valuation_services/irc_409a_helper_test.rb'
1369
+ # - 'test/unit/helpers/companies_currency_helper_test.rb'
1370
+ # - 'test/unit/helpers/notifications_helper_test.rb'
1371
+ # - 'test/unit/helpers/transaction_forms_helper_test.rb'
1372
+ # - 'test/unit/helpers/financing_rounds_helper_test.rb'
1373
+ # - 'test/unit/helpers/option_plans_helper_test.rb'
1374
+ # - 'test/unit/helpers/captables_helper_test.rb'
1375
+ # - 'test/unit/helpers/pagination_helper_test.rb'
1376
+ # - 'test/unit/helpers/exports_helper_test.rb'
1377
+ # - 'test/unit/helpers/month_helper_test.rb'
1378
+ # - 'test/unit/helpers/legal/company_jurisdictions_helper_test.rb'
1379
+ # - 'test/unit/helpers/firms/companies_helper_test.rb'
1380
+ # - 'test/unit/helpers/users_helper_test.rb'
1381
+ # - 'test/unit/helpers/confirmations_helper_test.rb'
1382
+ # - 'test/unit/helpers/shareholders_helper_test.rb'
1383
+ # - 'test/unit/services/options/update_plan_after_equity_certificate_changes_test.rb'
1384
+ # - 'test/unit/services/securities/exports/create_xlsx_test.rb'
1385
+ # - 'test/unit/services/certificate_expenses/set_tran_details_test.rb'
1386
+ # - 'test/unit/services/products/valuation_services/irc409a_invoice_test.rb'
1387
+ # - 'test/unit/services/debt_certificates/export/debt_test.rb'
1388
+ # - 'test/unit/services/captables/exports/create_xlsx_test.rb'
1389
+ # - 'test/unit/services/public_comps/get_market_data_test.rb'
1390
+ # - 'test/unit/services/public_comps/calculate_volatility_test.rb'
1391
+ # - 'test/unit/services/import_test.rb'
1392
+ # - 'test/unit/services/vesting_plans/rebuild_transactions_test.rb'
1393
+ # - 'test/unit/services/product_subscriptions/start_billing_test.rb'
1394
+ # - 'test/unit/services/product_subscriptions/validate_payment_test.rb'
1395
+ # - 'test/unit/services/leads/send_upsell_message_test.rb'
1396
+ # - 'test/unit/services/terminations/cancel_vested_shares_test.rb'
1397
+ # - 'test/unit/services/generic_import_test.rb'
1398
+ # - 'test/unit/services/workflows/send_action_required_email_test.rb'
1399
+ # - 'test/unit/services/workflows/exports/generate_pdf_test.rb'
1400
+ # - 'test/unit/services/workflows/exports/create_pdf_test.rb'
1401
+ # - 'test/unit/services/workflows/items/update_actions_test.rb'
1402
+ # - 'test/unit/services/workflows/items/convert_to_pdf_test.rb'
1403
+ # - 'test/unit/services/valuations/update_equity_value_test.rb'
1404
+ # - 'test/unit/services/valuations/create_test.rb'
1405
+ # - 'test/unit/services/certificates/update_sort_order_test.rb'
1406
+ # - 'test/unit/services/welcome/private_companies/process_payment_test.rb'
1407
+ # - 'test/unit/services/permissions/destroy_company_captable_permissions_test.rb'
1408
+ # - 'test/unit/services/permissions/update_to_restricted_test.rb'
1409
+ # - 'test/unit/services/permissions/update_to_edit_test.rb'
1410
+ # - 'test/unit/services/permissions/update_to_view_test.rb'
1411
+ # - 'test/unit/services/vesting/rounded_share_calculator_test.rb'
1412
+ # - 'test/unit/services/allocations/preferred_allocator_test.rb'
1413
+ # - 'test/unit/services/allocations/preferred_warrant_capped_participation_test.rb'
1414
+ # - 'test/unit/services/allocations/preferred_pre_common_test.rb'
1415
+ # - 'test/unit/services/allocations/preferred_warrant_test.rb'
1416
+ # - 'test/unit/services/allocations/preferred_warrant_uncapped_participation_test.rb'
1417
+ # - 'test/unit/services/allocations/warrant_allocator_test.rb'
1418
+ # - 'test/unit/services/allocations/option_allocator_test.rb'
1419
+ # - 'test/unit/services/partner_stripe_accounts/create_test.rb'
1420
+ # - 'test/unit/services/waterfalls/exports/create_xlsx_test.rb'
1421
+ # - 'test/unit/services/marketing/update_company_leads_test.rb'
1422
+ # - 'test/unit/services/company_shareholders/link_to_portfolio_company_test.rb'
1423
+ # - 'test/unit/services/hub_spot/batch_update_test.rb'
1424
+ # - 'test/unit/services/shareholders/exports/show_test.rb'
1425
+ # - 'test/unit/services/shareholders/exports/create_xlsx_test.rb'
1426
+ # - 'test/unit/services/demos/create_captable_test.rb'
1427
+ # - 'test/unit/services/portfolio_companies/update_breakeven_test.rb'
1428
+ # - 'test/unit/services/companies/upgrade_primary_subscription_test.rb'
1429
+ # - 'test/unit/services/equity_certificates/find_expiration_policy_test.rb'
1430
+ # - 'test/unit/services/equity_certificates/update_attributes_test.rb'
1431
+ # - 'test/unit/services/equity_certificates/export/options_test.rb'
1432
+ # - 'test/unit/services/equity_certificates/export/common_test.rb'
1433
+ # - 'test/unit/services/equity_certificates/export/preferred_test.rb'
1434
+ # - 'test/unit/services/equity_certificates/export/warrants_test.rb'
1435
+ # - 'test/unit/concerns/subscriber_test.rb'
1436
+ # - 'test/system/security_fields_system_test.rb'
1437
+ # - 'test/system/workflow_system_test.rb'
1438
+ # - 'test/system/documents_and_oer_system_test.rb'
1439
+ # - 'test/system/versions_and_secondaries_system_test.rb'
1440
+ # - 'test/system/utilities/import.rb'
1441
+ # - 'test/system/common_secondaries_system_test.rb'
1442
+ # - 'test/system/convertible_debt_secondaries_system_test.rb'
1443
+ # - 'test/regression/rewrite_restricted_regression_test.rb'
1444
+ # - 'test/regression/vesting_calculation_regression_test.rb'
1445
+ # - 'test/regression/calculate_balance_regression_test.rb'
1446
+ # - 'test/controllers/comparisons_controller_test.rb'
1447
+ # - 'test/controllers/audit_logs_controller_test.rb'
1448
+ # - 'test/controllers/permissions_controller_test.rb'
1449
+ # - 'test/controllers/vesting_plans_controller_test.rb'
1450
+ # - 'test/controllers/ma_comps_controller_test.rb'
1451
+ # - 'test/controllers/confirmations_controller_test.rb'
1452
+ # - 'test/controllers/adjustments_controller_test.rb'
1453
+ # - 'test/controllers/workflows_controller_test.rb'
1454
+ # - 'test/controllers/captables/search_events_controller_test.rb'
1455
+ # - 'test/controllers/features_controller_test.rb'
1456
+ # - 'test/controllers/company_shareholders_controller_test.rb'
1457
+ # - 'test/controllers/registrations_controller_test.rb'
1458
+ # - 'test/controllers/exit_scenarios_controller_test.rb'
1459
+ # - 'test/controllers/documents_controller_test.rb'
1460
+ # - 'test/controllers/workflows/company_shareholders_controller_test.rb'
1461
+ # - 'test/controllers/comp_lists_controller_test.rb'
1462
+ # - 'test/controllers/notifications_controller_test.rb'
1463
+ # - 'test/controllers/portfolio_companies_controller_test.rb'
1464
+ # - 'test/controllers/welcome/private_companies_controller_test.rb'
1465
+ # - 'test/controllers/valuations_controller_test.rb'
1466
+ # - 'test/controllers/portfolio_valuations_controller_test.rb'
1467
+ # - 'test/controllers/valuation_services/irc409as/product_subscriptions_controller_test.rb'
1468
+ # - 'test/controllers/transactions/warrant_grants_controller_test.rb'
1469
+ # - 'test/controllers/firms_controller_test.rb'
1470
+ # - 'test/controllers/portfolio_company_valuations_controller_test.rb'
1471
+ # - 'test/controllers/actions_controller_test.rb'
1472
+ # - 'test/controllers/captables_controller_test.rb'
1473
+ # - 'test/controllers/users/logs_controller_test.rb'
1474
+ # - 'test/controllers/users/companies_controller_test.rb'
1475
+ # - 'test/controllers/support_tools/shareholders_controller_test.rb'
1476
+ # - 'test/controllers/support_tools/workflow_status_controller_test.rb'
1477
+ # - 'test/controllers/api/v1/common/issuances_controller_test.rb'
1478
+ # - 'test/controllers/expiration_policies_controller_test.rb'
1479
+ # - 'test/controllers/discount_rates_controller_test.rb'
1480
+ # - 'test/controllers/valuation_calculations_controller_test.rb'
1481
+ # - 'test/controllers/dcfs_controller_test.rb'
1482
+ # - 'test/controllers/legal/company_jurisdictions/annual_reports_controller_test.rb'
1483
+ # - 'test/controllers/legal/company_jurisdictions/withdrawals_controller_test.rb'
1484
+ # - 'test/controllers/legal/company_jurisdictions_controller_test.rb'
1485
+ # - 'test/controllers/legal/dbas_controller_test.rb'
1486
+ # - 'test/controllers/legal/annual_meetings_controller_test.rb'
1487
+ # - 'test/controllers/legal/dbas/cancellations_controller_test.rb'
1488
+ # - 'test/controllers/legal/board_of_directors_controller_test.rb'
1489
+ # - 'test/controllers/legal/firm_specific_company_infos_controller_test.rb'
1490
+ # - 'test/controllers/dloms_controller_test.rb'
1491
+ # - 'test/controllers/passwords_controller_test.rb'
1492
+ # - 'test/controllers/confirmations/passwords_controller_test.rb'
1493
+ # - 'test/controllers/backsolve_opms_controller_test.rb'
1494
+ # - 'test/controllers/permissions_update_controller_test.rb'
1495
+ # - 'test/controllers/firms/companies_controller_test.rb'
1496
+ # - 'test/controllers/companies/valuations/requests_controller_test.rb'
1497
+ # - 'test/controllers/regression_tests/old_results_requests_controller_test.rb'
1498
+ # - 'test/controllers/regression_tests/full_test_requests_controller_test.rb'
1499
+ # - 'test/controllers/regression_tests/diff_results_requests_controller_test.rb'
1500
+ # - 'test/controllers/regression_tests/new_results_requests_controller_test.rb'
1501
+ # - 'test/controllers/option_expense_reports_controller_test.rb'
1502
+ # - 'test/test_helpers/delayed_jobs_helper.rb'
1503
+ # - 'test/test_helpers/exports_test_helper.rb'
1504
+ # - 'test/test_helpers/controllers/file_upload_test_helper.rb'
1505
+ # - 'test/functional/vesting_functional_tests/vesting_termination_functional_test.rb'
1506
+ # - 'test/functional/master_breakpoint_functional_test.rb'
1507
+ # - 'test/functional/security_date_group_functional_test.rb'
1508
+ # - 'bin/delayed_job_starter'
1509
+ # - 'bin/delayed_job'
1510
+ # - 'bin/delayed_job_stopper'
1511
+ # - 'bin/rails'
1512
+ # - 'config/environments/development.rb'
1513
+ # - 'config/environments/test.rb'
1514
+ # - 'config/application.rb'
1515
+ # - 'config/authorization_rules.rb'
1516
+ # - 'config/deploy.rb'
1517
+ # - 'config/coverband.rb'
1518
+ # - 'config/default_env.rb'
1519
+ # - 'config/initializers/intercom.rb'
1520
+ # - 'config/initializers/backtrace_silencers.rb'
1521
+ # - 'config/initializers/capybara.rb'
1522
+ # - 'config/initializers/attribute_normalizer.rb'
1523
+ # - 'config/initializers/wrap_parameters.rb'
1524
+ # - 'config/initializers/log_it.rb'
1525
+ # - 'config/initializers/create_tmp_dir.rb'
1526
+ # - 'config/initializers/devise.rb'
1527
+ # - 'config/initializers/pp.rb'
1528
+ # - 'config/initializers/paperclip.rb'
1529
+ # - 'config/initializers/host.rb'
1530
+ # - 'config/initializers/aws_sdk.rb'
1531
+ # - 'config/initializers/init_monkey_patches.rb'
1532
+ # - 'config/initializers/global_constants.rb'
1533
+ # - 'config/initializers/import.rb'
1534
+ # - 'lib/tasks/test/generate_vesting_fixtures.rake'
1535
+ # - 'lib/tasks/system_delayed_jobs.rake'
1536
+ # - 'lib/tasks/data_fixers.rake'
1537
+ # - 'lib/tasks/one_offs/useful/cancellations_to_csv.rake'
1538
+ # - 'lib/tasks/one_offs/useful/attach_file.rake'
1539
+ # - 'lib/tasks/one_offs/useful/change_certificate_security.rake'
1540
+ # - 'lib/tasks/one_offs/useful/complete_workflow_status.rake'
1541
+ # - 'lib/tasks/one_offs/create_small_company_risk_premiums.rake'
1542
+ # - 'lib/tasks/option_expense_report.rake'
1543
+ # - 'lib/tasks/lockout_inactive_admins.rake'
1544
+ # - 'lib/tasks/monitors.rake'
1545
+ # - 'lib/tasks/cron_tasks.rake'
1546
+ # - 'lib/tasks/automation/merge_pks.rake'
1547
+ # - 'lib/tasks/automation/github.rake'
1548
+ # - 'lib/tasks/automation/mofo_update_issuance_legends.rake'
1549
+ # - 'lib/tasks/automation/db_repair.rake'
1550
+ # - 'lib/tasks/automation/test.rake'
1551
+ # - 'lib/tasks/automation/db.rake'
1552
+ # - 'lib/monkey_patches/false_class.rb'
1553
+ # - 'lib/monkey_patches/integer.rb'
1554
+ # - 'lib/monkey_patches/true_class.rb'
1555
+ # - 'lib/static_uri.rb'
1556
+ # - 'lib/monitor_jobs.rb'
1557
+ # - 'lib/generators/data_fixer/data_fixer_generator.rb'
1558
+ # - 'lib/ms_sql_importer.rb'
1559
+ # - 'lib/regression/regression_test.rb'
1560
+ # - 'lib/regression/html_diff.rb'
1561
+ # - 'Guardfile'
1562
+ # - 'Rakefile'
1563
+ # - 'Gemfile'
1564
+ # - 'Capfile'
1565
+ # TODO: Templates should probably be renamed to rb.erb as they are not really rb files
1566
+ - 'lib/generators/**/templates/*'
1567
+ # these should never be removed
1568
+ - 'db/migrate/*'
1569
+ - 'db/schema.rb'