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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 114b6d8e954843f88917f556760e7fab89753126cb5fd059ed6cfe55c8f2e6c6
4
- data.tar.gz: 39873c0d14eff9d6e615f6e2f13e7e30331f0e97db1162b613047782a582ff6c
3
+ metadata.gz: 4fed02be7f1f415a86c9cf9f3b2823084c2979958dc446a41d08732c00c09ace
4
+ data.tar.gz: '04238682889fea64c4ba510d63bfa17bbb175da3170d70835584f99bab2c3b2e'
5
5
  SHA512:
6
- metadata.gz: f35ffb41ddd9990cd1c2e8c4ad08018a5bdd63c8ec222bfce021ede2c67dfa9355fbc7f1102f014c555d0df46501877b01f2767aadf674896635bd7fa5bab355
7
- data.tar.gz: e431693ee45cf65ab3c63931c5c4a69675ddafc8038f90cda3dfb7dacec7449f48a65a41bc12f56996f8e697f80d1a896243e97aa37c96085107491099dabc05
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
+ [![Gem Version](https://badge.fury.io/rb/gitingest.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/gitingest)
2
+ ![Gem Total Downloads](https://img.shields.io/gem/dt/gitingest?style=flat-square&link=https%3A%2F%2Frubygems.org%2Fgems%2Fgitingest)
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: main]
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: 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
 
@@ -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