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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fed02be7f1f415a86c9cf9f3b2823084c2979958dc446a41d08732c00c09ace
|
4
|
+
data.tar.gz: '04238682889fea64c4ba510d63bfa17bbb175da3170d70835584f99bab2c3b2e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56d5eb66ab1eb3f4feb6ce402f3afcf45c0f9486f4a691669af0d0db9cce3fa5a2b26f28f4a406a597d4af5e76a603cb79d521ee6e01f1902c7906d7883c62ff
|
7
|
+
data.tar.gz: bb57d6f3b21e8668a6a91303f0afdf93da3f407258aeede1126c79560a5e9f19ed9af12dd6955d8e91d71cf42a71858b3854f47963b9d16991b22554301510a4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.6.0] - 2025-03-18
|
4
|
+
|
5
|
+
### Changed
|
6
|
+
- Improved default branch handling to use repository's actual default branch instead of hardcoding "main"
|
7
|
+
- Enhanced error handling in repository access validation
|
8
|
+
- Updated documentation to reflect the correct default branch behavior
|
9
|
+
- Fixed issues with repository validation in tests
|
10
|
+
|
11
|
+
---
|
12
|
+
|
13
|
+
## [0.5.0] - 2025-03-10
|
14
|
+
|
15
|
+
### Added
|
16
|
+
- Added repository directory structure visualization with `--show-structure` / `-s` option
|
17
|
+
- Created `DirectoryStructureBuilder` class to generate tree views of repositories
|
18
|
+
- Added `generate_directory_structure` method to the Generator class
|
19
|
+
- Added tests for directory structure visualization
|
20
|
+
|
21
|
+
### Changed
|
22
|
+
- Enhanced documentation with directory structure visualization examples
|
23
|
+
- Updated CLI help with the new option
|
24
|
+
|
25
|
+
---
|
26
|
+
|
3
27
|
## [0.4.0] - 2025-03-03
|
4
28
|
|
5
29
|
### Added
|
data/README.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
[](https://badge.fury.io/rb/gitingest)
|
2
|
+

|
3
|
+
|
1
4
|
# Gitingest
|
2
5
|
|
3
6
|
Gitingest is a Ruby gem that fetches files from a GitHub repository and generates a consolidated text prompt, which can be used as input for large language models, documentation generation, or other purposes.
|
@@ -45,6 +48,9 @@ gitingest --repository user/repo -T 4
|
|
45
48
|
# Set thread pool shutdown timeout
|
46
49
|
gitingest --repository user/repo -W 120
|
47
50
|
|
51
|
+
# Show repository directory structure
|
52
|
+
gitingest --repository user/repo -s
|
53
|
+
|
48
54
|
# Combine threading options
|
49
55
|
gitingest --repository user/repo -T 8 -W 90
|
50
56
|
|
@@ -61,13 +67,22 @@ gitingest --repository user/repo --verbose
|
|
61
67
|
- `-t, --token TOKEN`: GitHub personal access token [Optional but recommended]
|
62
68
|
- `-o, --output FILE`: Output file for the prompt [Default: reponame_prompt.txt]
|
63
69
|
- `-e, --exclude PATTERN`: File patterns to exclude (comma separated)
|
64
|
-
- `-b, --branch BRANCH`: Repository branch [Default:
|
70
|
+
- `-b, --branch BRANCH`: Repository branch [Default: repository's default branch]
|
71
|
+
- `-s, --show-structure`: Show repository directory structure instead of generating prompt
|
65
72
|
- `-T, --threads COUNT`: Number of concurrent threads [Default: auto-detected]
|
66
73
|
- `-W, --thread-timeout SECONDS`: Thread pool shutdown timeout [Default: 60]
|
67
74
|
- `-q, --quiet`: Reduce logging to errors only
|
68
75
|
- `-v, --verbose`: Increase logging verbosity
|
69
76
|
- `-h, --help`: Show help message
|
70
77
|
|
78
|
+
### Directory Structure Visualization
|
79
|
+
|
80
|
+
```bash
|
81
|
+
gitingest --repository user/repo --show-structure
|
82
|
+
```
|
83
|
+
|
84
|
+
This will display a tree view of the repository's structure:
|
85
|
+
|
71
86
|
### As a Library
|
72
87
|
|
73
88
|
```ruby
|
@@ -145,4 +160,4 @@ Inspired by [`cyclotruc/gitingest`](https://github.com/cyclotruc/gitingest).
|
|
145
160
|
|
146
161
|
## License
|
147
162
|
|
148
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
163
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/bin/gitingest
CHANGED
@@ -22,7 +22,7 @@ parser = OptionParser.new do |opts|
|
|
22
22
|
options[:output_file] = file
|
23
23
|
end
|
24
24
|
|
25
|
-
opts.on("-b", "--branch BRANCH", "Repository branch [Default:
|
25
|
+
opts.on("-b", "--branch BRANCH", "Repository branch [Default: repository's default branch]") do |branch|
|
26
26
|
options[:branch] = branch
|
27
27
|
end
|
28
28
|
|
@@ -39,6 +39,10 @@ parser = OptionParser.new do |opts|
|
|
39
39
|
options[:thread_timeout] = timeout
|
40
40
|
end
|
41
41
|
|
42
|
+
opts.on("-s", "--show-structure", "Show repository directory structure") do
|
43
|
+
options[:show_structure] = true
|
44
|
+
end
|
45
|
+
|
42
46
|
opts.on("-q", "--quiet", "Reduce logging to errors only") do
|
43
47
|
options[:quiet] = true
|
44
48
|
end
|
@@ -58,6 +62,7 @@ parser = OptionParser.new do |opts|
|
|
58
62
|
opts.separator " gitingest -r user/repo -t YOUR_TOKEN # With GitHub token for private repositories"
|
59
63
|
opts.separator " gitingest -r user/repo -o custom_prompt.txt # Custom output file"
|
60
64
|
opts.separator " gitingest -r user/repo -T 8 # Use 8 threads for processing"
|
65
|
+
opts.separator " gitingest -r user/repo -s # Show repository directory structure"
|
61
66
|
end
|
62
67
|
|
63
68
|
begin
|