Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7d8c236

Browse files
committed
Add new formula and deprecate others
1 parent 54dc0c7 commit 7d8c236

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

Formula/gh-all-repos.rb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require "language/node"
2+
3+
class GhAllRepos < Formula
4+
desc "Do anything on all repos that belong to a user/org"
5+
homepage "https://github.com/PythonCoderAS/gh-all-repos#readme"
6+
url "https://registry.npmjs.org/gh-all-repos/-/gh-all-repos-1.0.0.tgz"
7+
sha256 "97c1a634911d403d5932d6d546043461b02dfd56996787d5fb11eefe4c28a280"
8+
license "MIT"
9+
10+
livecheck do
11+
url :stable
12+
end
13+
14+
depends_on "node"
15+
16+
def install
17+
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
18+
bin.install_symlink Dir["#{libexec}/bin/*"]
19+
end
20+
21+
test do
22+
raise "Test not implemented."
23+
end
24+
end

Formula/github-list-all-prs.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ class GithubListAllPrs < Formula
77
sha256 "b04b352900489b57a072b7919c9e66daf08e292f16b66d7aa3f00b9de273cfef"
88
license "MIT"
99

10+
deprecate! date: "2022-08-17", because: :repo_archived
11+
1012
livecheck do
1113
url :stable
1214
end

Formula/github-watch-all-repos.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ class GithubWatchAllRepos < Formula
66
url "https://registry.npmjs.org/github-watch-all-repos/-/github-watch-all-repos-1.0.3.tgz"
77
sha256 "9d9e50506282633f1bf70dce6d5c693dde03d727243ddd0d9a58496298b05f7d"
88
license "MIT"
9+
10+
deprecate! date: "2022-08-17", because: :repo_archived
911

1012
livecheck do
1113
url :stable

0 commit comments

Comments
 (0)