27 lines
749 B
Ruby
27 lines
749 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.10/easyengine.phar"
|
|
sha256 "0f4646a548b9e6e7f3f99c8c91eac4a3f56fd0aa4f39306f9fbb27179778c910"
|
|
|
|
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
|