bit 0.2.6
restore from boneyard Closes #10689. Signed-off-by: JCount <JCount42@gmail.com>
This commit is contained in:
parent
05e344b8ac
commit
a6f92f9895
2 changed files with 19 additions and 1 deletions
19
Formula/bit.rb
Normal file
19
Formula/bit.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
require "language/node"
|
||||
class Bit < Formula
|
||||
desc "Distributed Code Component Manager"
|
||||
homepage "https://www.bitsrc.io"
|
||||
url "https://bitsrc.jfrog.io/bitsrc/bit-brew/stable/bit/0.2.6/bit-0.2.6-brew.tar.gz"
|
||||
sha256 "59b3ef677c99ddd2c07b28c15b90fc82d56019e30879c48b2fe099ebae8a7f4a"
|
||||
|
||||
depends_on "node"
|
||||
|
||||
def install
|
||||
system "npm", "install", "-g", *Language::Node.std_npm_install_args(libexec)
|
||||
bin.install_symlink Dir["#{libexec}/bin/*"]
|
||||
end
|
||||
|
||||
test do
|
||||
assert_equal "successfully initialized an empty bit scope.\n",
|
||||
shell_output("#{bin}/bit init --skip-update")
|
||||
end
|
||||
end
|
|
@ -22,7 +22,6 @@
|
|||
"bcwipe": "homebrew/boneyard",
|
||||
"bindfs": "homebrew/fuse",
|
||||
"bip": "homebrew/boneyard",
|
||||
"bit": "homebrew/boneyard",
|
||||
"box2d": "homebrew/boneyard",
|
||||
"bzr-explorer": "homebrew/boneyard",
|
||||
"cantera": "homebrew/science",
|
||||
|
|
Loading…
Reference in a new issue