27 lines
980 B
Ruby
27 lines
980 B
Ruby
require "language/node"
|
|
|
|
class CashCli < Formula
|
|
desc "Exchange Currency Rates using your terminal"
|
|
homepage "https://github.com/xxczaki/cash-cli"
|
|
url "https://registry.npmjs.org/cash-cli/-/cash-cli-2.0.8.tgz"
|
|
sha256 "d2c6b10d44a8b7aca356db64d5eb46a77ee754394c43fb0dd0772bdebc5a3167"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "98fee94b992b289ab84a08b9ea43e9587e8fa86e75c294a8c8b7717b20bdd9da" => :mojave
|
|
sha256 "3ac61cd27c3c40573c5bb1fa23dbdba5fec078d2db6d98ce3a43db6dd9f50f80" => :high_sierra
|
|
sha256 "37ce72e5a5f1af96b3f72cda091ddca5612ff9e0049583319e696d518123adcc" => :sierra
|
|
sha256 "a68ed7c9a690f7baa19e944644f88712731be10027b9526d535d507456628010" => :el_capitan
|
|
end
|
|
|
|
depends_on "node"
|
|
|
|
def install
|
|
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
|
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
|
end
|
|
|
|
test do
|
|
assert_match "Conversion of INR 100", shell_output("#{bin}/cash 100 INR USD GBP")
|
|
end
|
|
end
|