Skip to content

Commit 5610d87

Browse files
authored
Merge pull request #108 from tstromberg/main
Rebrand as reviewGOOSE
2 parents 4a8ab91 + 397dd79 commit 5610d87

48 files changed

Lines changed: 148 additions & 79 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ go.work.sum
2828
.env
2929

3030
/goose
31-
/review-goose
31+
/reviewGOOSE
3232

3333
# Editor/IDE
3434
# .idea/

Makefile

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
APP_NAME = review-goose
2-
BUNDLE_NAME = Review Goose
1+
APP_NAME = reviewGOOSE
2+
BUNDLE_NAME = reviewGOOSE
33
VERSION = 1.0.0
44
BUNDLE_VERSION = 1
55
BUNDLE_ID = dev.codegroove.r2r
66

77
# Version information for builds
88
# Try VERSION file first (for release tarballs), then fall back to git
9-
VERSION_FILE := $(shell cat cmd/review-goose/VERSION 2>/dev/null)
9+
VERSION_FILE := $(shell cat cmd/reviewGOOSE/VERSION 2>/dev/null)
1010
GIT_VERSION := $(shell git describe --tags --always --dirty 2>/dev/null)
1111
BUILD_VERSION := $(or $(VERSION_FILE),$(GIT_VERSION),dev)
1212
GIT_COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null || echo "unknown")
@@ -51,18 +51,18 @@ ifeq ($(shell uname),Darwin)
5151
@echo "Running $(BUNDLE_NAME) from /Applications..."
5252
@open "/Applications/$(BUNDLE_NAME).app"
5353
else
54-
go run ./cmd/review-goose
54+
go run ./cmd/reviewGOOSE
5555
endif
5656

5757
# Build for current platform
5858
build: out
5959
ifeq ($(OS),Windows_NT)
6060
@echo "Building $(APP_NAME) for Windows..."
61-
@CGO_ENABLED=1 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME).exe ./cmd/review-goose
61+
@CGO_ENABLED=1 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME).exe ./cmd/reviewGOOSE
6262
@echo "✓ Created: out/$(APP_NAME).exe"
6363
else
6464
@echo "Building $(APP_NAME) for $(shell uname -s)/$(shell uname -m)..."
65-
@CGO_ENABLED=1 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME) ./cmd/review-goose
65+
@CGO_ENABLED=1 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME) ./cmd/reviewGOOSE
6666
@echo "✓ Created: out/$(APP_NAME)"
6767
endif
6868

@@ -72,30 +72,30 @@ build-all: build-darwin build-linux build-windows
7272
# Build for macOS (both architectures)
7373
build-darwin: out
7474
@echo "Building $(APP_NAME) for darwin/amd64..."
75-
@CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-darwin-amd64 ./cmd/review-goose
75+
@CGO_ENABLED=1 GOOS=darwin GOARCH=amd64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-darwin-amd64 ./cmd/reviewGOOSE
7676
@echo "✓ Created: out/$(APP_NAME)-darwin-amd64"
7777
@echo "Building $(APP_NAME) for darwin/arm64..."
78-
@CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-darwin-arm64 ./cmd/review-goose
78+
@CGO_ENABLED=1 GOOS=darwin GOARCH=arm64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-darwin-arm64 ./cmd/reviewGOOSE
7979
@echo "✓ Created: out/$(APP_NAME)-darwin-arm64"
8080

8181
# Build for Linux (both architectures)
8282
# Note: CGO cross-compilation requires appropriate cross-compiler toolchain
8383
build-linux: out
8484
@echo "Building $(APP_NAME) for linux/amd64..."
85-
@CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-linux-amd64 ./cmd/review-goose
85+
@CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-linux-amd64 ./cmd/reviewGOOSE
8686
@echo "✓ Created: out/$(APP_NAME)-linux-amd64"
8787
@echo "Building $(APP_NAME) for linux/arm64..."
88-
@CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-linux-arm64 ./cmd/review-goose
88+
@CGO_ENABLED=1 GOOS=linux GOARCH=arm64 go build -ldflags "$(LDFLAGS)" -o out/$(APP_NAME)-linux-arm64 ./cmd/reviewGOOSE
8989
@echo "✓ Created: out/$(APP_NAME)-linux-arm64"
9090

9191
# Build for Windows (both architectures)
9292
# Note: CGO cross-compilation requires appropriate cross-compiler toolchain
9393
build-windows: out
9494
@echo "Building $(APP_NAME) for windows/amd64..."
95-
@CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME)-windows-amd64.exe ./cmd/review-goose
95+
@CGO_ENABLED=1 GOOS=windows GOARCH=amd64 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME)-windows-amd64.exe ./cmd/reviewGOOSE
9696
@echo "✓ Created: out/$(APP_NAME)-windows-amd64.exe"
9797
@echo "Building $(APP_NAME) for windows/arm64..."
98-
@CGO_ENABLED=1 GOOS=windows GOARCH=arm64 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME)-windows-arm64.exe ./cmd/review-goose
98+
@CGO_ENABLED=1 GOOS=windows GOARCH=arm64 go build -ldflags "-H=windowsgui $(LDFLAGS)" -o out/$(APP_NAME)-windows-arm64.exe ./cmd/reviewGOOSE
9999
@echo "✓ Created: out/$(APP_NAME)-windows-arm64.exe"
100100

