We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1295620 commit 48717cdCopy full SHA for 48717cd
1 file changed
Formula/mr-review.rb
@@ -0,0 +1,17 @@
1
+class MrReview < Formula
2
+ desc "Automated GitLab Merge Request review via Claude Code"
3
+ homepage "https://github.com/moduloTech/mr-review"
4
+ url "https://github.com/moduloTech/mr-review/archive/refs/tags/v0.1.0.tar.gz"
5
+ sha256 "d70d457a35b3e6586aef9d8702d595054edb1f4c318200dda881cf4d85e7d182"
6
+ license :cannot_represent
7
+
8
+ depends_on "ruby"
9
10
+ def install
11
+ bin.install "bin/mr-review"
12
+ end
13
14
+ test do
15
+ assert_match "usage", shell_output("#{bin}/mr-review --help", 2).downcase
16
17
+end
0 commit comments