git-pkgs 0.3.0 → 0.4.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 +12 -0
- data/CONTRIBUTING.md +27 -0
- data/LICENSE +189 -189
- data/README.md +41 -0
- data/SECURITY.md +7 -0
- data/lib/git/pkgs/analyzer.rb +1 -1
- data/lib/git/pkgs/cli.rb +5 -2
- data/lib/git/pkgs/color.rb +1 -0
- data/lib/git/pkgs/commands/blame.rb +1 -1
- data/lib/git/pkgs/commands/diff_driver.rb +169 -0
- data/lib/git/pkgs/commands/info.rb +5 -1
- data/lib/git/pkgs/commands/init.rb +10 -8
- data/lib/git/pkgs/commands/where.rb +166 -0
- data/lib/git/pkgs/version.rb +1 -1
- data/lib/git/pkgs.rb +2 -0
- metadata +6 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 794ba02ad93776f2d013177ae9b6cc8574788b84d9a51ea05e4e1db6a18399c5
|
|
4
|
+
data.tar.gz: 8a1d4e1fc30f73add57a69a9f4f29fa3ae3883fe73350b8d6121217dd24a6592
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5204cc1a63d3838322e465d70ac1a16e8cf215e193e15baf8425c1f88ec40affd9ceb0647a821cfa9a2384dc684a3c912baf32ac960352a8591c6105777a210
|
|
7
|
+
data.tar.gz: b6b6b47009f511022f1e824671a3ff47a654a8d4bb128ec933371c13e65106952b8c5322db2914c5b3d4d924206f09d0f6264e6457fccfc64b2518e1f86cfdcb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [Unreleased]
|
|
2
|
+
|
|
3
|
+
## [0.4.0] - 2026-01-04
|
|
4
|
+
|
|
5
|
+
- `git pkgs where` command to find where a package is declared in manifest files
|
|
6
|
+
- `git pkgs diff-driver` command for semantic lockfile diffs in `git diff`
|
|
7
|
+
- Ruby 4.0 support
|
|
8
|
+
- Fix branch name retrieval and final snapshot storage in `git pkgs init`
|
|
9
|
+
- Fix `git pkgs info` snapshot coverage output when zero snapshots
|
|
10
|
+
- Fix manifest file pattern matching for wildcard characters
|
|
11
|
+
- Fix co-author name parsing in `git pkgs blame`
|
|
12
|
+
|
|
1
13
|
## [0.3.0] - 2026-01-03
|
|
2
14
|
|
|
3
15
|
- Pager support for long output (respects `GIT_PAGER`, `core.pager`, `PAGER`)
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Contributing
|
|
2
|
+
|
|
3
|
+
## Setup
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
git clone https://github.com/andrew/git-pkgs
|
|
7
|
+
cd git-pkgs
|
|
8
|
+
bin/setup
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Running tests
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bundle exec rake test
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Pull requests
|
|
18
|
+
|
|
19
|
+
1. Fork the repo
|
|
20
|
+
2. Create a branch
|
|
21
|
+
3. Make your changes
|
|
22
|
+
4. Run tests
|
|
23
|
+
5. Open a PR
|
|
24
|
+
|
|
25
|
+
## Reporting bugs
|
|
26
|
+
|
|
27
|
+
Open an issue with steps to reproduce.
|