source_monitor 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.claude/agents/rails-concern.md +464 -0
- data/.claude/agents/rails-controller.md +424 -0
- data/.claude/agents/rails-hotwire.md +446 -0
- data/.claude/agents/rails-implement.md +374 -0
- data/.claude/agents/rails-job.md +334 -0
- data/.claude/agents/rails-lint.md +294 -0
- data/.claude/agents/rails-mailer.md +371 -0
- data/.claude/agents/rails-migration.md +449 -0
- data/.claude/agents/rails-model.md +420 -0
- data/.claude/agents/rails-policy.md +443 -0
- data/.claude/agents/rails-presenter.md +427 -0
- data/.claude/agents/rails-query.md +412 -0
- data/.claude/agents/rails-review.md +490 -0
- data/.claude/agents/rails-service.md +458 -0
- data/.claude/agents/rails-state-records.md +465 -0
- data/.claude/agents/rails-tdd.md +314 -0
- data/.claude/agents/rails-test.md +441 -0
- data/.claude/agents/rails-view-component.md +418 -0
- data/.claude/hooks/block-secrets.sh +52 -0
- data/.claude/settings.json +85 -0
- data/.claude/skills/action-cable-patterns/SKILL.md +296 -0
- data/.claude/skills/action-mailer-patterns/SKILL.md +295 -0
- data/.claude/skills/active-storage-setup/SKILL.md +311 -0
- data/.claude/skills/api-versioning/SKILL.md +294 -0
- data/.claude/skills/authentication-flow/SKILL.md +335 -0
- data/.claude/skills/authentication-flow/reference/current.md +248 -0
- data/.claude/skills/authentication-flow/reference/passwordless.md +253 -0
- data/.claude/skills/authentication-flow/reference/sessions.md +201 -0
- data/.claude/skills/authorization-pundit/SKILL.md +462 -0
- data/.claude/skills/caching-strategies/SKILL.md +350 -0
- data/.claude/skills/database-migrations/SKILL.md +354 -0
- data/.claude/skills/form-object-patterns/SKILL.md +399 -0
- data/.claude/skills/hotwire-patterns/SKILL.md +247 -0
- data/.claude/skills/hotwire-patterns/reference/stimulus.md +307 -0
- data/.claude/skills/hotwire-patterns/reference/tailwind-integration.md +112 -0
- data/.claude/skills/hotwire-patterns/reference/turbo-frames.md +158 -0
- data/.claude/skills/hotwire-patterns/reference/turbo-streams.md +218 -0
- data/.claude/skills/i18n-patterns/SKILL.md +320 -0
- data/.claude/skills/install/SKILL.md +367 -0
- data/.claude/skills/performance-optimization/SKILL.md +311 -0
- data/.claude/skills/rails-architecture/SKILL.md +259 -0
- data/.claude/skills/rails-architecture/reference/error-handling.md +333 -0
- data/.claude/skills/rails-architecture/reference/event-tracking.md +142 -0
- data/.claude/skills/rails-architecture/reference/layer-interactions.md +417 -0
- data/.claude/skills/rails-architecture/reference/multi-tenancy.md +152 -0
- data/.claude/skills/rails-architecture/reference/query-patterns.md +342 -0
- data/.claude/skills/rails-architecture/reference/service-patterns.md +286 -0
- data/.claude/skills/rails-architecture/reference/state-records.md +250 -0
- data/.claude/skills/rails-architecture/reference/testing-strategy.md +326 -0
- data/.claude/skills/rails-concern/SKILL.md +399 -0
- data/.claude/skills/rails-controller/SKILL.md +336 -0
- data/.claude/skills/rails-model-generator/SKILL.md +321 -0
- data/.claude/skills/rails-model-generator/reference/validations.md +298 -0
- data/.claude/skills/rails-presenter/SKILL.md +274 -0
- data/.claude/skills/rails-query-object/SKILL.md +289 -0
- data/.claude/skills/rails-service-object/SKILL.md +349 -0
- data/.claude/skills/solid-queue-setup/SKILL.md +307 -0
- data/.claude/skills/tdd-cycle/SKILL.md +359 -0
- data/.claude/skills/viewcomponent-patterns/SKILL.md +333 -0
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -1
- data/.vbw-planning/.notification-log.jsonl +192 -0
- data/.vbw-planning/.session-log.jsonl +871 -0
- data/.vbw-planning/PROJECT.md +51 -0
- data/.vbw-planning/REQUIREMENTS.md +50 -0
- data/.vbw-planning/SHIPPED.md +28 -0
- data/.vbw-planning/codebase/ARCHITECTURE.md +147 -0
- data/.vbw-planning/codebase/CONCERNS.md +99 -0
- data/.vbw-planning/codebase/CONVENTIONS.md +97 -0
- data/.vbw-planning/codebase/DEPENDENCIES.md +100 -0
- data/.vbw-planning/codebase/INDEX.md +86 -0
- data/.vbw-planning/codebase/META.md +42 -0
- data/.vbw-planning/codebase/PATTERNS.md +262 -0
- data/.vbw-planning/codebase/STACK.md +101 -0
- data/.vbw-planning/codebase/STRUCTURE.md +324 -0
- data/.vbw-planning/codebase/TESTING.md +154 -0
- data/.vbw-planning/config.json +12 -0
- data/.vbw-planning/discovery.json +24 -0
- data/.vbw-planning/milestones/default/ROADMAP.md +115 -0
- data/.vbw-planning/milestones/default/STATE.md +83 -0
- data/.vbw-planning/milestones/default/phases/01-coverage-analysis-quick-wins/PLAN-01-SUMMARY.md +56 -0
- data/.vbw-planning/milestones/default/phases/01-coverage-analysis-quick-wins/PLAN-01.md +187 -0
- data/.vbw-planning/milestones/default/phases/01-coverage-analysis-quick-wins/PLAN-02-SUMMARY.md +64 -0
- data/.vbw-planning/milestones/default/phases/01-coverage-analysis-quick-wins/PLAN-02.md +137 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-01-SUMMARY.md +67 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-01.md +142 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-02-SUMMARY.md +64 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-02.md +138 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-03-SUMMARY.md +85 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-03.md +147 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-04-SUMMARY.md +63 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-04.md +129 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-05-SUMMARY.md +74 -0
- data/.vbw-planning/milestones/default/phases/02-critical-path-test-coverage/PLAN-05.md +154 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/03-VERIFICATION-wave1.md +303 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/03-VERIFICATION.md +510 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-01-SUMMARY.md +61 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-01.md +161 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-02-SUMMARY.md +66 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-02.md +132 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-03-SUMMARY.md +59 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-03.md +171 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-04-SUMMARY.md +56 -0
- data/.vbw-planning/milestones/default/phases/03-large-file-refactoring/PLAN-04.md +152 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/04-CONTEXT.md +33 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-01-SUMMARY.md +42 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-01.md +119 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-02-SUMMARY.md +52 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-02.md +195 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-03-SUMMARY.md +79 -0
- data/.vbw-planning/milestones/default/phases/04-code-quality-conventions-cleanup/PLAN-03.md +130 -0
- data/CHANGELOG.md +28 -0
- data/CLAUDE.md +179 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +113 -100
- data/Rakefile +2 -0
- data/app/controllers/source_monitor/application_controller.rb +2 -0
- data/app/controllers/source_monitor/health_controller.rb +2 -0
- data/app/controllers/source_monitor/import_sessions/bulk_configuration.rb +106 -0
- data/app/controllers/source_monitor/import_sessions/entry_annotation.rb +187 -0
- data/app/controllers/source_monitor/import_sessions/health_check_management.rb +112 -0
- data/app/controllers/source_monitor/import_sessions/opml_parser.rb +130 -0
- data/app/controllers/source_monitor/import_sessions_controller.rb +6 -507
- data/app/controllers/source_monitor/items_controller.rb +2 -0
- data/app/controllers/source_monitor/sources_controller.rb +0 -14
- data/app/helpers/source_monitor/application_helper.rb +4 -112
- data/app/helpers/source_monitor/health_badge_helper.rb +69 -0
- data/app/helpers/source_monitor/table_sort_helper.rb +53 -0
- data/app/jobs/source_monitor/application_job.rb +2 -0
- data/app/models/source_monitor/application_record.rb +2 -0
- data/app/models/source_monitor/log_entry.rb +0 -2
- data/config/coverage_baseline.json +217 -1862
- data/config/routes.rb +2 -0
- data/db/migrate/20251009103000_add_feed_content_readability_to_sources.rb +2 -0
- data/db/migrate/20251014171659_add_performance_indexes.rb +2 -0
- data/db/migrate/20251014172525_add_fetch_status_check_constraint.rb +2 -0
- data/db/migrate/20251108120116_refresh_fetch_status_constraint.rb +2 -0
- data/db/migrate/20260210204022_add_composite_index_to_log_entries.rb +17 -0
- data/lib/source_monitor/assets/bundler.rb +2 -0
- data/lib/source_monitor/assets.rb +2 -0
- data/lib/source_monitor/configuration/authentication_settings.rb +62 -0
- data/lib/source_monitor/configuration/events.rb +60 -0
- data/lib/source_monitor/configuration/fetching_settings.rb +27 -0
- data/lib/source_monitor/configuration/health_settings.rb +27 -0
- data/lib/source_monitor/configuration/http_settings.rb +43 -0
- data/lib/source_monitor/configuration/model_definition.rb +108 -0
- data/lib/source_monitor/configuration/models.rb +36 -0
- data/lib/source_monitor/configuration/realtime_settings.rb +95 -0
- data/lib/source_monitor/configuration/retention_settings.rb +45 -0
- data/lib/source_monitor/configuration/scraper_registry.rb +67 -0
- data/lib/source_monitor/configuration/scraping_settings.rb +39 -0
- data/lib/source_monitor/configuration/validation_definition.rb +32 -0
- data/lib/source_monitor/configuration.rb +12 -579
- data/lib/source_monitor/dashboard/queries/recent_activity_query.rb +138 -0
- data/lib/source_monitor/dashboard/queries/stats_query.rb +71 -0
- data/lib/source_monitor/dashboard/queries.rb +2 -195
- data/lib/source_monitor/engine.rb +2 -0
- data/lib/source_monitor/fetching/feed_fetcher/adaptive_interval.rb +141 -0
- data/lib/source_monitor/fetching/feed_fetcher/entry_processor.rb +89 -0
- data/lib/source_monitor/fetching/feed_fetcher/source_updater.rb +200 -0
- data/lib/source_monitor/fetching/feed_fetcher.rb +37 -379
- data/lib/source_monitor/items/item_creator/content_extractor.rb +113 -0
- data/lib/source_monitor/items/item_creator/entry_parser/media_extraction.rb +96 -0
- data/lib/source_monitor/items/item_creator/entry_parser.rb +294 -0
- data/lib/source_monitor/items/item_creator.rb +28 -455
- data/lib/source_monitor/setup/bundle_installer.rb +2 -0
- data/lib/source_monitor/setup/cli.rb +2 -0
- data/lib/source_monitor/setup/dependency_checker.rb +2 -0
- data/lib/source_monitor/setup/detectors.rb +2 -0
- data/lib/source_monitor/setup/gemfile_editor.rb +2 -0
- data/lib/source_monitor/setup/initializer_patcher.rb +2 -0
- data/lib/source_monitor/setup/install_generator.rb +2 -0
- data/lib/source_monitor/setup/migration_installer.rb +2 -0
- data/lib/source_monitor/setup/node_installer.rb +2 -0
- data/lib/source_monitor/setup/prompter.rb +2 -0
- data/lib/source_monitor/setup/requirements.rb +2 -0
- data/lib/source_monitor/setup/shell_runner.rb +2 -0
- data/lib/source_monitor/setup/verification/action_cable_verifier.rb +2 -0
- data/lib/source_monitor/setup/verification/printer.rb +2 -0
- data/lib/source_monitor/setup/verification/result.rb +2 -0
- data/lib/source_monitor/setup/verification/runner.rb +2 -0
- data/lib/source_monitor/setup/verification/solid_queue_verifier.rb +2 -0
- data/lib/source_monitor/setup/verification/telemetry_logger.rb +2 -0
- data/lib/source_monitor/setup/workflow.rb +2 -0
- data/lib/source_monitor/version.rb +3 -1
- data/lib/source_monitor.rb +140 -58
- data/lib/tasks/source_monitor_assets.rake +2 -0
- data/lib/tasks/source_monitor_setup.rake +2 -0
- data/lib/tasks/source_monitor_tasks.rake +2 -0
- data/source_monitor.gemspec +3 -1
- metadata +141 -4
|
@@ -8,9 +8,6 @@
|
|
|
8
8
|
52,
|
|
9
9
|
77
|
|
10
10
|
],
|
|
11
|
-
"app/controllers/source_monitor/application_controller.rb": [
|
|
12
|
-
37
|
|
13
|
-
],
|
|
14
11
|
"app/controllers/source_monitor/fetch_logs_controller.rb": [
|
|
15
12
|
3,
|
|
16
13
|
4,
|
|
@@ -20,94 +17,42 @@
|
|
|
20
17
|
8,
|
|
21
18
|
9
|
|
22
19
|
],
|
|
23
|
-
"app/controllers/source_monitor/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
77,
|
|
32
|
-
91,
|
|
33
|
-
92,
|
|
34
|
-
93,
|
|
35
|
-
95,
|
|
36
|
-
97,
|
|
37
|
-
101,
|
|
38
|
-
102,
|
|
39
|
-
103,
|
|
40
|
-
104,
|
|
41
|
-
341,
|
|
42
|
-
347,
|
|
43
|
-
349,
|
|
44
|
-
357,
|
|
45
|
-
359,
|
|
46
|
-
360,
|
|
47
|
-
361,
|
|
48
|
-
364,
|
|
49
|
-
365,
|
|
50
|
-
366,
|
|
51
|
-
367,
|
|
52
|
-
370,
|
|
53
|
-
372,
|
|
54
|
-
376,
|
|
55
|
-
378,
|
|
56
|
-
379,
|
|
57
|
-
380,
|
|
58
|
-
382,
|
|
59
|
-
383,
|
|
60
|
-
387,
|
|
61
|
-
391,
|
|
62
|
-
393,
|
|
63
|
-
395,
|
|
64
|
-
397,
|
|
65
|
-
399,
|
|
66
|
-
401,
|
|
67
|
-
463,
|
|
68
|
-
520,
|
|
69
|
-
532,
|
|
70
|
-
536,
|
|
71
|
-
547,
|
|
72
|
-
575,
|
|
73
|
-
593,
|
|
74
|
-
594,
|
|
75
|
-
721,
|
|
76
|
-
723
|
|
20
|
+
"app/controllers/source_monitor/import_sessions/entry_annotation.rb": [
|
|
21
|
+
21,
|
|
22
|
+
62,
|
|
23
|
+
66,
|
|
24
|
+
101
|
|
25
|
+
],
|
|
26
|
+
"app/controllers/source_monitor/import_sessions/opml_parser.rb": [
|
|
27
|
+
126
|
|
77
28
|
],
|
|
78
29
|
"app/controllers/source_monitor/items_controller.rb": [
|
|
79
|
-
40,
|
|
80
30
|
42,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
49,
|
|
31
|
+
44,
|
|
32
|
+
45,
|
|
84
33
|
51,
|
|
85
|
-
52,
|
|
86
34
|
53,
|
|
87
35
|
55,
|
|
88
36
|
57,
|
|
89
|
-
58,
|
|
90
37
|
59,
|
|
91
|
-
|
|
92
|
-
|
|
38
|
+
60,
|
|
39
|
+
61,
|
|
93
40
|
68,
|
|
94
|
-
|
|
95
|
-
74,
|
|
96
|
-
75,
|
|
41
|
+
69,
|
|
97
42
|
76,
|
|
98
43
|
77,
|
|
44
|
+
78,
|
|
99
45
|
79,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
93,
|
|
103
|
-
97,
|
|
46
|
+
81,
|
|
47
|
+
94,
|
|
104
48
|
99,
|
|
105
49
|
101,
|
|
106
50
|
103,
|
|
107
|
-
|
|
51
|
+
105,
|
|
108
52
|
110,
|
|
109
|
-
|
|
110
|
-
113
|
|
53
|
+
112,
|
|
54
|
+
113,
|
|
55
|
+
115
|
|
111
56
|
],
|
|
112
57
|
"app/controllers/source_monitor/scrape_logs_controller.rb": [
|
|
113
58
|
3,
|
|
@@ -126,32 +71,19 @@
|
|
|
126
71
|
103
|
|
127
72
|
],
|
|
128
73
|
"app/controllers/source_monitor/sources_controller.rb": [
|
|
129
|
-
42,
|
|
130
|
-
43,
|
|
131
74
|
44,
|
|
132
75
|
45,
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
76
|
+
46,
|
|
77
|
+
47,
|
|
78
|
+
60,
|
|
79
|
+
68,
|
|
137
80
|
69,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
113,
|
|
141
|
-
115,
|
|
142
|
-
119,
|
|
143
|
-
120,
|
|
144
|
-
122,
|
|
145
|
-
132
|
|
81
|
+
71,
|
|
82
|
+
108
|
|
146
83
|
],
|
|
147
84
|
"app/helpers/source_monitor/application_helper.rb": [
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
95,
|
|
151
|
-
145,
|
|
152
|
-
177,
|
|
153
|
-
270,
|
|
154
|
-
283
|
|
85
|
+
272,
|
|
86
|
+
285
|
|
155
87
|
],
|
|
156
88
|
"app/jobs/source_monitor/fetch_feed_job.rb": [
|
|
157
89
|
52,
|
|
@@ -161,6 +93,15 @@
|
|
|
161
93
|
95,
|
|
162
94
|
114
|
|
163
95
|
],
|
|
96
|
+
"app/jobs/source_monitor/import_opml_job.rb": [
|
|
97
|
+
61,
|
|
98
|
+
62,
|
|
99
|
+
77,
|
|
100
|
+
80,
|
|
101
|
+
81,
|
|
102
|
+
83,
|
|
103
|
+
147
|
|
104
|
+
],
|
|
164
105
|
"app/jobs/source_monitor/import_session_health_check_job.rb": [
|
|
165
106
|
56
|
|
166
107
|
],
|
|
@@ -179,367 +120,159 @@
|
|
|
179
120
|
"app/models/source_monitor/item.rb": [
|
|
180
121
|
98
|
|
181
122
|
],
|
|
182
|
-
"app/models/source_monitor/log_entry.rb": [
|
|
183
|
-
21,
|
|
184
|
-
33
|
|
185
|
-
],
|
|
186
123
|
"app/models/source_monitor/source.rb": [
|
|
187
124
|
76,
|
|
188
125
|
80,
|
|
189
126
|
82
|
|
190
127
|
],
|
|
191
|
-
"lib/source_monitor.rb": [
|
|
192
|
-
29,
|
|
193
|
-
116,
|
|
194
|
-
132,
|
|
195
|
-
136,
|
|
196
|
-
140,
|
|
197
|
-
144,
|
|
198
|
-
145,
|
|
199
|
-
146,
|
|
200
|
-
148,
|
|
201
|
-
150,
|
|
202
|
-
156,
|
|
203
|
-
160,
|
|
204
|
-
162,
|
|
205
|
-
163,
|
|
206
|
-
165
|
|
207
|
-
],
|
|
208
128
|
"lib/source_monitor/analytics/source_activity_rates.rb": [
|
|
209
129
|
44
|
|
210
130
|
],
|
|
211
|
-
"lib/source_monitor/analytics/
|
|
131
|
+
"lib/source_monitor/analytics/sources_index_metrics.rb": [
|
|
132
|
+
87
|
|
133
|
+
],
|
|
134
|
+
"lib/source_monitor/assets/bundler.rb": [
|
|
135
|
+
23,
|
|
136
|
+
25
|
|
137
|
+
],
|
|
138
|
+
"lib/source_monitor/configuration.rb": [
|
|
139
|
+
67,
|
|
140
|
+
69
|
|
141
|
+
],
|
|
142
|
+
"lib/source_monitor/configuration/authentication_settings.rb": [
|
|
143
|
+
8,
|
|
144
|
+
10,
|
|
145
|
+
12,
|
|
146
|
+
14,
|
|
147
|
+
15,
|
|
148
|
+
16,
|
|
212
149
|
18,
|
|
150
|
+
32,
|
|
151
|
+
36,
|
|
152
|
+
49,
|
|
153
|
+
50,
|
|
154
|
+
52,
|
|
155
|
+
53,
|
|
156
|
+
54,
|
|
157
|
+
55,
|
|
158
|
+
57
|
|
159
|
+
],
|
|
160
|
+
"lib/source_monitor/configuration/events.rb": [
|
|
161
|
+
20,
|
|
162
|
+
21,
|
|
213
163
|
22,
|
|
214
|
-
|
|
164
|
+
23,
|
|
215
165
|
31,
|
|
216
|
-
33,
|
|
217
|
-
34,
|
|
218
166
|
35,
|
|
219
|
-
|
|
167
|
+
36,
|
|
168
|
+
46,
|
|
169
|
+
55
|
|
170
|
+
],
|
|
171
|
+
"lib/source_monitor/configuration/model_definition.rb": [
|
|
172
|
+
23,
|
|
173
|
+
25,
|
|
174
|
+
26,
|
|
175
|
+
35,
|
|
176
|
+
39,
|
|
177
|
+
59,
|
|
178
|
+
70,
|
|
179
|
+
71,
|
|
180
|
+
73,
|
|
181
|
+
77,
|
|
182
|
+
79,
|
|
183
|
+
82,
|
|
184
|
+
88,
|
|
185
|
+
90,
|
|
186
|
+
98,
|
|
187
|
+
100
|
|
188
|
+
],
|
|
189
|
+
"lib/source_monitor/configuration/models.rb": [
|
|
190
|
+
28,
|
|
191
|
+
29,
|
|
192
|
+
30,
|
|
193
|
+
32
|
|
194
|
+
],
|
|
195
|
+
"lib/source_monitor/configuration/realtime_settings.rb": [
|
|
196
|
+
18,
|
|
197
|
+
31,
|
|
220
198
|
39,
|
|
221
199
|
40,
|
|
200
|
+
41,
|
|
201
|
+
43,
|
|
222
202
|
45,
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
203
|
+
63,
|
|
204
|
+
65,
|
|
205
|
+
66,
|
|
206
|
+
67
|
|
227
207
|
],
|
|
228
|
-
"lib/source_monitor/
|
|
208
|
+
"lib/source_monitor/configuration/retention_settings.rb": [
|
|
229
209
|
15,
|
|
230
|
-
16,
|
|
231
|
-
17,
|
|
232
|
-
18,
|
|
233
210
|
19,
|
|
234
|
-
|
|
235
|
-
|
|
211
|
+
20,
|
|
212
|
+
26,
|
|
236
213
|
28,
|
|
237
|
-
|
|
214
|
+
29,
|
|
238
215
|
31,
|
|
239
216
|
32,
|
|
240
|
-
|
|
217
|
+
34,
|
|
218
|
+
37,
|
|
219
|
+
38,
|
|
220
|
+
40
|
|
221
|
+
],
|
|
222
|
+
"lib/source_monitor/configuration/scraper_registry.rb": [
|
|
223
|
+
15,
|
|
224
|
+
16,
|
|
225
|
+
20,
|
|
226
|
+
24,
|
|
227
|
+
25,
|
|
228
|
+
29,
|
|
241
229
|
35,
|
|
230
|
+
36,
|
|
242
231
|
38,
|
|
243
|
-
|
|
244
|
-
|
|
232
|
+
42,
|
|
233
|
+
44,
|
|
234
|
+
45,
|
|
245
235
|
48,
|
|
246
|
-
|
|
247
|
-
|
|
236
|
+
52,
|
|
237
|
+
54,
|
|
238
|
+
55,
|
|
239
|
+
57,
|
|
248
240
|
59,
|
|
249
|
-
|
|
250
|
-
62,
|
|
251
|
-
63,
|
|
252
|
-
65,
|
|
253
|
-
71,
|
|
254
|
-
73,
|
|
255
|
-
74,
|
|
256
|
-
75,
|
|
257
|
-
77,
|
|
258
|
-
79,
|
|
259
|
-
83,
|
|
260
|
-
84,
|
|
261
|
-
85,
|
|
262
|
-
87
|
|
241
|
+
63
|
|
263
242
|
],
|
|
264
|
-
"lib/source_monitor/
|
|
265
|
-
|
|
266
|
-
13,
|
|
243
|
+
"lib/source_monitor/configuration/validation_definition.rb": [
|
|
244
|
+
15,
|
|
267
245
|
17,
|
|
246
|
+
19,
|
|
268
247
|
21,
|
|
269
|
-
23,
|
|
270
248
|
24,
|
|
271
|
-
|
|
272
|
-
29,
|
|
273
|
-
34,
|
|
274
|
-
40,
|
|
275
|
-
41,
|
|
276
|
-
45
|
|
249
|
+
28
|
|
277
250
|
],
|
|
278
|
-
"lib/source_monitor/
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
251
|
+
"lib/source_monitor/dashboard/recent_activity_presenter.rb": [
|
|
252
|
+
28,
|
|
253
|
+
67,
|
|
254
|
+
69
|
|
255
|
+
],
|
|
256
|
+
"lib/source_monitor/dashboard/turbo_broadcaster.rb": [
|
|
257
|
+
60
|
|
258
|
+
],
|
|
259
|
+
"lib/source_monitor/dashboard/upcoming_fetch_schedule.rb": [
|
|
260
|
+
18
|
|
261
|
+
],
|
|
262
|
+
"lib/source_monitor/engine.rb": [
|
|
263
|
+
55,
|
|
264
|
+
56,
|
|
265
|
+
63,
|
|
266
|
+
64,
|
|
282
267
|
65,
|
|
268
|
+
66,
|
|
283
269
|
67,
|
|
284
|
-
|
|
285
|
-
71,
|
|
270
|
+
72,
|
|
286
271
|
78,
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
86,
|
|
292
|
-
88,
|
|
293
|
-
102,
|
|
294
|
-
106,
|
|
295
|
-
119,
|
|
296
|
-
120,
|
|
297
|
-
122,
|
|
298
|
-
123,
|
|
299
|
-
124,
|
|
300
|
-
125,
|
|
301
|
-
127,
|
|
302
|
-
179,
|
|
303
|
-
192,
|
|
304
|
-
200,
|
|
305
|
-
201,
|
|
306
|
-
202,
|
|
307
|
-
204,
|
|
308
|
-
206,
|
|
309
|
-
224,
|
|
310
|
-
226,
|
|
311
|
-
227,
|
|
312
|
-
228,
|
|
313
|
-
346,
|
|
314
|
-
347,
|
|
315
|
-
351,
|
|
316
|
-
355,
|
|
317
|
-
356,
|
|
318
|
-
360,
|
|
319
|
-
366,
|
|
320
|
-
367,
|
|
321
|
-
369,
|
|
322
|
-
373,
|
|
323
|
-
375,
|
|
324
|
-
376,
|
|
325
|
-
379,
|
|
326
|
-
383,
|
|
327
|
-
385,
|
|
328
|
-
386,
|
|
329
|
-
388,
|
|
330
|
-
390,
|
|
331
|
-
394,
|
|
332
|
-
408,
|
|
333
|
-
412,
|
|
334
|
-
413,
|
|
335
|
-
419,
|
|
336
|
-
421,
|
|
337
|
-
422,
|
|
338
|
-
424,
|
|
339
|
-
425,
|
|
340
|
-
427,
|
|
341
|
-
430,
|
|
342
|
-
431,
|
|
343
|
-
433,
|
|
344
|
-
453,
|
|
345
|
-
454,
|
|
346
|
-
455,
|
|
347
|
-
456,
|
|
348
|
-
464,
|
|
349
|
-
468,
|
|
350
|
-
469,
|
|
351
|
-
479,
|
|
352
|
-
488,
|
|
353
|
-
545,
|
|
354
|
-
554,
|
|
355
|
-
558,
|
|
356
|
-
578,
|
|
357
|
-
589,
|
|
358
|
-
590,
|
|
359
|
-
592,
|
|
360
|
-
596,
|
|
361
|
-
598,
|
|
362
|
-
601,
|
|
363
|
-
607,
|
|
364
|
-
609,
|
|
365
|
-
617,
|
|
366
|
-
619,
|
|
367
|
-
637,
|
|
368
|
-
639,
|
|
369
|
-
641,
|
|
370
|
-
643,
|
|
371
|
-
646,
|
|
372
|
-
650
|
|
373
|
-
],
|
|
374
|
-
"lib/source_monitor/dashboard/queries.rb": [
|
|
375
|
-
10,
|
|
376
|
-
11,
|
|
377
|
-
15,
|
|
378
|
-
16,
|
|
379
|
-
17,
|
|
380
|
-
23,
|
|
381
|
-
24,
|
|
382
|
-
25,
|
|
383
|
-
31,
|
|
384
|
-
35,
|
|
385
|
-
36,
|
|
386
|
-
38,
|
|
387
|
-
39,
|
|
388
|
-
53,
|
|
389
|
-
62,
|
|
390
|
-
63,
|
|
391
|
-
64,
|
|
392
|
-
76,
|
|
393
|
-
77,
|
|
394
|
-
78,
|
|
395
|
-
79,
|
|
396
|
-
81,
|
|
397
|
-
82,
|
|
398
|
-
83,
|
|
399
|
-
85,
|
|
400
|
-
89,
|
|
401
|
-
90,
|
|
402
|
-
92,
|
|
403
|
-
94,
|
|
404
|
-
96,
|
|
405
|
-
97,
|
|
406
|
-
99,
|
|
407
|
-
101,
|
|
408
|
-
106,
|
|
409
|
-
107,
|
|
410
|
-
108,
|
|
411
|
-
109,
|
|
412
|
-
110,
|
|
413
|
-
114,
|
|
414
|
-
121,
|
|
415
|
-
126,
|
|
416
|
-
130,
|
|
417
|
-
131,
|
|
418
|
-
133,
|
|
419
|
-
144,
|
|
420
|
-
149,
|
|
421
|
-
162,
|
|
422
|
-
163,
|
|
423
|
-
168,
|
|
424
|
-
172,
|
|
425
|
-
176,
|
|
426
|
-
187,
|
|
427
|
-
194,
|
|
428
|
-
198,
|
|
429
|
-
202,
|
|
430
|
-
212,
|
|
431
|
-
216,
|
|
432
|
-
217,
|
|
433
|
-
225,
|
|
434
|
-
229,
|
|
435
|
-
245,
|
|
436
|
-
249,
|
|
437
|
-
275,
|
|
438
|
-
293,
|
|
439
|
-
313,
|
|
440
|
-
333
|
|
441
|
-
],
|
|
442
|
-
"lib/source_monitor/dashboard/quick_actions_presenter.rb": [
|
|
443
|
-
7,
|
|
444
|
-
8,
|
|
445
|
-
12,
|
|
446
|
-
14
|
|
447
|
-
],
|
|
448
|
-
"lib/source_monitor/dashboard/recent_activity.rb": [
|
|
449
|
-
21,
|
|
450
|
-
25
|
|
451
|
-
],
|
|
452
|
-
"lib/source_monitor/dashboard/recent_activity_presenter.rb": [
|
|
453
|
-
7,
|
|
454
|
-
8,
|
|
455
|
-
12,
|
|
456
|
-
20,
|
|
457
|
-
22,
|
|
458
|
-
24,
|
|
459
|
-
26,
|
|
460
|
-
28,
|
|
461
|
-
34,
|
|
462
|
-
36,
|
|
463
|
-
45,
|
|
464
|
-
46,
|
|
465
|
-
47,
|
|
466
|
-
56,
|
|
467
|
-
67,
|
|
468
|
-
69
|
|
469
|
-
],
|
|
470
|
-
"lib/source_monitor/dashboard/turbo_broadcaster.rb": [
|
|
471
|
-
26,
|
|
472
|
-
28,
|
|
473
|
-
29,
|
|
474
|
-
31,
|
|
475
|
-
37,
|
|
476
|
-
49,
|
|
477
|
-
50,
|
|
478
|
-
60,
|
|
479
|
-
71
|
|
480
|
-
],
|
|
481
|
-
"lib/source_monitor/dashboard/upcoming_fetch_schedule.rb": [
|
|
482
|
-
18,
|
|
483
|
-
33,
|
|
484
|
-
34,
|
|
485
|
-
38,
|
|
486
|
-
44,
|
|
487
|
-
45,
|
|
488
|
-
46,
|
|
489
|
-
47,
|
|
490
|
-
50,
|
|
491
|
-
51,
|
|
492
|
-
52,
|
|
493
|
-
54,
|
|
494
|
-
57,
|
|
495
|
-
58,
|
|
496
|
-
72,
|
|
497
|
-
73,
|
|
498
|
-
78,
|
|
499
|
-
82,
|
|
500
|
-
86,
|
|
501
|
-
88,
|
|
502
|
-
89,
|
|
503
|
-
90,
|
|
504
|
-
92,
|
|
505
|
-
97,
|
|
506
|
-
99,
|
|
507
|
-
100,
|
|
508
|
-
102,
|
|
509
|
-
106,
|
|
510
|
-
108,
|
|
511
|
-
112,
|
|
512
|
-
114,
|
|
513
|
-
118,
|
|
514
|
-
120,
|
|
515
|
-
121
|
|
516
|
-
],
|
|
517
|
-
"lib/source_monitor/engine.rb": [
|
|
518
|
-
49,
|
|
519
|
-
53,
|
|
520
|
-
54,
|
|
521
|
-
55,
|
|
522
|
-
56,
|
|
523
|
-
61,
|
|
524
|
-
62,
|
|
525
|
-
63,
|
|
526
|
-
64,
|
|
527
|
-
65,
|
|
528
|
-
66,
|
|
529
|
-
67,
|
|
530
|
-
70,
|
|
531
|
-
71,
|
|
532
|
-
72,
|
|
533
|
-
75,
|
|
534
|
-
76,
|
|
535
|
-
78,
|
|
536
|
-
79,
|
|
537
|
-
98,
|
|
538
|
-
99,
|
|
539
|
-
101
|
|
540
|
-
],
|
|
541
|
-
"lib/source_monitor/events.rb": [
|
|
542
|
-
9,
|
|
272
|
+
101
|
|
273
|
+
],
|
|
274
|
+
"lib/source_monitor/events.rb": [
|
|
275
|
+
9,
|
|
543
276
|
15,
|
|
544
277
|
26,
|
|
545
278
|
35,
|
|
@@ -572,379 +305,44 @@
|
|
|
572
305
|
97
|
|
573
306
|
],
|
|
574
307
|
"lib/source_monitor/fetching/advisory_lock.rb": [
|
|
575
|
-
|
|
576
|
-
12,
|
|
577
|
-
13,
|
|
578
|
-
17,
|
|
579
|
-
18,
|
|
580
|
-
19,
|
|
581
|
-
22,
|
|
582
|
-
24,
|
|
583
|
-
34,
|
|
584
|
-
38,
|
|
585
|
-
42,
|
|
586
|
-
46,
|
|
587
|
-
50
|
|
588
|
-
],
|
|
589
|
-
"lib/source_monitor/fetching/completion/event_publisher.rb": [
|
|
590
|
-
9,
|
|
591
|
-
13
|
|
592
|
-
],
|
|
593
|
-
"lib/source_monitor/fetching/completion/follow_up_handler.rb": [
|
|
594
|
-
9,
|
|
595
|
-
10,
|
|
596
|
-
14,
|
|
597
|
-
16,
|
|
598
|
-
17,
|
|
599
|
-
19,
|
|
600
|
-
28,
|
|
601
|
-
29,
|
|
602
|
-
30,
|
|
603
|
-
32
|
|
308
|
+
46
|
|
604
309
|
],
|
|
605
310
|
"lib/source_monitor/fetching/completion/retention_handler.rb": [
|
|
606
|
-
9,
|
|
607
|
-
13,
|
|
608
311
|
18,
|
|
609
312
|
21
|
|
610
313
|
],
|
|
611
|
-
"lib/source_monitor/fetching/feed_fetcher.rb": [
|
|
612
|
-
|
|
613
|
-
37,
|
|
614
|
-
38,
|
|
615
|
-
42,
|
|
616
|
-
43,
|
|
617
|
-
44,
|
|
618
|
-
45,
|
|
619
|
-
47,
|
|
620
|
-
49,
|
|
621
|
-
51,
|
|
622
|
-
53,
|
|
623
|
-
54,
|
|
624
|
-
56,
|
|
625
|
-
57,
|
|
626
|
-
58,
|
|
314
|
+
"lib/source_monitor/fetching/feed_fetcher/adaptive_interval.rb": [
|
|
315
|
+
64,
|
|
627
316
|
65,
|
|
628
|
-
|
|
629
|
-
75,
|
|
630
|
-
76,
|
|
631
|
-
78,
|
|
632
|
-
80,
|
|
633
|
-
82,
|
|
634
|
-
84,
|
|
635
|
-
86,
|
|
636
|
-
90,
|
|
637
|
-
94,
|
|
638
|
-
98,
|
|
639
|
-
99,
|
|
317
|
+
67,
|
|
640
318
|
100,
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
123,
|
|
652
|
-
124,
|
|
653
|
-
125,
|
|
654
|
-
139,
|
|
655
|
-
140,
|
|
656
|
-
141,
|
|
657
|
-
142,
|
|
658
|
-
143,
|
|
659
|
-
144,
|
|
660
|
-
145,
|
|
661
|
-
146,
|
|
662
|
-
148,
|
|
663
|
-
152,
|
|
664
|
-
154,
|
|
665
|
-
155,
|
|
666
|
-
162,
|
|
667
|
-
163,
|
|
668
|
-
164,
|
|
669
|
-
165,
|
|
670
|
-
166,
|
|
671
|
-
167,
|
|
672
|
-
168,
|
|
673
|
-
170,
|
|
674
|
-
187,
|
|
675
|
-
189,
|
|
676
|
-
194,
|
|
677
|
-
203,
|
|
678
|
-
204,
|
|
679
|
-
207,
|
|
680
|
-
208,
|
|
681
|
-
209,
|
|
682
|
-
212,
|
|
683
|
-
213,
|
|
684
|
-
214,
|
|
685
|
-
215,
|
|
686
|
-
220,
|
|
687
|
-
228,
|
|
688
|
-
229,
|
|
689
|
-
232,
|
|
690
|
-
233,
|
|
691
|
-
234,
|
|
692
|
-
237,
|
|
693
|
-
238,
|
|
694
|
-
239,
|
|
695
|
-
240,
|
|
696
|
-
244,
|
|
697
|
-
246,
|
|
698
|
-
254,
|
|
699
|
-
255,
|
|
700
|
-
256,
|
|
701
|
-
257,
|
|
702
|
-
258,
|
|
703
|
-
262,
|
|
704
|
-
263,
|
|
705
|
-
264,
|
|
706
|
-
268,
|
|
707
|
-
270,
|
|
708
|
-
271,
|
|
709
|
-
272,
|
|
710
|
-
273,
|
|
711
|
-
274,
|
|
712
|
-
275,
|
|
713
|
-
276,
|
|
714
|
-
277,
|
|
715
|
-
278,
|
|
716
|
-
279,
|
|
717
|
-
280,
|
|
718
|
-
281,
|
|
719
|
-
282,
|
|
720
|
-
283,
|
|
721
|
-
284,
|
|
722
|
-
287,
|
|
723
|
-
290,
|
|
724
|
-
294,
|
|
725
|
-
295,
|
|
726
|
-
296,
|
|
727
|
-
297,
|
|
728
|
-
298,
|
|
729
|
-
303,
|
|
730
|
-
306,
|
|
731
|
-
311,
|
|
732
|
-
323,
|
|
733
|
-
325,
|
|
734
|
-
329,
|
|
735
|
-
330,
|
|
736
|
-
331,
|
|
737
|
-
332,
|
|
738
|
-
333,
|
|
739
|
-
334,
|
|
740
|
-
338,
|
|
741
|
-
340,
|
|
742
|
-
344,
|
|
743
|
-
346,
|
|
744
|
-
350,
|
|
745
|
-
352,
|
|
746
|
-
354,
|
|
747
|
-
358,
|
|
748
|
-
362,
|
|
749
|
-
363,
|
|
750
|
-
364,
|
|
751
|
-
366,
|
|
752
|
-
367,
|
|
753
|
-
376,
|
|
754
|
-
377,
|
|
755
|
-
378,
|
|
756
|
-
379,
|
|
757
|
-
380,
|
|
758
|
-
381,
|
|
759
|
-
382,
|
|
760
|
-
383,
|
|
761
|
-
384,
|
|
762
|
-
385,
|
|
763
|
-
387,
|
|
764
|
-
406,
|
|
765
|
-
407,
|
|
766
|
-
408,
|
|
767
|
-
413,
|
|
768
|
-
414,
|
|
769
|
-
415,
|
|
770
|
-
420,
|
|
771
|
-
422,
|
|
772
|
-
426,
|
|
773
|
-
427,
|
|
774
|
-
428,
|
|
775
|
-
429,
|
|
776
|
-
431,
|
|
777
|
-
432,
|
|
778
|
-
433,
|
|
779
|
-
435,
|
|
780
|
-
436,
|
|
781
|
-
437,
|
|
782
|
-
442,
|
|
783
|
-
444,
|
|
784
|
-
445,
|
|
785
|
-
446,
|
|
786
|
-
447,
|
|
787
|
-
449,
|
|
788
|
-
452,
|
|
789
|
-
453,
|
|
790
|
-
454,
|
|
791
|
-
458,
|
|
792
|
-
462,
|
|
793
|
-
463,
|
|
794
|
-
467,
|
|
795
|
-
471,
|
|
796
|
-
475,
|
|
797
|
-
479,
|
|
798
|
-
483,
|
|
799
|
-
487,
|
|
800
|
-
491,
|
|
801
|
-
492,
|
|
802
|
-
493,
|
|
803
|
-
494,
|
|
804
|
-
498,
|
|
805
|
-
499,
|
|
806
|
-
500,
|
|
807
|
-
501,
|
|
808
|
-
505,
|
|
809
|
-
506,
|
|
810
|
-
508,
|
|
811
|
-
509,
|
|
812
|
-
511,
|
|
813
|
-
515,
|
|
814
|
-
517,
|
|
815
|
-
529,
|
|
816
|
-
531,
|
|
817
|
-
532,
|
|
818
|
-
533,
|
|
819
|
-
534,
|
|
820
|
-
535,
|
|
821
|
-
536,
|
|
822
|
-
537,
|
|
823
|
-
539,
|
|
824
|
-
541,
|
|
825
|
-
542,
|
|
826
|
-
543,
|
|
827
|
-
544,
|
|
828
|
-
545,
|
|
829
|
-
546,
|
|
830
|
-
547,
|
|
831
|
-
549,
|
|
832
|
-
550,
|
|
833
|
-
553,
|
|
834
|
-
554,
|
|
835
|
-
558,
|
|
836
|
-
570,
|
|
837
|
-
571,
|
|
838
|
-
573,
|
|
839
|
-
577,
|
|
840
|
-
578,
|
|
841
|
-
580,
|
|
842
|
-
584,
|
|
843
|
-
585,
|
|
844
|
-
587,
|
|
845
|
-
591,
|
|
846
|
-
592,
|
|
847
|
-
594,
|
|
848
|
-
596,
|
|
849
|
-
600,
|
|
850
|
-
605,
|
|
851
|
-
611,
|
|
852
|
-
615,
|
|
853
|
-
616,
|
|
854
|
-
617,
|
|
855
|
-
618,
|
|
856
|
-
623
|
|
319
|
+
102,
|
|
320
|
+
132
|
|
321
|
+
],
|
|
322
|
+
"lib/source_monitor/fetching/feed_fetcher/entry_processor.rb": [
|
|
323
|
+
72,
|
|
324
|
+
78,
|
|
325
|
+
79
|
|
326
|
+
],
|
|
327
|
+
"lib/source_monitor/fetching/feed_fetcher/source_updater.rb": [
|
|
328
|
+
157
|
|
857
329
|
],
|
|
858
330
|
"lib/source_monitor/fetching/fetch_error.rb": [
|
|
859
|
-
11,
|
|
860
|
-
12,
|
|
861
|
-
13,
|
|
862
|
-
17,
|
|
863
|
-
21,
|
|
864
331
|
27,
|
|
865
332
|
37,
|
|
866
333
|
47,
|
|
867
|
-
57,
|
|
868
|
-
58,
|
|
869
334
|
64,
|
|
870
335
|
74,
|
|
871
336
|
84
|
|
872
337
|
],
|
|
873
338
|
"lib/source_monitor/fetching/fetch_runner.rb": [
|
|
874
|
-
22,
|
|
875
|
-
23,
|
|
876
|
-
24,
|
|
877
|
-
25,
|
|
878
|
-
30,
|
|
879
|
-
31,
|
|
880
|
-
32,
|
|
881
|
-
33,
|
|
882
339
|
37,
|
|
883
|
-
50,
|
|
884
|
-
52,
|
|
885
|
-
53,
|
|
886
|
-
55,
|
|
887
|
-
56,
|
|
888
|
-
57,
|
|
889
|
-
58,
|
|
890
|
-
59,
|
|
891
|
-
60,
|
|
892
|
-
61,
|
|
893
|
-
64,
|
|
894
|
-
65,
|
|
895
|
-
67,
|
|
896
|
-
69,
|
|
897
|
-
70,
|
|
898
|
-
71,
|
|
899
|
-
84,
|
|
900
|
-
85,
|
|
901
340
|
89,
|
|
902
|
-
94,
|
|
903
341
|
98,
|
|
904
342
|
99,
|
|
905
343
|
100,
|
|
906
|
-
104,
|
|
907
|
-
108,
|
|
908
|
-
110,
|
|
909
|
-
111,
|
|
910
|
-
113,
|
|
911
|
-
115,
|
|
912
|
-
119,
|
|
913
|
-
120,
|
|
914
|
-
124,
|
|
915
|
-
128,
|
|
916
|
-
129,
|
|
917
|
-
131,
|
|
918
|
-
132,
|
|
919
|
-
133,
|
|
920
|
-
134,
|
|
921
344
|
138
|
|
922
345
|
],
|
|
923
|
-
"lib/source_monitor/fetching/retry_policy.rb": [
|
|
924
|
-
31,
|
|
925
|
-
32,
|
|
926
|
-
33,
|
|
927
|
-
37,
|
|
928
|
-
38,
|
|
929
|
-
39,
|
|
930
|
-
40,
|
|
931
|
-
42,
|
|
932
|
-
43,
|
|
933
|
-
45,
|
|
934
|
-
46,
|
|
935
|
-
54,
|
|
936
|
-
55,
|
|
937
|
-
68,
|
|
938
|
-
69,
|
|
939
|
-
71,
|
|
940
|
-
72,
|
|
941
|
-
73,
|
|
942
|
-
74,
|
|
943
|
-
75,
|
|
944
|
-
78,
|
|
945
|
-
79,
|
|
946
|
-
81
|
|
947
|
-
],
|
|
948
346
|
"lib/source_monitor/health.rb": [
|
|
949
347
|
23,
|
|
950
348
|
36,
|
|
@@ -1005,335 +403,33 @@
|
|
|
1005
403
|
44
|
|
1006
404
|
],
|
|
1007
405
|
"lib/source_monitor/items/item_creator.rb": [
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
38,
|
|
1014
|
-
39,
|
|
1015
|
-
40,
|
|
1016
|
-
42,
|
|
1017
|
-
44,
|
|
1018
|
-
45,
|
|
1019
|
-
46,
|
|
1020
|
-
49,
|
|
1021
|
-
57,
|
|
1022
|
-
58,
|
|
1023
|
-
60,
|
|
1024
|
-
61,
|
|
1025
|
-
62,
|
|
1026
|
-
65,
|
|
1027
|
-
66,
|
|
1028
|
-
67,
|
|
1029
|
-
70,
|
|
1030
|
-
74,
|
|
1031
|
-
76,
|
|
1032
|
-
80,
|
|
1033
|
-
82,
|
|
1034
|
-
86,
|
|
1035
|
-
88,
|
|
1036
|
-
98,
|
|
406
|
+
114
|
|
407
|
+
],
|
|
408
|
+
"lib/source_monitor/items/item_creator/content_extractor.rb": [
|
|
409
|
+
81,
|
|
410
|
+
97,
|
|
1037
411
|
99,
|
|
1038
412
|
100,
|
|
1039
|
-
|
|
413
|
+
103,
|
|
1040
414
|
105,
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
114,
|
|
1046
|
-
115,
|
|
1047
|
-
116,
|
|
1048
|
-
117,
|
|
1049
|
-
121,
|
|
1050
|
-
123,
|
|
1051
|
-
125,
|
|
1052
|
-
126,
|
|
1053
|
-
131,
|
|
1054
|
-
132,
|
|
1055
|
-
133,
|
|
1056
|
-
134,
|
|
1057
|
-
138,
|
|
1058
|
-
140,
|
|
1059
|
-
141,
|
|
1060
|
-
142,
|
|
1061
|
-
144,
|
|
1062
|
-
145,
|
|
1063
|
-
147,
|
|
1064
|
-
149,
|
|
1065
|
-
157,
|
|
1066
|
-
161,
|
|
1067
|
-
168,
|
|
1068
|
-
172,
|
|
1069
|
-
173,
|
|
1070
|
-
188,
|
|
1071
|
-
189,
|
|
1072
|
-
191,
|
|
1073
|
-
196,
|
|
1074
|
-
202,
|
|
1075
|
-
203,
|
|
1076
|
-
206,
|
|
1077
|
-
207,
|
|
1078
|
-
211,
|
|
1079
|
-
215,
|
|
1080
|
-
216,
|
|
1081
|
-
219,
|
|
1082
|
-
221,
|
|
1083
|
-
222,
|
|
1084
|
-
225,
|
|
1085
|
-
227,
|
|
1086
|
-
230,
|
|
1087
|
-
234,
|
|
1088
|
-
235,
|
|
1089
|
-
236,
|
|
1090
|
-
237,
|
|
1091
|
-
238,
|
|
1092
|
-
239,
|
|
1093
|
-
240,
|
|
1094
|
-
242,
|
|
1095
|
-
243,
|
|
1096
|
-
244,
|
|
1097
|
-
248,
|
|
1098
|
-
274,
|
|
1099
|
-
275,
|
|
1100
|
-
277,
|
|
1101
|
-
279,
|
|
1102
|
-
280,
|
|
1103
|
-
282,
|
|
1104
|
-
283,
|
|
1105
|
-
285,
|
|
1106
|
-
289,
|
|
1107
|
-
290,
|
|
1108
|
-
291,
|
|
1109
|
-
294,
|
|
1110
|
-
295,
|
|
1111
|
-
296,
|
|
1112
|
-
297,
|
|
1113
|
-
299,
|
|
1114
|
-
300,
|
|
1115
|
-
301,
|
|
1116
|
-
304,
|
|
1117
|
-
305,
|
|
1118
|
-
306,
|
|
1119
|
-
309,
|
|
1120
|
-
313,
|
|
1121
|
-
315,
|
|
1122
|
-
319,
|
|
1123
|
-
320,
|
|
1124
|
-
322,
|
|
1125
|
-
323,
|
|
1126
|
-
325,
|
|
1127
|
-
329,
|
|
1128
|
-
330,
|
|
1129
|
-
332,
|
|
1130
|
-
333,
|
|
1131
|
-
335,
|
|
1132
|
-
339,
|
|
1133
|
-
341,
|
|
1134
|
-
345,
|
|
1135
|
-
349,
|
|
1136
|
-
351,
|
|
1137
|
-
352,
|
|
1138
|
-
355,
|
|
1139
|
-
356,
|
|
1140
|
-
357,
|
|
1141
|
-
358,
|
|
1142
|
-
361,
|
|
1143
|
-
362,
|
|
1144
|
-
364,
|
|
1145
|
-
366,
|
|
1146
|
-
371,
|
|
1147
|
-
372,
|
|
1148
|
-
373,
|
|
1149
|
-
374,
|
|
1150
|
-
375,
|
|
1151
|
-
379,
|
|
1152
|
-
380,
|
|
1153
|
-
382,
|
|
1154
|
-
386,
|
|
1155
|
-
387,
|
|
1156
|
-
388,
|
|
1157
|
-
389,
|
|
1158
|
-
390,
|
|
1159
|
-
392,
|
|
1160
|
-
396,
|
|
1161
|
-
398,
|
|
1162
|
-
400,
|
|
1163
|
-
401,
|
|
1164
|
-
404,
|
|
1165
|
-
406,
|
|
1166
|
-
410,
|
|
1167
|
-
411,
|
|
1168
|
-
412,
|
|
1169
|
-
413,
|
|
1170
|
-
417,
|
|
1171
|
-
419,
|
|
1172
|
-
420,
|
|
1173
|
-
421,
|
|
1174
|
-
422,
|
|
1175
|
-
424,
|
|
1176
|
-
433,
|
|
1177
|
-
434,
|
|
1178
|
-
435,
|
|
1179
|
-
437,
|
|
1180
|
-
438,
|
|
1181
|
-
440,
|
|
1182
|
-
449,
|
|
1183
|
-
450,
|
|
1184
|
-
451,
|
|
1185
|
-
452,
|
|
1186
|
-
454,
|
|
1187
|
-
465,
|
|
1188
|
-
469,
|
|
1189
|
-
470,
|
|
1190
|
-
471,
|
|
1191
|
-
474,
|
|
1192
|
-
478,
|
|
1193
|
-
480,
|
|
1194
|
-
481,
|
|
1195
|
-
482,
|
|
1196
|
-
483,
|
|
1197
|
-
485,
|
|
1198
|
-
498,
|
|
1199
|
-
502,
|
|
1200
|
-
503,
|
|
1201
|
-
506,
|
|
1202
|
-
507,
|
|
1203
|
-
510,
|
|
1204
|
-
514,
|
|
1205
|
-
515,
|
|
1206
|
-
518,
|
|
1207
|
-
519,
|
|
1208
|
-
522,
|
|
1209
|
-
526,
|
|
1210
|
-
530,
|
|
1211
|
-
531,
|
|
1212
|
-
532,
|
|
1213
|
-
533,
|
|
1214
|
-
537,
|
|
1215
|
-
539,
|
|
1216
|
-
540,
|
|
1217
|
-
542,
|
|
1218
|
-
546,
|
|
1219
|
-
556,
|
|
1220
|
-
558,
|
|
1221
|
-
562,
|
|
1222
|
-
566,
|
|
1223
|
-
568,
|
|
1224
|
-
569,
|
|
1225
|
-
571,
|
|
1226
|
-
575,
|
|
1227
|
-
576,
|
|
1228
|
-
578,
|
|
1229
|
-
579,
|
|
1230
|
-
581,
|
|
1231
|
-
583,
|
|
1232
|
-
587,
|
|
1233
|
-
591,
|
|
1234
|
-
595,
|
|
1235
|
-
597
|
|
415
|
+
108
|
|
416
|
+
],
|
|
417
|
+
"lib/source_monitor/items/item_creator/entry_parser.rb": [
|
|
418
|
+
97
|
|
1236
419
|
],
|
|
1237
420
|
"lib/source_monitor/items/retention_pruner.rb": [
|
|
1238
421
|
15,
|
|
1239
|
-
25,
|
|
1240
|
-
29,
|
|
1241
|
-
30,
|
|
1242
|
-
31,
|
|
1243
|
-
32,
|
|
1244
|
-
36,
|
|
1245
|
-
37,
|
|
1246
|
-
38,
|
|
1247
|
-
40,
|
|
1248
|
-
41,
|
|
1249
|
-
51,
|
|
1250
|
-
63,
|
|
1251
|
-
64,
|
|
1252
|
-
66,
|
|
1253
|
-
68,
|
|
1254
|
-
70,
|
|
1255
|
-
78,
|
|
1256
|
-
79,
|
|
1257
|
-
83,
|
|
1258
|
-
84,
|
|
1259
|
-
86,
|
|
1260
|
-
88,
|
|
1261
|
-
94,
|
|
1262
422
|
95,
|
|
1263
|
-
97,
|
|
1264
|
-
100,
|
|
1265
|
-
104,
|
|
1266
|
-
106,
|
|
1267
|
-
107,
|
|
1268
|
-
108,
|
|
1269
|
-
110,
|
|
1270
|
-
114,
|
|
1271
|
-
116,
|
|
1272
|
-
117,
|
|
1273
423
|
119,
|
|
1274
|
-
120
|
|
1275
|
-
124,
|
|
1276
|
-
125,
|
|
1277
|
-
126,
|
|
1278
|
-
127,
|
|
1279
|
-
132,
|
|
1280
|
-
133,
|
|
1281
|
-
134,
|
|
1282
|
-
135,
|
|
1283
|
-
140,
|
|
1284
|
-
142
|
|
1285
|
-
],
|
|
1286
|
-
"lib/source_monitor/items/retention_strategies/destroy.rb": [
|
|
1287
|
-
8,
|
|
1288
|
-
12,
|
|
1289
|
-
13,
|
|
1290
|
-
14,
|
|
1291
|
-
15,
|
|
1292
|
-
17
|
|
1293
|
-
],
|
|
1294
|
-
"lib/source_monitor/items/retention_strategies/soft_delete.rb": [
|
|
1295
|
-
8,
|
|
1296
|
-
12,
|
|
1297
|
-
13,
|
|
1298
|
-
15,
|
|
1299
|
-
18,
|
|
1300
|
-
23,
|
|
1301
|
-
24,
|
|
1302
|
-
32,
|
|
1303
|
-
34,
|
|
1304
|
-
38,
|
|
1305
|
-
40,
|
|
1306
|
-
42,
|
|
1307
|
-
44,
|
|
1308
|
-
45
|
|
424
|
+
120
|
|
1309
425
|
],
|
|
1310
426
|
"lib/source_monitor/jobs/cleanup_options.rb": [
|
|
1311
|
-
11,
|
|
1312
|
-
13,
|
|
1313
|
-
15,
|
|
1314
427
|
17,
|
|
1315
|
-
22,
|
|
1316
428
|
24,
|
|
1317
|
-
26,
|
|
1318
|
-
28,
|
|
1319
429
|
30,
|
|
1320
|
-
35,
|
|
1321
|
-
37,
|
|
1322
430
|
39,
|
|
1323
|
-
41,
|
|
1324
|
-
43,
|
|
1325
|
-
46,
|
|
1326
|
-
47,
|
|
1327
|
-
48,
|
|
1328
|
-
54,
|
|
1329
|
-
56,
|
|
1330
|
-
60,
|
|
1331
|
-
61,
|
|
1332
|
-
63,
|
|
1333
431
|
67,
|
|
1334
432
|
68,
|
|
1335
|
-
74,
|
|
1336
|
-
75,
|
|
1337
433
|
77,
|
|
1338
434
|
80
|
|
1339
435
|
],
|
|
@@ -1345,117 +441,17 @@
|
|
|
1345
441
|
122
|
|
1346
442
|
],
|
|
1347
443
|
"lib/source_monitor/jobs/solid_queue_metrics.rb": [
|
|
1348
|
-
20,
|
|
1349
|
-
27,
|
|
1350
|
-
31,
|
|
1351
|
-
35,
|
|
1352
|
-
37,
|
|
1353
|
-
39,
|
|
1354
|
-
40,
|
|
1355
|
-
41,
|
|
1356
|
-
43,
|
|
1357
444
|
45,
|
|
1358
445
|
46,
|
|
1359
|
-
|
|
1360
|
-
55,
|
|
1361
|
-
71,
|
|
1362
|
-
74,
|
|
1363
|
-
83,
|
|
1364
|
-
84,
|
|
1365
|
-
85,
|
|
1366
|
-
86,
|
|
1367
|
-
90,
|
|
1368
|
-
91,
|
|
1369
|
-
92,
|
|
1370
|
-
96,
|
|
1371
|
-
98,
|
|
1372
|
-
99,
|
|
1373
|
-
100,
|
|
1374
|
-
102,
|
|
1375
|
-
107,
|
|
1376
|
-
108,
|
|
1377
|
-
109,
|
|
1378
|
-
111,
|
|
1379
|
-
116,
|
|
1380
|
-
118,
|
|
1381
|
-
125,
|
|
1382
|
-
127,
|
|
1383
|
-
134,
|
|
1384
|
-
136,
|
|
1385
|
-
144,
|
|
1386
|
-
146,
|
|
1387
|
-
149,
|
|
1388
|
-
150,
|
|
1389
|
-
154,
|
|
1390
|
-
161,
|
|
1391
|
-
163,
|
|
1392
|
-
171,
|
|
1393
|
-
179,
|
|
1394
|
-
185,
|
|
1395
|
-
187,
|
|
1396
|
-
191,
|
|
1397
|
-
195
|
|
446
|
+
187
|
|
1398
447
|
],
|
|
1399
448
|
"lib/source_monitor/jobs/visibility.rb": [
|
|
1400
|
-
22,
|
|
1401
|
-
26,
|
|
1402
|
-
30,
|
|
1403
|
-
34,
|
|
1404
|
-
38,
|
|
1405
|
-
42,
|
|
1406
|
-
43,
|
|
1407
449
|
48,
|
|
1408
450
|
49,
|
|
1409
|
-
56
|
|
1410
|
-
70,
|
|
1411
|
-
71,
|
|
1412
|
-
102,
|
|
1413
|
-
103,
|
|
1414
|
-
105,
|
|
1415
|
-
107,
|
|
1416
|
-
108,
|
|
1417
|
-
109,
|
|
1418
|
-
110,
|
|
1419
|
-
111,
|
|
1420
|
-
112,
|
|
1421
|
-
119,
|
|
1422
|
-
120,
|
|
1423
|
-
122,
|
|
1424
|
-
124,
|
|
1425
|
-
125,
|
|
1426
|
-
126,
|
|
1427
|
-
127
|
|
1428
|
-
],
|
|
1429
|
-
"lib/source_monitor/logs/entry_sync.rb": [
|
|
1430
|
-
22,
|
|
1431
|
-
23
|
|
451
|
+
56
|
|
1432
452
|
],
|
|
1433
453
|
"lib/source_monitor/logs/filter_set.rb": [
|
|
1434
|
-
|
|
1435
|
-
106,
|
|
1436
|
-
107,
|
|
1437
|
-
113,
|
|
1438
|
-
131,
|
|
1439
|
-
137,
|
|
1440
|
-
138,
|
|
1441
|
-
140,
|
|
1442
|
-
146,
|
|
1443
|
-
147,
|
|
1444
|
-
149,
|
|
1445
|
-
152,
|
|
1446
|
-
154,
|
|
1447
|
-
159
|
|
1448
|
-
],
|
|
1449
|
-
"lib/source_monitor/logs/query.rb": [
|
|
1450
|
-
16,
|
|
1451
|
-
20,
|
|
1452
|
-
62,
|
|
1453
|
-
64
|
|
1454
|
-
],
|
|
1455
|
-
"lib/source_monitor/logs/table_presenter.rb": [
|
|
1456
|
-
45,
|
|
1457
|
-
74,
|
|
1458
|
-
117
|
|
454
|
+
154
|
|
1459
455
|
],
|
|
1460
456
|
"lib/source_monitor/metrics.rb": [
|
|
1461
457
|
18,
|
|
@@ -1499,7 +495,6 @@
|
|
|
1499
495
|
24,
|
|
1500
496
|
28,
|
|
1501
497
|
30,
|
|
1502
|
-
66,
|
|
1503
498
|
77,
|
|
1504
499
|
86
|
|
1505
500
|
],
|
|
@@ -1568,53 +563,18 @@
|
|
|
1568
563
|
68
|
|
1569
564
|
],
|
|
1570
565
|
"lib/source_monitor/scrapers/base.rb": [
|
|
566
|
+
83,
|
|
567
|
+
98
|
|
568
|
+
],
|
|
569
|
+
"lib/source_monitor/scrapers/fetchers/http_fetcher.rb": [
|
|
570
|
+
21,
|
|
1571
571
|
29,
|
|
1572
|
-
33,
|
|
1573
|
-
37,
|
|
1574
|
-
42,
|
|
1575
|
-
43,
|
|
1576
|
-
44,
|
|
1577
|
-
45,
|
|
1578
|
-
49,
|
|
1579
|
-
59,
|
|
1580
|
-
62,
|
|
1581
|
-
63,
|
|
1582
|
-
66,
|
|
1583
572
|
70,
|
|
1584
|
-
|
|
573
|
+
72,
|
|
1585
574
|
73,
|
|
575
|
+
76,
|
|
1586
576
|
77,
|
|
1587
|
-
|
|
1588
|
-
80,
|
|
1589
|
-
83,
|
|
1590
|
-
85,
|
|
1591
|
-
90,
|
|
1592
|
-
92,
|
|
1593
|
-
94,
|
|
1594
|
-
95,
|
|
1595
|
-
98,
|
|
1596
|
-
100
|
|
1597
|
-
],
|
|
1598
|
-
"lib/source_monitor/scrapers/fetchers/http_fetcher.rb": [
|
|
1599
|
-
12,
|
|
1600
|
-
16,
|
|
1601
|
-
18,
|
|
1602
|
-
19,
|
|
1603
|
-
21,
|
|
1604
|
-
29,
|
|
1605
|
-
36,
|
|
1606
|
-
44,
|
|
1607
|
-
45,
|
|
1608
|
-
54,
|
|
1609
|
-
56,
|
|
1610
|
-
58,
|
|
1611
|
-
66,
|
|
1612
|
-
70,
|
|
1613
|
-
72,
|
|
1614
|
-
73,
|
|
1615
|
-
76,
|
|
1616
|
-
77,
|
|
1617
|
-
78,
|
|
577
|
+
78,
|
|
1618
578
|
79,
|
|
1619
579
|
80,
|
|
1620
580
|
81,
|
|
@@ -1625,362 +585,57 @@
|
|
|
1625
585
|
92
|
|
1626
586
|
],
|
|
1627
587
|
"lib/source_monitor/scrapers/parsers/readability_parser.rb": [
|
|
1628
|
-
|
|
1629
|
-
15,
|
|
1630
|
-
16,
|
|
1631
|
-
18,
|
|
1632
|
-
19,
|
|
1633
|
-
21,
|
|
1634
|
-
22,
|
|
1635
|
-
24,
|
|
1636
|
-
26,
|
|
1637
|
-
27,
|
|
1638
|
-
28,
|
|
1639
|
-
29,
|
|
1640
|
-
32,
|
|
1641
|
-
40,
|
|
1642
|
-
52,
|
|
1643
|
-
54,
|
|
1644
|
-
55,
|
|
1645
|
-
56,
|
|
1646
|
-
61,
|
|
1647
|
-
62,
|
|
1648
|
-
64,
|
|
1649
|
-
65,
|
|
1650
|
-
67,
|
|
1651
|
-
70,
|
|
1652
|
-
72,
|
|
1653
|
-
76,
|
|
1654
|
-
77,
|
|
1655
|
-
80,
|
|
1656
|
-
84,
|
|
1657
|
-
85,
|
|
1658
|
-
87,
|
|
1659
|
-
88,
|
|
1660
|
-
91,
|
|
1661
|
-
92,
|
|
1662
|
-
93,
|
|
1663
|
-
96
|
|
588
|
+
40
|
|
1664
589
|
],
|
|
1665
590
|
"lib/source_monitor/scrapers/readability.rb": [
|
|
1666
|
-
17,
|
|
1667
|
-
40,
|
|
1668
|
-
41,
|
|
1669
|
-
43,
|
|
1670
|
-
44,
|
|
1671
|
-
46,
|
|
1672
|
-
52,
|
|
1673
|
-
54,
|
|
1674
591
|
61,
|
|
1675
|
-
67,
|
|
1676
|
-
71,
|
|
1677
|
-
75,
|
|
1678
|
-
79,
|
|
1679
592
|
89,
|
|
1680
593
|
95,
|
|
1681
|
-
99,
|
|
1682
|
-
100,
|
|
1683
|
-
103,
|
|
1684
|
-
111,
|
|
1685
594
|
112,
|
|
1686
|
-
|
|
1687
|
-
119,
|
|
1688
|
-
133,
|
|
1689
|
-
135,
|
|
1690
|
-
137,
|
|
1691
|
-
138,
|
|
1692
|
-
143,
|
|
1693
|
-
145,
|
|
1694
|
-
146,
|
|
1695
|
-
149,
|
|
1696
|
-
151
|
|
595
|
+
149
|
|
1697
596
|
],
|
|
1698
597
|
"lib/source_monitor/scraping/bulk_result_presenter.rb": [
|
|
1699
598
|
71
|
|
1700
599
|
],
|
|
1701
600
|
"lib/source_monitor/scraping/bulk_source_scraper.rb": [
|
|
1702
|
-
30,
|
|
1703
|
-
34,
|
|
1704
|
-
38,
|
|
1705
|
-
42,
|
|
1706
|
-
47,
|
|
1707
|
-
61,
|
|
1708
|
-
62,
|
|
1709
|
-
63,
|
|
1710
|
-
67,
|
|
1711
|
-
68,
|
|
1712
|
-
69,
|
|
1713
|
-
70,
|
|
1714
|
-
71,
|
|
1715
|
-
72,
|
|
1716
|
-
76,
|
|
1717
|
-
77,
|
|
1718
|
-
79,
|
|
1719
|
-
80,
|
|
1720
|
-
82,
|
|
1721
|
-
84,
|
|
1722
|
-
85,
|
|
1723
|
-
86,
|
|
1724
|
-
87,
|
|
1725
|
-
88,
|
|
1726
|
-
90,
|
|
1727
|
-
91,
|
|
1728
|
-
93,
|
|
1729
|
-
95,
|
|
1730
601
|
97,
|
|
1731
|
-
99,
|
|
1732
|
-
100,
|
|
1733
|
-
101,
|
|
1734
|
-
102,
|
|
1735
|
-
104,
|
|
1736
|
-
105,
|
|
1737
|
-
106,
|
|
1738
|
-
110,
|
|
1739
|
-
111,
|
|
1740
|
-
113,
|
|
1741
|
-
131,
|
|
1742
|
-
133,
|
|
1743
|
-
135,
|
|
1744
|
-
137,
|
|
1745
602
|
139,
|
|
1746
|
-
142,
|
|
1747
|
-
143,
|
|
1748
|
-
147,
|
|
1749
|
-
151,
|
|
1750
|
-
152,
|
|
1751
|
-
153,
|
|
1752
|
-
166,
|
|
1753
|
-
170,
|
|
1754
|
-
171,
|
|
1755
|
-
173,
|
|
1756
|
-
174,
|
|
1757
|
-
175,
|
|
1758
|
-
179,
|
|
1759
|
-
180,
|
|
1760
|
-
181,
|
|
1761
|
-
182,
|
|
1762
|
-
183,
|
|
1763
603
|
184,
|
|
1764
|
-
|
|
1765
|
-
191,
|
|
1766
|
-
205,
|
|
1767
|
-
219
|
|
604
|
+
205
|
|
1768
605
|
],
|
|
1769
606
|
"lib/source_monitor/scraping/enqueuer.rb": [
|
|
1770
|
-
|
|
1771
|
-
14,
|
|
1772
|
-
18,
|
|
1773
|
-
25,
|
|
1774
|
-
29,
|
|
1775
|
-
30,
|
|
1776
|
-
31,
|
|
1777
|
-
32,
|
|
1778
|
-
36,
|
|
1779
|
-
37,
|
|
1780
|
-
38,
|
|
1781
|
-
39,
|
|
1782
|
-
40,
|
|
1783
|
-
41,
|
|
1784
|
-
44,
|
|
1785
|
-
45,
|
|
1786
|
-
46,
|
|
1787
|
-
48,
|
|
1788
|
-
49,
|
|
1789
|
-
51,
|
|
1790
|
-
52,
|
|
1791
|
-
53,
|
|
1792
|
-
54,
|
|
1793
|
-
57,
|
|
1794
|
-
58,
|
|
1795
|
-
59,
|
|
1796
|
-
60,
|
|
1797
|
-
61,
|
|
1798
|
-
64,
|
|
1799
|
-
67,
|
|
1800
|
-
68,
|
|
1801
|
-
69,
|
|
1802
|
-
72,
|
|
1803
|
-
73,
|
|
1804
|
-
74,
|
|
1805
|
-
75,
|
|
1806
|
-
78,
|
|
1807
|
-
79,
|
|
1808
|
-
80,
|
|
1809
|
-
86,
|
|
1810
|
-
90,
|
|
1811
|
-
91,
|
|
1812
|
-
95,
|
|
1813
|
-
98,
|
|
1814
|
-
103,
|
|
1815
|
-
105,
|
|
1816
|
-
109,
|
|
1817
|
-
110,
|
|
1818
|
-
112,
|
|
1819
|
-
113,
|
|
1820
|
-
117,
|
|
1821
|
-
119,
|
|
1822
|
-
120,
|
|
1823
|
-
121
|
|
607
|
+
105
|
|
1824
608
|
],
|
|
1825
609
|
"lib/source_monitor/scraping/item_scraper.rb": [
|
|
1826
|
-
17,
|
|
1827
|
-
21,
|
|
1828
|
-
28,
|
|
1829
|
-
29,
|
|
1830
|
-
30,
|
|
1831
|
-
31,
|
|
1832
|
-
32,
|
|
1833
|
-
33,
|
|
1834
|
-
34,
|
|
1835
|
-
38,
|
|
1836
|
-
39,
|
|
1837
|
-
40,
|
|
1838
|
-
41,
|
|
1839
|
-
42,
|
|
1840
|
-
44,
|
|
1841
|
-
45,
|
|
1842
610
|
47,
|
|
1843
611
|
48,
|
|
1844
612
|
49,
|
|
1845
613
|
51,
|
|
1846
614
|
52,
|
|
1847
615
|
53,
|
|
1848
|
-
59,
|
|
1849
|
-
65,
|
|
1850
|
-
66,
|
|
1851
|
-
70,
|
|
1852
|
-
73,
|
|
1853
|
-
78,
|
|
1854
616
|
80
|
|
1855
617
|
],
|
|
1856
|
-
"lib/source_monitor/scraping/item_scraper/adapter_resolver.rb": [
|
|
1857
|
-
11,
|
|
1858
|
-
12,
|
|
1859
|
-
16,
|
|
1860
|
-
17,
|
|
1861
|
-
19,
|
|
1862
|
-
20,
|
|
1863
|
-
22,
|
|
1864
|
-
23,
|
|
1865
|
-
25,
|
|
1866
|
-
27,
|
|
1867
|
-
35,
|
|
1868
|
-
39
|
|
1869
|
-
],
|
|
1870
618
|
"lib/source_monitor/scraping/item_scraper/persistence.rb": [
|
|
1871
|
-
13,
|
|
1872
|
-
14,
|
|
1873
|
-
15,
|
|
1874
|
-
19,
|
|
1875
|
-
20,
|
|
1876
|
-
21,
|
|
1877
|
-
22,
|
|
1878
|
-
23,
|
|
1879
|
-
24,
|
|
1880
|
-
25,
|
|
1881
|
-
27,
|
|
1882
|
-
28,
|
|
1883
|
-
29,
|
|
1884
|
-
30,
|
|
1885
|
-
43,
|
|
1886
|
-
52,
|
|
1887
|
-
54,
|
|
1888
|
-
55,
|
|
1889
|
-
56,
|
|
1890
|
-
57,
|
|
1891
|
-
59,
|
|
1892
|
-
60,
|
|
1893
|
-
61,
|
|
1894
|
-
62,
|
|
1895
|
-
75,
|
|
1896
|
-
90,
|
|
1897
|
-
94,
|
|
1898
|
-
95,
|
|
1899
|
-
96,
|
|
1900
|
-
99,
|
|
1901
|
-
103,
|
|
1902
|
-
120,
|
|
1903
|
-
121,
|
|
1904
|
-
123,
|
|
1905
|
-
127,
|
|
1906
|
-
129,
|
|
1907
|
-
130,
|
|
1908
619
|
132,
|
|
1909
620
|
137,
|
|
1910
|
-
144,
|
|
1911
|
-
151,
|
|
1912
|
-
153,
|
|
1913
621
|
154,
|
|
1914
622
|
155,
|
|
1915
623
|
156,
|
|
1916
|
-
160,
|
|
1917
624
|
161,
|
|
1918
|
-
164,
|
|
1919
|
-
168,
|
|
1920
|
-
170,
|
|
1921
|
-
174,
|
|
1922
|
-
176,
|
|
1923
|
-
178,
|
|
1924
|
-
179,
|
|
1925
625
|
181,
|
|
1926
626
|
183
|
|
1927
627
|
],
|
|
1928
|
-
"lib/source_monitor/scraping/
|
|
1929
|
-
|
|
1930
|
-
|
|
628
|
+
"lib/source_monitor/scraping/state.rb": [
|
|
629
|
+
69,
|
|
630
|
+
75
|
|
631
|
+
],
|
|
632
|
+
"lib/source_monitor/security/authentication.rb": [
|
|
1931
633
|
20,
|
|
1932
|
-
|
|
634
|
+
22,
|
|
1933
635
|
23,
|
|
1934
|
-
24,
|
|
1935
636
|
25,
|
|
1936
|
-
34
|
|
1937
|
-
],
|
|
1938
|
-
"lib/source_monitor/scraping/state.rb": [
|
|
1939
|
-
13,
|
|
1940
|
-
17,
|
|
1941
|
-
21,
|
|
1942
|
-
31,
|
|
1943
|
-
32,
|
|
1944
|
-
34,
|
|
1945
|
-
35,
|
|
1946
|
-
38,
|
|
1947
|
-
42,
|
|
1948
|
-
48,
|
|
1949
|
-
49,
|
|
1950
|
-
50,
|
|
1951
|
-
51,
|
|
1952
|
-
54,
|
|
1953
|
-
58,
|
|
1954
|
-
60,
|
|
1955
|
-
61,
|
|
1956
|
-
62,
|
|
1957
|
-
63,
|
|
1958
|
-
66,
|
|
1959
|
-
69,
|
|
1960
|
-
73,
|
|
1961
|
-
75
|
|
1962
|
-
],
|
|
1963
|
-
"lib/source_monitor/security/authentication.rb": [
|
|
1964
|
-
15,
|
|
1965
|
-
16,
|
|
1966
|
-
20,
|
|
1967
|
-
22,
|
|
1968
|
-
23,
|
|
1969
|
-
25,
|
|
1970
|
-
30,
|
|
1971
|
-
31,
|
|
1972
637
|
35,
|
|
1973
638
|
39,
|
|
1974
|
-
45,
|
|
1975
|
-
49,
|
|
1976
|
-
50,
|
|
1977
|
-
52,
|
|
1978
|
-
56,
|
|
1979
|
-
57,
|
|
1980
|
-
58,
|
|
1981
|
-
60,
|
|
1982
|
-
61,
|
|
1983
|
-
62,
|
|
1984
639
|
63,
|
|
1985
640
|
68,
|
|
1986
641
|
69,
|
|
@@ -1991,334 +646,34 @@
|
|
|
1991
646
|
75
|
|
1992
647
|
],
|
|
1993
648
|
"lib/source_monitor/security/parameter_sanitizer.rb": [
|
|
1994
|
-
13
|
|
1995
|
-
16,
|
|
1996
|
-
19,
|
|
1997
|
-
23
|
|
1998
|
-
],
|
|
1999
|
-
"lib/source_monitor/setup/bundle_installer.rb": [
|
|
2000
|
-
5,
|
|
2001
|
-
9
|
|
2002
|
-
],
|
|
2003
|
-
"lib/source_monitor/setup/cli.rb": [
|
|
2004
|
-
11,
|
|
2005
|
-
14,
|
|
2006
|
-
15,
|
|
2007
|
-
20,
|
|
2008
|
-
21,
|
|
2009
|
-
27,
|
|
2010
|
-
28,
|
|
2011
|
-
29,
|
|
2012
|
-
33,
|
|
2013
|
-
37,
|
|
2014
|
-
41,
|
|
2015
|
-
43,
|
|
2016
|
-
47
|
|
649
|
+
13
|
|
2017
650
|
],
|
|
2018
651
|
"lib/source_monitor/setup/dependency_checker.rb": [
|
|
2019
|
-
23,
|
|
2020
|
-
27,
|
|
2021
|
-
31,
|
|
2022
|
-
35,
|
|
2023
|
-
43,
|
|
2024
|
-
47,
|
|
2025
|
-
48,
|
|
2026
|
-
50,
|
|
2027
|
-
54,
|
|
2028
|
-
58,
|
|
2029
|
-
62,
|
|
2030
|
-
66,
|
|
2031
|
-
70,
|
|
2032
|
-
75,
|
|
2033
|
-
79,
|
|
2034
|
-
85,
|
|
2035
|
-
86,
|
|
2036
|
-
87,
|
|
2037
|
-
89,
|
|
2038
|
-
100,
|
|
2039
|
-
102,
|
|
2040
|
-
106,
|
|
2041
|
-
107,
|
|
2042
|
-
109,
|
|
2043
|
-
113,
|
|
2044
|
-
114,
|
|
2045
|
-
116,
|
|
2046
|
-
121,
|
|
2047
|
-
126,
|
|
2048
|
-
130,
|
|
2049
|
-
137,
|
|
2050
|
-
144,
|
|
2051
|
-
151,
|
|
2052
|
-
158
|
|
2053
|
-
],
|
|
2054
|
-
"lib/source_monitor/setup/detectors.rb": [
|
|
2055
|
-
7,
|
|
2056
|
-
11,
|
|
2057
|
-
13,
|
|
2058
|
-
17,
|
|
2059
|
-
18,
|
|
2060
|
-
20,
|
|
2061
|
-
22,
|
|
2062
|
-
26,
|
|
2063
|
-
27,
|
|
2064
|
-
29,
|
|
2065
|
-
31,
|
|
2066
|
-
35,
|
|
2067
|
-
36,
|
|
2068
|
-
42,
|
|
2069
|
-
44,
|
|
2070
|
-
46,
|
|
2071
|
-
50,
|
|
2072
|
-
52,
|
|
2073
|
-
55,
|
|
2074
|
-
59,
|
|
2075
|
-
61,
|
|
2076
|
-
63
|
|
2077
|
-
],
|
|
2078
|
-
"lib/source_monitor/setup/gemfile_editor.rb": [
|
|
2079
|
-
9,
|
|
2080
|
-
13,
|
|
2081
|
-
15,
|
|
2082
|
-
16,
|
|
2083
|
-
18,
|
|
2084
|
-
19,
|
|
2085
|
-
25
|
|
2086
|
-
],
|
|
2087
|
-
"lib/source_monitor/setup/initializer_patcher.rb": [
|
|
2088
|
-
9,
|
|
2089
|
-
13,
|
|
2090
|
-
15,
|
|
2091
|
-
16,
|
|
2092
|
-
17,
|
|
2093
|
-
19,
|
|
2094
|
-
20,
|
|
2095
|
-
21,
|
|
2096
|
-
25,
|
|
2097
|
-
27,
|
|
2098
|
-
28,
|
|
2099
|
-
30,
|
|
2100
|
-
31,
|
|
2101
|
-
32,
|
|
2102
|
-
34,
|
|
2103
|
-
37,
|
|
2104
|
-
38,
|
|
2105
|
-
46,
|
|
2106
652
|
50
|
|
2107
653
|
],
|
|
2108
|
-
"lib/source_monitor/setup/install_generator.rb": [
|
|
2109
|
-
5,
|
|
2110
|
-
9
|
|
2111
|
-
],
|
|
2112
|
-
"lib/source_monitor/setup/migration_installer.rb": [
|
|
2113
|
-
10,
|
|
2114
|
-
11,
|
|
2115
|
-
15,
|
|
2116
|
-
16,
|
|
2117
|
-
17,
|
|
2118
|
-
25,
|
|
2119
|
-
29,
|
|
2120
|
-
30,
|
|
2121
|
-
32,
|
|
2122
|
-
36
|
|
2123
|
-
],
|
|
2124
|
-
"lib/source_monitor/setup/node_installer.rb": [
|
|
2125
|
-
7,
|
|
2126
|
-
8,
|
|
2127
|
-
12,
|
|
2128
|
-
14,
|
|
2129
|
-
15,
|
|
2130
|
-
23
|
|
2131
|
-
],
|
|
2132
|
-
"lib/source_monitor/setup/prompter.rb": [
|
|
2133
|
-
7,
|
|
2134
|
-
8,
|
|
2135
|
-
12,
|
|
2136
|
-
14,
|
|
2137
|
-
15,
|
|
2138
|
-
16,
|
|
2139
|
-
20,
|
|
2140
|
-
22,
|
|
2141
|
-
23,
|
|
2142
|
-
24,
|
|
2143
|
-
26
|
|
2144
|
-
],
|
|
2145
|
-
"lib/source_monitor/setup/requirements.rb": [
|
|
2146
|
-
8,
|
|
2147
|
-
12,
|
|
2148
|
-
16,
|
|
2149
|
-
18,
|
|
2150
|
-
19,
|
|
2151
|
-
21,
|
|
2152
|
-
25,
|
|
2153
|
-
26,
|
|
2154
|
-
28,
|
|
2155
|
-
36,
|
|
2156
|
-
40,
|
|
2157
|
-
44,
|
|
2158
|
-
46
|
|
2159
|
-
],
|
|
2160
|
-
"lib/source_monitor/setup/shell_runner.rb": [
|
|
2161
|
-
7,
|
|
2162
|
-
8,
|
|
2163
|
-
10
|
|
2164
|
-
],
|
|
2165
|
-
"lib/source_monitor/setup/verification/action_cable_verifier.rb": [
|
|
2166
|
-
6,
|
|
2167
|
-
7,
|
|
2168
|
-
8,
|
|
2169
|
-
12,
|
|
2170
|
-
14,
|
|
2171
|
-
16,
|
|
2172
|
-
18,
|
|
2173
|
-
21,
|
|
2174
|
-
29,
|
|
2175
|
-
33,
|
|
2176
|
-
35,
|
|
2177
|
-
39,
|
|
2178
|
-
41,
|
|
2179
|
-
45,
|
|
2180
|
-
46,
|
|
2181
|
-
49,
|
|
2182
|
-
50,
|
|
2183
|
-
53,
|
|
2184
|
-
57,
|
|
2185
|
-
58,
|
|
2186
|
-
59,
|
|
2187
|
-
62,
|
|
2188
|
-
66,
|
|
2189
|
-
70,
|
|
2190
|
-
74
|
|
2191
|
-
],
|
|
2192
|
-
"lib/source_monitor/setup/verification/printer.rb": [
|
|
2193
|
-
6,
|
|
2194
|
-
10,
|
|
2195
|
-
11,
|
|
2196
|
-
12,
|
|
2197
|
-
13,
|
|
2198
|
-
15
|
|
2199
|
-
],
|
|
2200
|
-
"lib/source_monitor/setup/verification/result.rb": [
|
|
2201
|
-
15,
|
|
2202
|
-
19,
|
|
2203
|
-
23,
|
|
2204
|
-
28,
|
|
2205
|
-
41,
|
|
2206
|
-
45,
|
|
2207
|
-
46,
|
|
2208
|
-
48,
|
|
2209
|
-
52,
|
|
2210
|
-
57,
|
|
2211
|
-
63
|
|
2212
|
-
],
|
|
2213
|
-
"lib/source_monitor/setup/verification/runner.rb": [
|
|
2214
|
-
6,
|
|
2215
|
-
10,
|
|
2216
|
-
11,
|
|
2217
|
-
19
|
|
2218
|
-
],
|
|
2219
|
-
"lib/source_monitor/setup/verification/solid_queue_verifier.rb": [
|
|
2220
|
-
8,
|
|
2221
|
-
9,
|
|
2222
|
-
10,
|
|
2223
|
-
14,
|
|
2224
|
-
15,
|
|
2225
|
-
17,
|
|
2226
|
-
19,
|
|
2227
|
-
20,
|
|
2228
|
-
22,
|
|
2229
|
-
25,
|
|
2230
|
-
33,
|
|
2231
|
-
37,
|
|
2232
|
-
39,
|
|
2233
|
-
43,
|
|
2234
|
-
45,
|
|
2235
|
-
49,
|
|
2236
|
-
50,
|
|
2237
|
-
54,
|
|
2238
|
-
58,
|
|
2239
|
-
62,
|
|
2240
|
-
66,
|
|
2241
|
-
70
|
|
2242
|
-
],
|
|
2243
|
-
"lib/source_monitor/setup/verification/telemetry_logger.rb": [
|
|
2244
|
-
9,
|
|
2245
|
-
13,
|
|
2246
|
-
14,
|
|
2247
|
-
15,
|
|
2248
|
-
24,
|
|
2249
|
-
25,
|
|
2250
|
-
27
|
|
2251
|
-
],
|
|
2252
|
-
"lib/source_monitor/setup/workflow.rb": [
|
|
2253
|
-
12,
|
|
2254
|
-
13,
|
|
2255
|
-
19,
|
|
2256
|
-
20,
|
|
2257
|
-
22,
|
|
2258
|
-
38,
|
|
2259
|
-
39,
|
|
2260
|
-
40,
|
|
2261
|
-
41,
|
|
2262
|
-
42,
|
|
2263
|
-
43,
|
|
2264
|
-
44,
|
|
2265
|
-
45,
|
|
2266
|
-
46,
|
|
2267
|
-
47,
|
|
2268
|
-
51,
|
|
2269
|
-
52,
|
|
2270
|
-
54,
|
|
2271
|
-
56,
|
|
2272
|
-
57,
|
|
2273
|
-
58,
|
|
2274
|
-
59,
|
|
2275
|
-
60,
|
|
2276
|
-
61,
|
|
2277
|
-
63,
|
|
2278
|
-
64,
|
|
2279
|
-
67,
|
|
2280
|
-
84,
|
|
2281
|
-
88,
|
|
2282
|
-
92,
|
|
2283
|
-
93,
|
|
2284
|
-
95
|
|
2285
|
-
],
|
|
2286
|
-
"lib/source_monitor/turbo_streams/stream_responder.rb": [
|
|
2287
|
-
35,
|
|
2288
|
-
36,
|
|
2289
|
-
40,
|
|
2290
|
-
57,
|
|
2291
|
-
63,
|
|
2292
|
-
70,
|
|
2293
|
-
71,
|
|
2294
|
-
72,
|
|
2295
|
-
86
|
|
2296
|
-
],
|
|
2297
654
|
"lib/source_monitor/version.rb": [
|
|
2298
|
-
|
|
2299
|
-
2,
|
|
2300
|
-
3
|
|
655
|
+
4
|
|
2301
656
|
],
|
|
2302
657
|
"lib/tasks/source_monitor_assets.rake": [
|
|
2303
|
-
|
|
2304
|
-
|
|
658
|
+
9,
|
|
659
|
+
14
|
|
2305
660
|
],
|
|
2306
661
|
"lib/tasks/source_monitor_setup.rake": [
|
|
2307
|
-
|
|
662
|
+
33
|
|
2308
663
|
],
|
|
2309
664
|
"lib/tasks/source_monitor_tasks.rake": [
|
|
2310
|
-
5,
|
|
2311
665
|
7,
|
|
2312
|
-
8,
|
|
2313
666
|
9,
|
|
2314
667
|
10,
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
668
|
+
11,
|
|
669
|
+
12,
|
|
670
|
+
15,
|
|
671
|
+
16,
|
|
672
|
+
19,
|
|
2320
673
|
24,
|
|
2321
|
-
|
|
674
|
+
25,
|
|
675
|
+
26,
|
|
676
|
+
28
|
|
2322
677
|
],
|
|
2323
678
|
"lib/tasks/test_smoke.rake": [
|
|
2324
679
|
6,
|
|
@@ -2326,4 +681,4 @@
|
|
|
2326
681
|
8,
|
|
2327
682
|
10
|
|
2328
683
|
]
|
|
2329
|
-
}
|
|
684
|
+
}
|