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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c754bbf3a24a049ce269017c82ef90b295b0503cb05cc0e652c0101ce68df484
4
- data.tar.gz: c3df8efb661ff08e0525da943062882a7a2b467302895f09cbb5dbab38383927
3
+ metadata.gz: 4fed02be7f1f415a86c9cf9f3b2823084c2979958dc446a41d08732c00c09ace
4
+ data.tar.gz: '04238682889fea64c4ba510d63bfa17bbb175da3170d70835584f99bab2c3b2e'
5
5
  SHA512:
6
- metadata.gz: 803d3a5bb7ca76c9f51a268d22d485c1455b8ba7ebbe16aa3c5af8eabd63fddef273810ec10fa682b7cf606094b30c1ce681468d2a48a190d546c81a6eb779ca
7
- data.tar.gz: 6781db79ba3fce1c75f13e8587ceffe8e26d0da276c0c1bbf175f942a9e8e9f1b742884413aabcc6b719a2c010c4156e601aa4577b9604e6edcd7959c67447ec
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: main]
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: main]") do |branch|
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