19 lines
520 B
Ruby
19 lines
520 B
Ruby
class Ansiweather < Formula
|
|
desc "Weather in your terminal, with ANSI colors and Unicode symbols"
|
|
homepage "https://github.com/fcambus/ansiweather"
|
|
url "https://github.com/fcambus/ansiweather/archive/1.15.0.tar.gz"
|
|
sha256 "6cbfe4b12551a4e0eff2027dd558b73b8bbc315834d87255bc3d53d302f97c59"
|
|
head "https://github.com/fcambus/ansiweather.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "jq"
|
|
|
|
def install
|
|
bin.install "ansiweather"
|
|
end
|
|
|
|
test do
|
|
assert_match "Wind", shell_output("#{bin}/ansiweather")
|
|
end
|
|
end
|