gitingest 0.5.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 +10 -0
- data/README.md +1 -1
- data/bin/gitingest +1 -1
- data/index.html +945 -356
- data/lib/gitingest/generator.rb +3 -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,15 @@
|
|
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
|
+
|
3
13
|
## [0.5.0] - 2025-03-10
|
4
14
|
|
5
15
|
### Added
|
data/README.md
CHANGED
@@ -67,7 +67,7 @@ gitingest --repository user/repo --verbose
|
|
67
67
|
- `-t, --token TOKEN`: GitHub personal access token [Optional but recommended]
|
68
68
|
- `-o, --output FILE`: Output file for the prompt [Default: reponame_prompt.txt]
|
69
69
|
- `-e, --exclude PATTERN`: File patterns to exclude (comma separated)
|
70
|
-
- `-b, --branch BRANCH`: Repository branch [Default:
|
70
|
+
- `-b, --branch BRANCH`: Repository branch [Default: repository's default branch]
|
71
71
|
- `-s, --show-structure`: Show repository directory structure instead of generating prompt
|
72
72
|
- `-T, --threads COUNT`: Number of concurrent threads [Default: auto-detected]
|
73
73
|
- `-W, --thread-timeout SECONDS`: Thread pool shutdown timeout [Default: 60]
|
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
|
|