gitingest 0.4.0 → 0.6.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/CHANGELOG.md +24 -0
- data/README.md +17 -2
- data/bin/gitingest +6 -1
- data/index.html +948 -279
- data/lib/gitingest/generator.rb +79 -2
- data/lib/gitingest/version.rb +1 -1
- metadata +2 -2
data/index.html
CHANGED
@@ -1,363 +1,1032 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<html lang="en">
|
3
|
+
|
3
4
|
<head>
|
4
|
-
<meta charset="UTF-8"
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"
|
6
|
-
<title>Gitingest - GitHub Repository
|
7
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/
|
5
|
+
<meta charset="UTF-8" />
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7
|
+
<title>Gitingest - Streamlined GitHub Repository Extraction</title>
|
8
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
|
9
|
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet" />
|
8
10
|
<style>
|
9
11
|
:root {
|
10
|
-
--
|
11
|
-
--
|
12
|
-
--
|
13
|
-
--
|
14
|
-
--
|
15
|
-
--
|
16
|
-
--
|
17
|
-
--
|
18
|
-
--
|
12
|
+
--primary: #10B981;
|
13
|
+
--primary-dark: #059669;
|
14
|
+
--secondary: #8B5CF6;
|
15
|
+
--dark: #111827;
|
16
|
+
--darker: #0F172A;
|
17
|
+
--light: #F9FAFB;
|
18
|
+
--gray: #6B7280;
|
19
|
+
--light-gray: #E5E7EB;
|
20
|
+
--terminal-bg: rgba(15, 23, 42, 0.95);
|
21
|
+
--terminal-text: #A5F3FC;
|
22
|
+
--terminal-prompt: #10B981;
|
23
|
+
--terminal-cursor: #F9FAFB;
|
24
|
+
--cmd-output: #94A3B8;
|
25
|
+
}
|
26
|
+
|
27
|
+
* {
|
28
|
+
margin: 0;
|
29
|
+
padding: 0;
|
30
|
+
box-sizing: border-box;
|
31
|
+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
19
32
|
}
|
20
33
|
|
21
34
|
body {
|
22
|
-
|
35
|
+
background-color: var(--dark);
|
36
|
+
color: var(--light);
|
23
37
|
line-height: 1.6;
|
24
|
-
|
25
|
-
|
26
|
-
max-width: 900px;
|
27
|
-
margin: 0 auto;
|
28
|
-
padding: 20px;
|
38
|
+
overflow-x: hidden;
|
39
|
+
position: relative;
|
29
40
|
}
|
30
41
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
42
|
+
/* Grainy background effect */
|
43
|
+
.grain {
|
44
|
+
position: fixed;
|
45
|
+
top: 0;
|
46
|
+
left: 0;
|
47
|
+
height: 100%;
|
48
|
+
width: 100%;
|
49
|
+
pointer-events: none;
|
50
|
+
opacity: 0.03;
|
51
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
|
52
|
+
z-index: 100;
|
37
53
|
}
|
38
54
|
|
39
|
-
|
55
|
+
header {
|
56
|
+
position: fixed;
|
57
|
+
top: 0;
|
58
|
+
width: 100%;
|
59
|
+
padding: 1.5rem 0;
|
60
|
+
background-color: rgba(17, 24, 39, 0.8);
|
61
|
+
backdrop-filter: blur(10px);
|
62
|
+
z-index: 50;
|
63
|
+
transition: all 0.3s ease;
|
64
|
+
}
|
65
|
+
|
66
|
+
.header-container {
|
67
|
+
max-width: 1200px;
|
68
|
+
margin: 0 auto;
|
40
69
|
display: flex;
|
70
|
+
justify-content: space-between;
|
41
71
|
align-items: center;
|
42
|
-
margin-bottom: 30px;
|
43
72
|
}
|
44
73
|
|
45
74
|
.logo {
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
75
|
+
display: flex;
|
76
|
+
align-items: center;
|
77
|
+
gap: 1rem;
|
78
|
+
}
|
79
|
+
|
80
|
+
.logo-icon {
|
81
|
+
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
82
|
+
width: 50px;
|
83
|
+
height: 50px;
|
84
|
+
border-radius: 8px;
|
51
85
|
display: flex;
|
52
86
|
align-items: center;
|
53
87
|
justify-content: center;
|
54
|
-
color: white;
|
55
|
-
font-size: 24px;
|
56
88
|
font-weight: bold;
|
89
|
+
font-size: 1.5rem;
|
90
|
+
box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
|
57
91
|
}
|
58
92
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
padding-bottom: 10px;
|
63
|
-
margin-top: 24px;
|
64
|
-
margin-bottom: 16px;
|
93
|
+
.logo-text {
|
94
|
+
font-size: 1.5rem;
|
95
|
+
font-weight: 700;
|
65
96
|
}
|
66
97
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
98
|
+
.version-tag {
|
99
|
+
background: rgba(16, 185, 129, 0.15);
|
100
|
+
color: var(--primary);
|
101
|
+
padding: 0.2rem 0.6rem;
|
102
|
+
border-radius: 20px;
|
103
|
+
font-size: 0.75rem;
|
104
|
+
font-weight: 600;
|
105
|
+
margin-left: 0.5rem;
|
72
106
|
}
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
107
|
+
|
108
|
+
nav ul {
|
109
|
+
display: flex;
|
110
|
+
list-style: none;
|
111
|
+
gap: 2rem;
|
77
112
|
}
|
78
113
|
|
79
|
-
a {
|
80
|
-
color: var(--
|
114
|
+
nav a {
|
115
|
+
color: var(--light);
|
81
116
|
text-decoration: none;
|
117
|
+
font-weight: 500;
|
118
|
+
transition: color 0.2s ease;
|
119
|
+
position: relative;
|
82
120
|
}
|
83
121
|
|
84
|
-
a:hover {
|
85
|
-
|
122
|
+
nav a:hover {
|
123
|
+
color: var(--primary);
|
86
124
|
}
|
87
125
|
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
126
|
+
nav a::after {
|
127
|
+
content: '';
|
128
|
+
position: absolute;
|
129
|
+
width: 0;
|
130
|
+
height: 2px;
|
131
|
+
bottom: -5px;
|
132
|
+
left: 0;
|
133
|
+
background-color: var(--primary);
|
134
|
+
transition: width 0.3s ease;
|
94
135
|
}
|
95
136
|
|
96
|
-
|
97
|
-
|
98
|
-
border-radius: 6px;
|
99
|
-
padding: 16px;
|
100
|
-
overflow: auto;
|
101
|
-
border: 1px solid var(--border-color);
|
102
|
-
margin: 16px 0;
|
137
|
+
nav a:hover::after {
|
138
|
+
width: 100%;
|
103
139
|
}
|
104
140
|
|
105
|
-
|
106
|
-
background-color:
|
107
|
-
|
108
|
-
border
|
109
|
-
|
141
|
+
.github-btn {
|
142
|
+
background-color: var(--darker);
|
143
|
+
color: var(--light);
|
144
|
+
border: 1px solid rgba(255, 255, 255, 0.1);
|
145
|
+
padding: 0.6rem 1.2rem;
|
146
|
+
border-radius: 8px;
|
147
|
+
font-weight: 500;
|
148
|
+
display: flex;
|
149
|
+
align-items: center;
|
150
|
+
gap: 0.5rem;
|
151
|
+
transition: all 0.2s ease;
|
152
|
+
text-decoration: none;
|
110
153
|
}
|
111
154
|
|
112
|
-
|
113
|
-
|
155
|
+
.github-btn:hover {
|
156
|
+
background-color: rgba(255, 255, 255, 0.05);
|
157
|
+
transform: translateY(-2px);
|
114
158
|
}
|
115
159
|
|
116
|
-
.
|
117
|
-
|
118
|
-
background
|
119
|
-
|
120
|
-
|
121
|
-
border-radius: 6px;
|
122
|
-
font-weight: 600;
|
123
|
-
margin: 8px 0;
|
160
|
+
.hero {
|
161
|
+
padding: 12rem 2rem 8rem;
|
162
|
+
background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15), rgba(17, 24, 39, 0) 50%);
|
163
|
+
position: relative;
|
164
|
+
overflow: hidden;
|
124
165
|
}
|
125
166
|
|
126
|
-
.
|
127
|
-
|
167
|
+
.blobs {
|
168
|
+
position: absolute;
|
169
|
+
top: 0;
|
170
|
+
left: 0;
|
171
|
+
width: 100%;
|
172
|
+
height: 100%;
|
173
|
+
overflow: hidden;
|
174
|
+
z-index: -1;
|
175
|
+
}
|
176
|
+
|
177
|
+
.blob {
|
178
|
+
position: absolute;
|
179
|
+
border-radius: 50%;
|
180
|
+
filter: blur(80px);
|
181
|
+
}
|
182
|
+
|
183
|
+
.blob-1 {
|
184
|
+
top: -200px;
|
185
|
+
right: -200px;
|
186
|
+
width: 600px;
|
187
|
+
height: 600px;
|
188
|
+
background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
|
189
|
+
}
|
190
|
+
|
191
|
+
.blob-2 {
|
192
|
+
bottom: -300px;
|
193
|
+
left: -200px;
|
194
|
+
width: 500px;
|
195
|
+
height: 500px;
|
196
|
+
background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
|
197
|
+
}
|
198
|
+
|
199
|
+
.container {
|
200
|
+
max-width: 1200px;
|
201
|
+
margin: 0 auto;
|
202
|
+
position: relative;
|
203
|
+
z-index: 1;
|
204
|
+
}
|
205
|
+
|
206
|
+
.hero-content {
|
207
|
+
max-width: 700px;
|
208
|
+
margin-bottom: 5rem;
|
209
|
+
}
|
210
|
+
|
211
|
+
.hero h1 {
|
212
|
+
font-size: 3.5rem;
|
213
|
+
font-weight: 800;
|
214
|
+
line-height: 1.2;
|
215
|
+
margin-bottom: 1.5rem;
|
216
|
+
background: linear-gradient(90deg, #fff, #94A3B8);
|
217
|
+
-webkit-background-clip: text;
|
218
|
+
-webkit-text-fill-color: transparent;
|
219
|
+
}
|
220
|
+
|
221
|
+
.headline {
|
222
|
+
color: var(--gray);
|
223
|
+
font-size: 1.25rem;
|
224
|
+
margin-bottom: 2rem;
|
225
|
+
}
|
226
|
+
|
227
|
+
.highlight {
|
228
|
+
color: var(--primary);
|
229
|
+
font-weight: 500;
|
230
|
+
position: relative;
|
231
|
+
}
|
232
|
+
|
233
|
+
.highlight::before {
|
234
|
+
content: '';
|
235
|
+
position: absolute;
|
236
|
+
bottom: 0;
|
237
|
+
left: 0;
|
238
|
+
width: 100%;
|
239
|
+
height: 5px;
|
240
|
+
background-color: rgba(16, 185, 129, 0.2);
|
241
|
+
transform: translateY(2px);
|
242
|
+
}
|
243
|
+
|
244
|
+
.cta-buttons {
|
245
|
+
display: flex;
|
246
|
+
gap: 1rem;
|
247
|
+
margin-bottom: 3rem;
|
248
|
+
}
|
249
|
+
|
250
|
+
.btn {
|
251
|
+
padding: 0.75rem 1.5rem;
|
252
|
+
border-radius: 8px;
|
253
|
+
font-weight: 600;
|
254
|
+
font-size: 1rem;
|
255
|
+
transition: all 0.2s ease;
|
128
256
|
text-decoration: none;
|
257
|
+
display: inline-flex;
|
258
|
+
align-items: center;
|
259
|
+
gap: 0.5rem;
|
129
260
|
}
|
130
261
|
|
131
|
-
.
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
262
|
+
.btn-primary {
|
263
|
+
background-color: var(--primary);
|
264
|
+
color: var(--light);
|
265
|
+
box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
|
266
|
+
}
|
267
|
+
|
268
|
+
.btn-primary:hover {
|
269
|
+
background-color: var(--primary-dark);
|
270
|
+
transform: translateY(-2px);
|
271
|
+
box-shadow: 0 15px 20px -3px rgba(16, 185, 129, 0.3);
|
272
|
+
}
|
273
|
+
|
274
|
+
.btn-outline {
|
275
|
+
background-color: transparent;
|
276
|
+
color: var(--light);
|
277
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
278
|
+
}
|
279
|
+
|
280
|
+
.btn-outline:hover {
|
281
|
+
background-color: rgba(255, 255, 255, 0.05);
|
282
|
+
transform: translateY(-2px);
|
283
|
+
}
|
284
|
+
|
285
|
+
/* Terminal simulation styles */
|
286
|
+
.terminal {
|
287
|
+
background-color: var(--terminal-bg);
|
288
|
+
border-radius: 12px;
|
289
|
+
overflow: hidden;
|
290
|
+
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
|
291
|
+
margin-top: 2rem;
|
292
|
+
}
|
293
|
+
|
294
|
+
.terminal-header {
|
295
|
+
background-color: rgba(15, 23, 42, 0.6);
|
296
|
+
padding: 1rem;
|
297
|
+
display: flex;
|
298
|
+
align-items: center;
|
299
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
300
|
+
}
|
301
|
+
|
302
|
+
.terminal-controls {
|
303
|
+
display: flex;
|
304
|
+
gap: 0.5rem;
|
305
|
+
margin-right: 1rem;
|
306
|
+
}
|
307
|
+
|
308
|
+
.terminal-control {
|
309
|
+
width: 12px;
|
310
|
+
height: 12px;
|
311
|
+
border-radius: 50%;
|
312
|
+
}
|
313
|
+
|
314
|
+
.terminal-close {
|
315
|
+
background-color: #FF5F56;
|
316
|
+
}
|
317
|
+
|
318
|
+
.terminal-minimize {
|
319
|
+
background-color: #FFBD2E;
|
320
|
+
}
|
321
|
+
|
322
|
+
.terminal-maximize {
|
323
|
+
background-color: #27C93F;
|
324
|
+
}
|
325
|
+
|
326
|
+
.terminal-title {
|
327
|
+
font-size: 0.875rem;
|
328
|
+
font-weight: 500;
|
329
|
+
color: var(--gray);
|
330
|
+
flex: 1;
|
331
|
+
text-align: center;
|
332
|
+
}
|
333
|
+
|
334
|
+
.terminal-body {
|
335
|
+
padding: 1.5rem;
|
336
|
+
font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', monospace;
|
337
|
+
font-size: 0.875rem;
|
338
|
+
line-height: 1.7;
|
339
|
+
overflow-x: auto;
|
340
|
+
}
|
341
|
+
|
342
|
+
.terminal-line {
|
343
|
+
margin-bottom: 0.75rem;
|
344
|
+
display: flex;
|
345
|
+
}
|
346
|
+
|
347
|
+
.terminal-prompt {
|
348
|
+
color: var(--terminal-prompt);
|
349
|
+
margin-right: 0.75rem;
|
138
350
|
font-weight: bold;
|
139
|
-
margin-left: 10px;
|
140
351
|
}
|
141
352
|
|
142
|
-
|
143
|
-
|
353
|
+
.terminal-command {
|
354
|
+
color: var(--terminal-text);
|
355
|
+
}
|
356
|
+
|
357
|
+
.terminal-output {
|
358
|
+
color: var(--cmd-output);
|
359
|
+
margin-left: 1.65rem;
|
360
|
+
margin-bottom: 1.5rem;
|
361
|
+
opacity: 0.8;
|
362
|
+
}
|
363
|
+
|
364
|
+
.typing::after {
|
365
|
+
content: '|';
|
366
|
+
color: var(--terminal-cursor);
|
367
|
+
animation: blink 1s step-end infinite;
|
368
|
+
}
|
369
|
+
|
370
|
+
@keyframes blink {
|
371
|
+
|
372
|
+
0%,
|
373
|
+
100% {
|
374
|
+
opacity: 1;
|
375
|
+
}
|
376
|
+
|
377
|
+
50% {
|
378
|
+
opacity: 0;
|
379
|
+
}
|
380
|
+
}
|
381
|
+
|
382
|
+
/* Features Section */
|
383
|
+
.features {
|
384
|
+
padding: 6rem 2rem;
|
385
|
+
background-color: var(--darker);
|
386
|
+
}
|
387
|
+
|
388
|
+
.section-header {
|
389
|
+
text-align: center;
|
390
|
+
margin-bottom: 4rem;
|
391
|
+
}
|
392
|
+
|
393
|
+
.section-pretitle {
|
394
|
+
color: var(--primary);
|
395
|
+
font-weight: 600;
|
396
|
+
text-transform: uppercase;
|
397
|
+
letter-spacing: 1.5px;
|
398
|
+
margin-bottom: 1rem;
|
399
|
+
font-size: 0.875rem;
|
400
|
+
}
|
401
|
+
|
402
|
+
.features h2 {
|
403
|
+
font-size: 2.5rem;
|
404
|
+
font-weight: 700;
|
405
|
+
margin-bottom: 1.5rem;
|
406
|
+
}
|
407
|
+
|
408
|
+
.section-subtitle {
|
409
|
+
color: var(--gray);
|
410
|
+
font-size: 1.125rem;
|
411
|
+
max-width: 700px;
|
412
|
+
margin: 0 auto 2rem;
|
413
|
+
}
|
414
|
+
|
415
|
+
.feature-grid {
|
416
|
+
display: grid;
|
417
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
418
|
+
gap: 2rem;
|
419
|
+
}
|
420
|
+
|
421
|
+
.feature-card {
|
422
|
+
background-color: rgba(255, 255, 255, 0.03);
|
423
|
+
border: 1px solid rgba(255, 255, 255, 0.07);
|
424
|
+
border-radius: 12px;
|
425
|
+
padding: 2rem;
|
426
|
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
427
|
+
}
|
428
|
+
|
429
|
+
.feature-card:hover {
|
430
|
+
transform: translateY(-5px);
|
431
|
+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
432
|
+
border-color: rgba(16, 185, 129, 0.2);
|
433
|
+
}
|
434
|
+
|
435
|
+
.feature-icon {
|
436
|
+
width: 56px;
|
437
|
+
height: 56px;
|
438
|
+
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
|
439
|
+
border-radius: 12px;
|
440
|
+
display: flex;
|
441
|
+
align-items: center;
|
442
|
+
justify-content: center;
|
443
|
+
margin-bottom: 1.5rem;
|
444
|
+
color: var(--primary);
|
445
|
+
font-size: 1.5rem;
|
446
|
+
}
|
447
|
+
|
448
|
+
.feature-card h3 {
|
449
|
+
font-size: 1.25rem;
|
450
|
+
font-weight: 600;
|
451
|
+
margin-bottom: 1rem;
|
452
|
+
}
|
453
|
+
|
454
|
+
.feature-desc {
|
455
|
+
color: var(--gray);
|
456
|
+
font-size: 0.95rem;
|
457
|
+
}
|
458
|
+
|
459
|
+
/* Usage Section */
|
460
|
+
.usage {
|
461
|
+
padding: 6rem 2rem;
|
462
|
+
background-color: var(--dark);
|
463
|
+
position: relative;
|
464
|
+
overflow: hidden;
|
465
|
+
}
|
466
|
+
|
467
|
+
.usage h2 {
|
144
468
|
text-align: center;
|
145
|
-
|
146
|
-
|
147
|
-
border-top: 1px solid var(--border-color);
|
148
|
-
padding-top: 20px;
|
469
|
+
font-size: 2.5rem;
|
470
|
+
margin-bottom: 2rem;
|
149
471
|
}
|
150
472
|
|
473
|
+
.code-block {
|
474
|
+
background-color: rgba(255, 255, 255, 0.03);
|
475
|
+
border: 1px solid #fff;
|
476
|
+
margin-top: 1rem;
|
477
|
+
padding: 1rem;
|
478
|
+
border-radius: 8px;
|
479
|
+
overflow-x: auto;
|
480
|
+
font-family: 'SF Mono', monospace;
|
481
|
+
font-size: 0.875rem;
|
482
|
+
line-height: 1.7;
|
483
|
+
}
|
484
|
+
|
485
|
+
/* Changelog Section */
|
151
486
|
.changelog {
|
152
|
-
|
487
|
+
padding: 6rem 2rem;
|
488
|
+
background-color: var(--darker);
|
489
|
+
}
|
490
|
+
|
491
|
+
.timeline {
|
492
|
+
max-width: 800px;
|
493
|
+
margin: 0 auto;
|
494
|
+
position: relative;
|
153
495
|
}
|
154
496
|
|
155
|
-
.
|
156
|
-
|
497
|
+
.timeline::before {
|
498
|
+
content: '';
|
499
|
+
position: absolute;
|
500
|
+
left: 32px;
|
501
|
+
top: 0;
|
502
|
+
height: 100%;
|
503
|
+
width: 2px;
|
504
|
+
background: linear-gradient(to bottom, var(--primary), var(--secondary));
|
157
505
|
}
|
158
506
|
|
159
|
-
.
|
507
|
+
.timeline-item {
|
508
|
+
margin-bottom: 3rem;
|
509
|
+
padding-left: 80px;
|
510
|
+
position: relative;
|
511
|
+
}
|
512
|
+
|
513
|
+
.timeline-date {
|
514
|
+
position: absolute;
|
515
|
+
left: 0;
|
516
|
+
top: 0;
|
517
|
+
width: 64px;
|
518
|
+
height: 64px;
|
519
|
+
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
520
|
+
border-radius: 50%;
|
521
|
+
display: flex;
|
522
|
+
align-items: center;
|
523
|
+
justify-content: center;
|
524
|
+
flex-direction: column;
|
525
|
+
font-weight: 600;
|
526
|
+
line-height: 1.2;
|
527
|
+
box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
|
528
|
+
color: var(--light);
|
529
|
+
}
|
530
|
+
|
531
|
+
.timeline-month {
|
532
|
+
font-size: 0.75rem;
|
533
|
+
text-transform: uppercase;
|
534
|
+
}
|
535
|
+
|
536
|
+
.timeline-day {
|
537
|
+
font-size: 1.25rem;
|
538
|
+
}
|
539
|
+
|
540
|
+
.timeline-version {
|
541
|
+
font-size: 1.25rem;
|
542
|
+
font-weight: 600;
|
543
|
+
margin-bottom: 0.5rem;
|
544
|
+
}
|
545
|
+
|
546
|
+
.timeline-desc {
|
547
|
+
color: var(--gray);
|
548
|
+
font-size: 0.95rem;
|
549
|
+
margin-bottom: 1rem;
|
550
|
+
}
|
551
|
+
|
552
|
+
.timeline-list {
|
553
|
+
background-color: rgba(255, 255, 255, 0.03);
|
554
|
+
border: 1px solid rgba(255, 255, 255, 0.07);
|
555
|
+
border-radius: 8px;
|
556
|
+
padding: 1.5rem;
|
557
|
+
}
|
558
|
+
|
559
|
+
.timeline-list li {
|
560
|
+
margin-bottom: 0.75rem;
|
561
|
+
color: var(--light-gray);
|
562
|
+
position: relative;
|
563
|
+
padding-left: 1.5rem;
|
564
|
+
}
|
565
|
+
|
566
|
+
.timeline-list li::before {
|
567
|
+
content: '•';
|
568
|
+
position: absolute;
|
569
|
+
left: 0;
|
570
|
+
top: 0;
|
571
|
+
color: var(--primary);
|
160
572
|
font-weight: bold;
|
161
|
-
color: var(--header-color);
|
162
573
|
}
|
163
574
|
|
164
|
-
|
165
|
-
|
166
|
-
|
575
|
+
/* Footer */
|
576
|
+
.footer {
|
577
|
+
background-color: var(--darker);
|
578
|
+
padding: 4rem 2rem;
|
579
|
+
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
167
580
|
}
|
168
581
|
|
169
|
-
.
|
170
|
-
|
582
|
+
.footer-grid {
|
583
|
+
display: grid;
|
584
|
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
585
|
+
gap: 2rem;
|
586
|
+
max-width: 1200px;
|
587
|
+
margin: 0 auto;
|
588
|
+
}
|
589
|
+
|
590
|
+
.footer-logo {
|
591
|
+
display: flex;
|
592
|
+
align-items: center;
|
593
|
+
gap: 0.75rem;
|
594
|
+
margin-bottom: 1rem;
|
595
|
+
}
|
596
|
+
|
597
|
+
.footer-logo-icon {
|
598
|
+
width: 32px;
|
599
|
+
height: 32px;
|
600
|
+
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
601
|
+
border-radius: 6px;
|
602
|
+
display: flex;
|
603
|
+
align-items: center;
|
604
|
+
justify-content: center;
|
605
|
+
font-weight: bold;
|
606
|
+
font-size: 18px;
|
607
|
+
}
|
608
|
+
|
609
|
+
.footer-desc {
|
610
|
+
color: var(--gray);
|
611
|
+
font-size: 0.95rem;
|
612
|
+
margin-bottom: 1.5rem;
|
613
|
+
}
|
614
|
+
|
615
|
+
.social-links {
|
616
|
+
display: flex;
|
617
|
+
gap: 1rem;
|
618
|
+
}
|
619
|
+
|
620
|
+
.social-link {
|
621
|
+
width: 40px;
|
622
|
+
height: 40px;
|
623
|
+
border-radius: 50%;
|
624
|
+
background-color: rgba(255, 255, 255, 0.05);
|
625
|
+
display: flex;
|
626
|
+
align-items: center;
|
627
|
+
justify-content: center;
|
628
|
+
color: var(--light);
|
629
|
+
font-size: 1.25rem;
|
630
|
+
transition: all 0.2s ease;
|
631
|
+
}
|
632
|
+
|
633
|
+
.social-link:hover {
|
634
|
+
background-color: var(--primary);
|
635
|
+
transform: translateY(-3px);
|
636
|
+
}
|
637
|
+
|
638
|
+
.footer-title {
|
639
|
+
font-size: 1.125rem;
|
640
|
+
font-weight: 600;
|
641
|
+
margin-bottom: 1.25rem;
|
642
|
+
}
|
643
|
+
|
644
|
+
.footer-links {
|
645
|
+
list-style: none;
|
646
|
+
}
|
647
|
+
|
648
|
+
.footer-links li {
|
649
|
+
margin-bottom: 0.75rem;
|
650
|
+
}
|
651
|
+
|
652
|
+
.footer-links a {
|
653
|
+
color: var(--gray);
|
654
|
+
text-decoration: none;
|
655
|
+
transition: color 0.2s ease;
|
656
|
+
}
|
657
|
+
|
658
|
+
.footer-links a:hover {
|
659
|
+
color: var(--primary);
|
660
|
+
}
|
661
|
+
|
662
|
+
.copyright {
|
663
|
+
max-width: 1200px;
|
664
|
+
margin: 2rem auto 0;
|
665
|
+
text-align: center;
|
666
|
+
color: var(--gray);
|
667
|
+
font-size: 0.875rem;
|
668
|
+
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
669
|
+
padding-top: 2rem;
|
670
|
+
}
|
671
|
+
|
672
|
+
@media (max-width: 768px) {
|
673
|
+
.header-container {
|
674
|
+
padding: 0 1rem;
|
675
|
+
}
|
676
|
+
|
677
|
+
.hero {
|
678
|
+
padding: 10rem 2rem 6rem;
|
679
|
+
}
|
680
|
+
|
681
|
+
.hero h1 {
|
682
|
+
font-size: 2.5rem;
|
683
|
+
}
|
684
|
+
|
685
|
+
.cta-buttons {
|
686
|
+
flex-direction: column;
|
687
|
+
}
|
688
|
+
|
689
|
+
.feature-grid {
|
690
|
+
grid-template-columns: 1fr;
|
691
|
+
}
|
692
|
+
|
693
|
+
.footer-grid {
|
694
|
+
grid-template-columns: 1fr;
|
695
|
+
}
|
696
|
+
}
|
697
|
+
|
698
|
+
@media (max-width: 480px) {
|
699
|
+
.header-container {
|
700
|
+
padding: 0 1rem;
|
701
|
+
flex-direction: column;
|
702
|
+
gap: 1rem;
|
703
|
+
}
|
704
|
+
|
705
|
+
nav ul {
|
706
|
+
gap: 1rem;
|
707
|
+
}
|
171
708
|
}
|
172
709
|
</style>
|
173
710
|
</head>
|
711
|
+
|
174
712
|
<body>
|
175
|
-
<div class="
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
<
|
713
|
+
<div class="grain"></div>
|
714
|
+
|
715
|
+
<header>
|
716
|
+
<div class="header-container">
|
717
|
+
<div class="logo">
|
718
|
+
<div class="logo-icon">G</div>
|
719
|
+
<div class="logo-text">Gitingest <span class="version-tag">v0.6.0</span></div>
|
720
|
+
</div>
|
721
|
+
<nav>
|
722
|
+
<ul>
|
723
|
+
<li><a href="#features">Features</a></li>
|
724
|
+
<li><a href="#usage">Usage</a></li>
|
725
|
+
<li><a href="#changelog">Changelog</a></li>
|
726
|
+
</ul>
|
727
|
+
</nav>
|
728
|
+
<a href="https://github.com/davidesantangelo/gitingest" class="github-btn">
|
729
|
+
<i class="fab fa-github"></i> GitHub
|
730
|
+
</a>
|
731
|
+
</div>
|
732
|
+
</header>
|
733
|
+
|
734
|
+
<section class="hero">
|
735
|
+
<div class="blobs">
|
736
|
+
<div class="blob blob-1"></div>
|
737
|
+
<div class="blob blob-2"></div>
|
738
|
+
</div>
|
739
|
+
<div class="container">
|
740
|
+
<div class="hero-content">
|
741
|
+
<h1>Distill GitHub Repositories into Perfect LLM Prompts</h1>
|
742
|
+
<p class="headline">Gitingest is a <span class="highlight">powerful Ruby gem</span> that fetches
|
743
|
+
repository files and generates consolidated text prompts optimized for large language models.</p>
|
744
|
+
<div class="cta-buttons">
|
745
|
+
<a href="https://rubygems.org/gems/gitingest" class="btn btn-primary">
|
746
|
+
<i class="fas fa-gem"></i> Install from RubyGems
|
747
|
+
</a>
|
748
|
+
<a href="#usage" class="btn btn-outline">
|
749
|
+
<i class="fas fa-book"></i> Documentation
|
750
|
+
</a>
|
751
|
+
</div>
|
752
|
+
</div>
|
753
|
+
<div class="terminal">
|
754
|
+
<div class="terminal-header">
|
755
|
+
<div class="terminal-controls">
|
756
|
+
<div class="terminal-control terminal-close"></div>
|
757
|
+
<div class="terminal-control terminal-minimize"></div>
|
758
|
+
<div class="terminal-control terminal-maximize"></div>
|
759
|
+
</div>
|
760
|
+
<div class="terminal-title">zsh - gitingest</div>
|
761
|
+
</div>
|
762
|
+
<div class="terminal-body">
|
763
|
+
<div class="terminal-line">
|
764
|
+
<span class="terminal-prompt">$</span>
|
765
|
+
<span class="terminal-command">gem install gitingest</span>
|
766
|
+
</div>
|
767
|
+
<div class="terminal-output">
|
768
|
+
Successfully installed gitingest-0.5.0<br />
|
769
|
+
1 gem installed
|
770
|
+
</div>
|
771
|
+
<div class="terminal-line">
|
772
|
+
<span class="terminal-prompt">$</span>
|
773
|
+
<span class="terminal-command">gitingest --repository user/repo --token $GITHUB_TOKEN</span>
|
774
|
+
</div>
|
775
|
+
<div class="terminal-output">
|
776
|
+
Fetching repository: user/repo (branch: main)<br />
|
777
|
+
Found 87 files (excluding system and binary files)<br />
|
778
|
+
[====================] 100% | ETA: 0s | 87/87 files<br />
|
779
|
+
Prompt generated: repo_prompt.txt (254 KB)
|
780
|
+
</div>
|
781
|
+
<div class="terminal-line">
|
782
|
+
<span class="terminal-prompt">$</span>
|
783
|
+
<span class="terminal-command typing">gitingest --repository user/repo --show-structure</span>
|
784
|
+
</div>
|
785
|
+
</div>
|
786
|
+
</div>
|
787
|
+
</div>
|
788
|
+
</section>
|
789
|
+
|
790
|
+
<section class="features" id="features">
|
791
|
+
<div class="container">
|
792
|
+
<div class="section-header">
|
793
|
+
<p class="section-pretitle">Why Use Gitingest</p>
|
794
|
+
<h2>Streamlined Repository Extraction</h2>
|
795
|
+
<p class="section-subtitle">Extract the essence of any GitHub codebase with precision and transform it
|
796
|
+
into the perfect context for LLM prompting.</p>
|
797
|
+
</div>
|
798
|
+
<div class="feature-grid">
|
799
|
+
<div class="feature-card">
|
800
|
+
<div class="feature-icon">
|
801
|
+
<i class="fas fa-bolt"></i>
|
802
|
+
</div>
|
803
|
+
<h3>Concurrent Processing</h3>
|
804
|
+
<p class="feature-desc">Utilizes configurable thread counts to accelerate downloads and
|
805
|
+
intelligently prioritize files for optimal concurrency.</p>
|
806
|
+
</div>
|
807
|
+
<div class="feature-card">
|
808
|
+
<div class="feature-icon">
|
809
|
+
<i class="fas fa-filter"></i>
|
810
|
+
</div>
|
811
|
+
<h3>Smart Filtering</h3>
|
812
|
+
<p class="feature-desc">Automatically excludes unnecessary binary and system files while supporting
|
813
|
+
custom exclusion patterns to fit your needs.</p>
|
814
|
+
</div>
|
815
|
+
<div class="feature-card">
|
816
|
+
<div class="feature-icon">
|
817
|
+
<i class="fas fa-chart-line"></i>
|
818
|
+
</div>
|
819
|
+
<h3>Real-Time Progress</h3>
|
820
|
+
<p class="feature-desc">Visual progress indicators display processing speed, ETA, and file counts,
|
821
|
+
keeping you informed every step of the way.</p>
|
822
|
+
</div>
|
823
|
+
<div class="feature-card">
|
824
|
+
<div class="feature-icon">
|
825
|
+
<i class="fas fa-sitemap"></i>
|
826
|
+
</div>
|
827
|
+
<h3>Directory Visualization</h3>
|
828
|
+
<p class="feature-desc">Generate a tree-view of the repository structure to easily navigate and
|
829
|
+
understand codebase organization.</p>
|
830
|
+
</div>
|
831
|
+
<div class="feature-card">
|
832
|
+
<div class="feature-icon">
|
833
|
+
<i class="fas fa-code"></i>
|
834
|
+
</div>
|
835
|
+
<h3>Clean Code Output</h3>
|
836
|
+
<p class="feature-desc">Produces a well-organized, consolidated text prompt that’s perfect for
|
837
|
+
feeding into large language models.</p>
|
838
|
+
</div>
|
181
839
|
</div>
|
182
840
|
</div>
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
841
|
+
</section>
|
842
|
+
|
843
|
+
<section class="usage" id="usage">
|
844
|
+
<div class="container">
|
845
|
+
<h2>Usage</h2>
|
846
|
+
<p>
|
847
|
+
Integrate Gitingest seamlessly into your workflow. Whether you install via RubyGems or clone the
|
848
|
+
repository, the CLI lets you extract repository content quickly and effortlessly.
|
849
|
+
</p>
|
850
|
+
<div class="code-block-wrapper" style="position: relative;">
|
851
|
+
<button class="copy-btn" onclick="copyUsageCode()" title="Copy code" style="
|
852
|
+
position: absolute;
|
853
|
+
top: 10px;
|
854
|
+
right: 10px;
|
855
|
+
background: rgba(255, 255, 255, 0.1);
|
856
|
+
border: none;
|
857
|
+
color: var(--gray);
|
858
|
+
width: 32px;
|
859
|
+
height: 32px;
|
860
|
+
border-radius: 6px;
|
861
|
+
cursor: pointer;
|
862
|
+
transition: background 0.2s ease;
|
863
|
+
">
|
864
|
+
<i class="fas fa-copy"></i>
|
865
|
+
</button>
|
866
|
+
<div class="code-block">
|
867
|
+
<pre><code id="usage-code"># Install from RubyGems
|
868
|
+
gem install gitingest
|
869
|
+
|
870
|
+
# Clone from GitHub and install dependencies
|
871
|
+
git clone https://github.com/davidesantangelo/gitingest.git
|
194
872
|
cd gitingest
|
195
873
|
bundle install
|
196
|
-
bundle exec rake install
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
gitingest --repository user/repo
|
203
|
-
|
204
|
-
# With GitHub token for private repositories
|
874
|
+
bundle exec rake install
|
875
|
+
|
876
|
+
# Basic usage for public repositories
|
877
|
+
gitingest --repository user/repo
|
878
|
+
|
879
|
+
# Using a GitHub token for private repositories
|
205
880
|
gitingest --repository user/repo --token YOUR_GITHUB_TOKEN
|
206
881
|
|
207
|
-
#
|
208
|
-
gitingest --repository user/repo --
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
<li><code>-b, --branch BRANCH</code>: Repository branch [Default: main]</li>
|
229
|
-
<li><code>-h, --help</code>: Show help message</li>
|
230
|
-
</ul>
|
231
|
-
|
232
|
-
<h3>As a Library</h3>
|
233
|
-
<pre><code>require "gitingest"
|
234
|
-
|
235
|
-
# Basic usage
|
236
|
-
generator = Gitingest::Generator.new(
|
237
|
-
repository: "user/repo",
|
238
|
-
token: "YOUR_GITHUB_TOKEN" # optional
|
239
|
-
)
|
240
|
-
generator.run
|
241
|
-
|
242
|
-
# With custom options
|
243
|
-
generator = Gitingest::Generator.new(
|
244
|
-
repository: "user/repo",
|
245
|
-
token: "YOUR_GITHUB_TOKEN",
|
246
|
-
output_file: "my_prompt.txt",
|
247
|
-
branch: "develop",
|
248
|
-
exclude: ["*.md", "docs/"],
|
249
|
-
quiet: true # or verbose: true
|
250
|
-
)
|
251
|
-
generator.run
|
252
|
-
|
253
|
-
# With custom logger
|
254
|
-
custom_logger = Logger.new("gitingest.log")
|
255
|
-
generator = Gitingest::Generator.new(
|
256
|
-
repository: "user/repo",
|
257
|
-
logger: custom_logger
|
258
|
-
)
|
259
|
-
generator.run</code></pre>
|
260
|
-
|
261
|
-
<h2>Features</h2>
|
262
|
-
<ul>
|
263
|
-
<li>Fetches all files from a GitHub repository based on the given branch</li>
|
264
|
-
<li>Automatically excludes common binary files and system files by default</li>
|
265
|
-
<li>Allows custom exclusion patterns for specific file extensions or directories</li>
|
266
|
-
<li>Uses concurrent processing for faster downloads</li>
|
267
|
-
<li>Handles GitHub API rate limiting with automatic retry</li>
|
268
|
-
<li>Generates a clean, formatted output file with file paths and content</li>
|
269
|
-
</ul>
|
270
|
-
|
271
|
-
<h2>Default Exclusion Patterns</h2>
|
272
|
-
<p>By default, the generator excludes files and directories commonly ignored in repositories, such as:</p>
|
273
|
-
<ul>
|
274
|
-
<li>Version control files (<code>.git/</code>, <code>.svn/</code>)</li>
|
275
|
-
<li>System files (<code>.DS_Store</code>, <code>Thumbs.db</code>)</li>
|
276
|
-
<li>Log files (<code>*.log</code>, <code>*.bak</code>)</li>
|
277
|
-
<li>Images and media files (<code>*.png</code>, <code>*.jpg</code>, <code>*.mp3</code>)</li>
|
278
|
-
<li>Archives (<code>*.zip</code>, <code>*.tar.gz</code>)</li>
|
279
|
-
<li>Dependency directories (<code>node_modules/</code>, <code>vendor/</code>)</li>
|
280
|
-
<li>Compiled and binary files (<code>*.pyc</code>, <code>*.class</code>, <code>*.exe</code>)</li>
|
281
|
-
</ul>
|
282
|
-
|
283
|
-
<h2>Limitations</h2>
|
284
|
-
<ul>
|
285
|
-
<li>To prevent memory overload, only the first 1000 files will be processed</li>
|
286
|
-
<li>API requests are subject to GitHub limits (60 requests/hour without token, 5000 requests/hour with token)</li>
|
287
|
-
<li>Private repositories require a GitHub personal access token</li>
|
288
|
-
</ul>
|
289
|
-
|
290
|
-
<div class="changelog">
|
882
|
+
# Generate repository prompt and show structure
|
883
|
+
gitingest --repository user/repo --show-structure</code></pre>
|
884
|
+
</div>
|
885
|
+
</div>
|
886
|
+
</div>
|
887
|
+
</section>
|
888
|
+
<script>
|
889
|
+
function copyUsageCode() {
|
890
|
+
const code = document.getElementById("usage-code").innerText;
|
891
|
+
navigator.clipboard.writeText(code).then(() => {
|
892
|
+
// Provide visual feedback (e.g., a temporary alert)
|
893
|
+
alert("Code copied to clipboard!");
|
894
|
+
}).catch(err => {
|
895
|
+
console.error("Failed to copy code: ", err);
|
896
|
+
});
|
897
|
+
}
|
898
|
+
</script>
|
899
|
+
|
900
|
+
|
901
|
+
<section class="changelog" id="changelog">
|
902
|
+
<div class="container">
|
291
903
|
<h2>Changelog</h2>
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
904
|
+
<div class="timeline">
|
905
|
+
<div class="timeline-item">
|
906
|
+
<div class="timeline-date">
|
907
|
+
<span class="timeline-month">Mar</span>
|
908
|
+
<span class="timeline-day">18</span>
|
909
|
+
</div>
|
910
|
+
<div class="timeline-content">
|
911
|
+
<h3 class="timeline-version">v0.6.0</h3>
|
912
|
+
<p class="timeline-desc">Improved default branch handling and enhanced repository validation
|
913
|
+
with better error handling.</p>
|
914
|
+
<div class="timeline-list">
|
915
|
+
<ul>
|
916
|
+
<li>Use repository's actual default branch instead of hardcoding "main"</li>
|
917
|
+
<li>Enhanced error handling in repository access validation</li>
|
918
|
+
<li>Updated documentation for default branch behavior</li>
|
919
|
+
<li>Fixed repository validation in test environment</li>
|
920
|
+
</ul>
|
921
|
+
</div>
|
922
|
+
</div>
|
923
|
+
</div>
|
924
|
+
<div class="timeline-item">
|
925
|
+
<div class="timeline-date">
|
926
|
+
<span class="timeline-month">Mar</span>
|
927
|
+
<span class="timeline-day">04</span>
|
928
|
+
</div>
|
929
|
+
<div class="timeline-content">
|
930
|
+
<h3 class="timeline-version">v0.5.0</h3>
|
931
|
+
<p class="timeline-desc">Introduced repository directory structure visualization, added
|
932
|
+
DirectoryStructureBuilder, and improved concurrent processing with thread management.</p>
|
933
|
+
<div class="timeline-list">
|
934
|
+
<ul>
|
935
|
+
<li>Added <code>--show-structure</code> option</li>
|
936
|
+
<li>Created <code>DirectoryStructureBuilder</code> class</li>
|
937
|
+
<li>Integrated directory tree view generation</li>
|
938
|
+
</ul>
|
939
|
+
</div>
|
940
|
+
</div>
|
941
|
+
</div>
|
942
|
+
<div class="timeline-item">
|
943
|
+
<div class="timeline-date">
|
944
|
+
<span class="timeline-month">Mar</span>
|
945
|
+
<span class="timeline-day">04</span>
|
946
|
+
</div>
|
947
|
+
<div class="timeline-content">
|
948
|
+
<h3 class="timeline-version">v0.4.0</h3>
|
949
|
+
<p class="timeline-desc">Implemented in-memory prompt generation, visual progress bar, and
|
950
|
+
enhanced multithreaded operations.</p>
|
951
|
+
<div class="timeline-list">
|
952
|
+
<ul>
|
953
|
+
<li>Added <code>generate_prompt</code> method</li>
|
954
|
+
<li>Integrated visual progress bar</li>
|
955
|
+
<li>Improved logging and error handling</li>
|
956
|
+
</ul>
|
957
|
+
</div>
|
958
|
+
</div>
|
959
|
+
</div>
|
960
|
+
<div class="timeline-item">
|
961
|
+
<div class="timeline-date">
|
962
|
+
<span class="timeline-month">Mar</span>
|
963
|
+
<span class="timeline-day">03</span>
|
964
|
+
</div>
|
965
|
+
<div class="timeline-content">
|
966
|
+
<h3 class="timeline-version">v0.3.1</h3>
|
967
|
+
<p class="timeline-desc">Optimized threading with configurable options and introduced
|
968
|
+
exponential backoff for API requests.</p>
|
969
|
+
<div class="timeline-list">
|
970
|
+
<ul>
|
971
|
+
<li>Configurable threading options</li>
|
972
|
+
<li>Added thread-local buffers</li>
|
973
|
+
<li>Improved file exclusion performance</li>
|
974
|
+
</ul>
|
975
|
+
</div>
|
976
|
+
</div>
|
297
977
|
</div>
|
298
|
-
<ul class="changelog-list">
|
299
|
-
<li>Added <code>faraday-retry</code> gem dependency for better API rate limit handling</li>
|
300
|
-
<li>Implemented thread-safe buffer management with mutex locks</li>
|
301
|
-
<li>Added new <code>ProgressIndicator</code> class for better CLI progress reporting (showing percentages)</li>
|
302
|
-
<li>Improved memory efficiency with configurable buffer size</li>
|
303
|
-
<li>Enhanced code organization with dedicated methods for file content formatting</li>
|
304
|
-
<li>Added comprehensive method documentation and parameter descriptions</li>
|
305
|
-
<li>Optimized thread pool size calculation for better performance</li>
|
306
|
-
<li>Improved error handling in concurrent operations</li>
|
307
|
-
</ul>
|
308
978
|
</div>
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
979
|
+
</div>
|
980
|
+
</section>
|
981
|
+
|
982
|
+
<footer class="footer">
|
983
|
+
<div class="footer-grid">
|
984
|
+
<div>
|
985
|
+
<div class="footer-logo">
|
986
|
+
<div class="footer-logo-icon">G</div>
|
987
|
+
<div class="logo-text">Gitingest</div>
|
314
988
|
</div>
|
315
|
-
<
|
316
|
-
|
317
|
-
|
318
|
-
<
|
319
|
-
|
320
|
-
<
|
321
|
-
|
322
|
-
|
323
|
-
|
989
|
+
<p class="footer-desc">A powerful Ruby gem to distill GitHub repositories into optimal prompts for LLMs.
|
990
|
+
</p>
|
991
|
+
<div class="social-links">
|
992
|
+
<a href="https://github.com/davidesantangelo/gitingest" class="social-link" target="_blank"
|
993
|
+
rel="noopener"><i class="fab fa-github"></i></a>
|
994
|
+
<a href="https://rubygems.org/gems/gitingest" class="social-link" target="_blank" rel="noopener"><i
|
995
|
+
class="fas fa-gem"></i></a>
|
996
|
+
</div>
|
997
|
+
</div>
|
998
|
+
<div>
|
999
|
+
<h3 class="footer-title">Features</h3>
|
1000
|
+
<ul class="footer-links">
|
1001
|
+
<li><a href="#features">Concurrent Processing</a></li>
|
1002
|
+
<li><a href="#features">Smart Filtering</a></li>
|
1003
|
+
<li><a href="#features">Real-Time Progress</a></li>
|
1004
|
+
<li><a href="#features">Directory Visualization</a></li>
|
324
1005
|
</ul>
|
325
1006
|
</div>
|
326
|
-
|
327
|
-
|
328
|
-
<
|
329
|
-
<
|
330
|
-
<
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
<li
|
338
|
-
|
339
|
-
<li
|
340
|
-
<li
|
341
|
-
|
342
|
-
<li>Support for custom branch selection</li>
|
343
|
-
<li>Custom output file naming options</li>
|
1007
|
+
<div>
|
1008
|
+
<h3 class="footer-title">Usage</h3>
|
1009
|
+
<ul class="footer-links">
|
1010
|
+
<li><a href="#usage">Installation</a></li>
|
1011
|
+
<li><a href="#usage">Command Line</a></li>
|
1012
|
+
<li><a href="#usage">Library Integration</a></li>
|
1013
|
+
</ul>
|
1014
|
+
</div>
|
1015
|
+
<div>
|
1016
|
+
<h3 class="footer-title">Resources</h3>
|
1017
|
+
<ul class="footer-links">
|
1018
|
+
<li><a href="https://github.com/davidesantangelo/gitingest" target="_blank"
|
1019
|
+
rel="noopener">GitHub</a></li>
|
1020
|
+
<li><a href="https://rubygems.org/gems/gitingest" target="_blank" rel="noopener">RubyGems</a></li>
|
1021
|
+
<li><a href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener">MIT License</a>
|
1022
|
+
</li>
|
344
1023
|
</ul>
|
345
1024
|
</div>
|
346
1025
|
</div>
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
<h2>Acknowledgements</h2>
|
352
|
-
<p>Inspired by <a href="https://github.com/cyclotruc/gitingest"><code>cyclotruc/gitingest</code></a>.</p>
|
353
|
-
|
354
|
-
<h2>License</h2>
|
355
|
-
<p>The gem is available as open source under the terms of the <a href="https://opensource.org/licenses/MIT">MIT License</a>.</p>
|
356
|
-
</div>
|
357
|
-
|
358
|
-
<footer>
|
359
|
-
<p>© 2025 David Santangelo</p>
|
360
|
-
<p>Last updated: March 2, 2025</p>
|
1026
|
+
<div class="copyright">
|
1027
|
+
© 2025 David Santangelo. All rights reserved.
|
1028
|
+
</div>
|
361
1029
|
</footer>
|
362
1030
|
</body>
|
363
|
-
|
1031
|
+
|
1032
|
+
</html>
|