37 lines
1.5 KiB
Ruby
37 lines
1.5 KiB
Ruby
class Drafter < Formula
|
|
desc "Native C/C++ API Blueprint Parser"
|
|
homepage "https://apiblueprint.org/"
|
|
url "https://github.com/apiaryio/drafter/releases/download/v5.0.0/drafter-5.0.0.tar.gz"
|
|
sha256 "a35894a8f4de8b9ead216056b6a77c8c03a4156b6a6e7eae46d9e11d116a748e"
|
|
license "MIT"
|
|
head "https://github.com/apiaryio/drafter.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "e87c12f12a181902f5013f06c3ca34608c68de6216d90f3c2fa568d4f8a35a5e"
|
|
sha256 cellar: :any, big_sur: "74fcc290a59528b6be28739c6e4e9fac9660051430c74910f006cb000271a235"
|
|
sha256 cellar: :any, catalina: "29fa18ff148f6ebf454ed383181384bfb9aff1520e64072dfb386445bf8e52a3"
|
|
sha256 cellar: :any, mojave: "2a56e75e39f7b46eba355ae6163b645e161c4e458a4f127c37a948377143ac3e"
|
|
sha256 cellar: :any, high_sierra: "125fb907888693fd3d638a79d185483f44112f5bb64f098626aa17f00b25513d"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "327e24cfd4df62c3a6941735c16b8e63f70eb78bf14184a884c0ddb3fabc1432"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "drafter"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"api.apib").write <<~EOS
|
|
# Homebrew API [/brew]
|
|
|
|
## Retrieve All Formula [GET /Formula]
|
|
+ Response 200 (application/json)
|
|
+ Attributes (array)
|
|
EOS
|
|
assert_equal "OK.", shell_output("#{bin}/drafter -l api.apib 2>&1").strip
|
|
end
|
|
end
|