19 lines
507 B
Ruby
19 lines
507 B
Ruby
class Betty < Formula
|
|
desc "English-like interface for the command-line"
|
|
homepage "https://github.com/pickhardt/betty"
|
|
url "https://github.com/pickhardt/betty/archive/v0.1.7.tar.gz"
|
|
sha256 "ed71e88a659725e0c475888df044c9de3ab1474ff483f0a3bb432949035e62d3"
|
|
revision 1
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
libexec.install "lib", "main.rb" => "betty"
|
|
bin.write_exec_script libexec/"betty"
|
|
end
|
|
|
|
test do
|
|
system bin/"betty", "what is your name"
|
|
system bin/"betty", "version"
|
|
end
|
|
end
|