homebrew-core/Formula/easyengine.rb
Riddhesh Sanghvi a65489a3a0
easyengine 4.0.9
Signed-off-by: Riddhesh Sanghvi <riddheshsanghvi96@gmail.com>

Closes #35592.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-01-01 14:57:49 +08:00

27 lines
748 B
Ruby

class Easyengine < Formula
desc "Command-line control panel to manage WordPress sites"
homepage "https://easyengine.io/"
url "https://github.com/EasyEngine/easyengine/releases/download/v4.0.9/easyengine.phar"
sha256 "c28b6407132ad3c6f69b359b6c22a61f08578b628e7319190ab2c377add049ab"
bottle :unneeded
depends_on "dnsmasq"
depends_on "php"
def install
bin.install "easyengine.phar" => "ee"
end
test do
system bin/"ee config set locale hi_IN"
output = shell_output("#{bin}/ee config get locale")
assert_match "hi_IN", output
output = shell_output("#{bin}/ee cli version")
assert_match "EE #{version}", output
output = shell_output("#{bin}/ee cli info")
assert_match "Darwin", output
end
end