homebrew-core/Formula/geode.rb
Viktor Szakats 07d77e2244 geode: fix to use secure url
Closes #570.

Signed-off-by: Martin Afanasjew <martin@afanasjew.de>
2016-04-25 00:16:18 +02:00

28 lines
962 B
Ruby

class Geode < Formula
desc "In-memory Data Grid for fast transactional data processing"
homepage "https://geode.apache.org/"
url "https://www.apache.org/dyn/closer.cgi?path=incubator/geode/1.0.0-incubating.M2/apache-geode-1.0.0-incubating.M2.tar.gz"
version "1.0.0-incubating.M2"
sha256 "8447912c6d893008dd03917722d01abff4853861ce3f34c2bc95b60c51675cea"
bottle :unneeded
depends_on :java => "1.8+"
def install
rm_f "bin/gfsh.bat"
bash_completion.install "bin/gfsh-completion.bash" => "gfsh"
libexec.install Dir["*"]
(bin/"gfsh").write_env_script libexec/"bin/gfsh", Language::Java.java_home_env("1.8+")
end
test do
ENV.java_cache
begin
output = shell_output("#{bin}/gfsh start locator --dir #{testpath} --name=geode_locator_brew_test")
assert_match /Cluster configuration service is up and running/, output
ensure
quiet_system "pkill", "-9", "-f", "geode_locator_brew_test"
end
end
end