28 lines
899 B
Ruby
28 lines
899 B
Ruby
class Oauth2l < Formula
|
|
desc "Simple CLI for interacting with Google oauth tokens"
|
|
homepage "https://github.com/google/oauth2l"
|
|
url "https://github.com/google/oauth2l/archive/v1.0.1.tar.gz"
|
|
sha256 "8207bb796727019b277f63c709fa4e399f2d40c223633d0df6c74dc1f3c9385f"
|
|
head "https://github.com/google/oauth2l.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "36b8c454a7d8934b7fa5ba65ee4132859ffd07452628c5869ae51beedf010f8c" => :catalina
|
|
sha256 "7983a17ea03db453152e87d1bf517aff15f4f3bced0bd483405e6e31dd6fd070" => :mojave
|
|
sha256 "d7d65ee29295d7740068d32b552327a8f3ceed0b3eb378f3d06afcfc03fcf796" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GO111MODULE"] = "on"
|
|
|
|
system "go", "build", "-o", "oauth2l"
|
|
bin.install "oauth2l"
|
|
end
|
|
|
|
test do
|
|
assert_match "Invalid Value",
|
|
shell_output("#{bin}/oauth2l info abcd1234")
|
|
end
|
|
end
|