gitingest 0.5.0 → 0.6.1

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: 016473eb12d22b0847b8a5f45ed24b57a6211cb7a826662a5c29f66f9160033b
4
+ data.tar.gz: abd39a8c8416a9ba60627bda71e0e0c265df3fd46e12fdf4f893c40d627783a9
5
5
  SHA512:
6
- metadata.gz: 803d3a5bb7ca76c9f51a268d22d485c1455b8ba7ebbe16aa3c5af8eabd63fddef273810ec10fa682b7cf606094b30c1ce681468d2a48a190d546c81a6eb779ca
7
- data.tar.gz: 6781db79ba3fce1c75f13e8587ceffe8e26d0da276c0c1bbf175f942a9e8e9f1b742884413aabcc6b719a2c010c4156e601aa4577b9604e6edcd7959c67447ec
6
+ metadata.gz: 7b7f54743d80d51cb347ff13f4b5fe1cd892143df4867da989bc51b972d094c3bba0068ddd571420440c4a6fa1f7591ebdbb61ddc37f140553cea869f592c3bc
7
+ data.tar.gz: d1797eef97f58f9119d474e6fdd18be3b1670b6c3bbbad35866d42f0a8f0e7066f886f7ac6ddc1da0cf7d9bd552f4f962cbc5e9b0360d04e3952c102f09877ce
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.1] - 2025-03-26
4
+
5
+ ### Fixed
6
+ - Fixed error "target of repeat operator is not specified" when using `--exclude` with glob patterns like `*.md`
7
+
8
+ ---
9
+
10
+ ## [0.6.0] - 2025-03-18
11
+
12
+ ### Changed
13
+ - Improved default branch handling to use repository's actual default branch instead of hardcoding "main"
14
+ - Enhanced error handling in repository access validation
15
+ - Updated documentation to reflect the correct default branch behavior
16
+ - Fixed issues with repository validation in tests
17
+
18
+ ---
19
+
3
20
  ## [0.5.0] - 2025-03-10
4
21
 
5
22
  ### 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