101101
# Clean build artifacts
@@ -119,7 +119,7 @@ $(APPIFY_BIN):
119119
install-appify: $(APPIFY_BIN)
120120

121121
# Internal helper to create app bundle from a binary
122-
# Usage: make _create-app-bundle BUNDLE_BINARY=review-goose
122+
# Usage: make _create-app-bundle BUNDLE_BINARY=reviewGOOSE
123123
define create-app-bundle
124124
@echo "Removing old app bundle..."
125125
@rm -rf "out/$(BUNDLE_NAME).app"
@@ -162,8 +162,8 @@ define create-app-bundle
162162
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist"
163163
@/usr/libexec/PlistBuddy -c "Add :CFBundleVersion string $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist" 2>/dev/null || \
164164
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $(BUILD_VERSION)" "out/$(BUNDLE_NAME).app/Contents/Info.plist"
165-
@/usr/libexec/PlistBuddy -c "Add :CFBundleGetInfoString string 'Review Goose $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist" 2>/dev/null || \
166-
/usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString 'Review Goose $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist"
165+
@/usr/libexec/PlistBuddy -c "Add :CFBundleGetInfoString string 'reviewGOOSE $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist" 2>/dev/null || \
166+
/usr/libexec/PlistBuddy -c "Set :CFBundleGetInfoString 'reviewGOOSE $(BUILD_VERSION)'" "out/$(BUNDLE_NAME).app/Contents/Info.plist"
167167

168168
@echo "Code signing the app bundle..."
169169
@xattr -cr "out/$(BUNDLE_NAME).app"
@@ -320,8 +320,8 @@ release:
320320
@echo "→ Running linters..."
321321
@$(MAKE) lint
322322
@echo "Creating VERSION file..."
323-
@echo "$(VERSION)" > cmd/review-goose/VERSION
324-
@git add cmd/review-goose/VERSION
323+
@echo "$(VERSION)" > cmd/reviewGOOSE/VERSION
324+
@git add cmd/reviewGOOSE/VERSION
325325
@if [ -n "$$(git diff --cached --name-only)" ]; then \
326326
git commit -m "Release $(VERSION)"; \
327327
fi

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
# Review Goose 🪿
1+
# reviewGOOSE 🪿
22

33
![Beta](https://img.shields.io/badge/status-beta-orange)
44
![Platform](https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20BSD%20%7C%20Windows-blue)
55
![Goose Noises](https://img.shields.io/badge/goose%20noises-100%25%20more-green)
66
[![GitHub](https://img.shields.io/github/stars/ready-to-review/goose?style=social)](https://github.com/ready-to-review/goose)
77

8-
![Review Goose Logo](media/logo-small.png)
8+
![reviewGOOSE Logo](media/logo-small.png)
99

1010
The only PR tracker that honks at you when you're the bottleneck. Now shipping with 100% more goose noises!
1111

1212
Lives in your menubar like a tiny waterfowl of productivity shame, watching your GitHub PRs and making aggressive bird sounds when you're blocking someone's code from seeing the light of production.
1313

14-
![Review Goose Screenshot](media/screenshot.png)
14+
![reviewGOOSE Screenshot](media/screenshot.png)
1515

1616
## macOS Quick Start ⚡ (Get Honked At)
1717

1818
Homebrew users can get the party started quickly:
1919

2020
```shell
2121

22-
brew install --cask codeGROOVE-dev/homebrew-tap/review-goose
22+
brew install --cask codeGROOVE-dev/homebrew-tap/reviewGOOSE
2323
gh auth status || gh auth login
2424
```
2525

26-
Open `/Applications/Review Goose.app`. To be persistently annoyed every time you login, click the `Start at Login` menu item.
26+
Open `/Applications/reviewGOOSE.app`. To be persistently annoyed every time you login, click the `Start at Login` menu item.
2727

2828
## Homebrew on Linux Quick Start ⚡
2929

3030
On a progressive Linux distribution that includes Homebrew, such as [Bluefin](https://projectbluefin.io/)? You are just a cut and paste away from excitement:
3131

3232
```shell
33-
brew install codeGROOVE-dev/homebrew-tap/review-goose
33+
brew install codeGROOVE-dev/homebrew-tap/reviewGOOSE
3434
gh auth status || gh auth login
3535
```
3636

3737
## Linux/BSD/Windows Medium Start
3838

3939
1. Install the [GitHub CLI](https://cli.github.com/) and [Go](https://go.dev/dl/) via your platforms recommended methods
40-
2. Install Review Goose:
40+
2. Install reviewGOOSE:
4141

4242
```bash
43-
go install github.com/codeGROOVE-dev/goose/cmd/review-goose@latest
43+
go install github.com/codeGROOVE-dev/goose/cmd/reviewGOOSE@latest
4444
```
4545

4646
3. Copy goose from $HOME/go/bin to wherever you prefer
@@ -56,7 +56,7 @@ If you want more control over which repositories the goose can access - for exam
5656
You can then use the token like so:
5757

5858
```bash
59-
env GITHUB_TOKEN=your_token_here review-goose
59+
env GITHUB_TOKEN=your_token_here reviewGOOSE
6060
```
6161

6262
## Usage

0 commit comments

Comments
 (0)