33 lines
1.0 KiB
Ruby
33 lines
1.0 KiB
Ruby
class CypherShell < Formula
|
|
desc "Command-line shell where you can execute Cypher against Neo4j"
|
|
homepage "https://neo4j.com"
|
|
url "https://dist.neo4j.org/cypher-shell/cypher-shell-4.4.0.zip"
|
|
sha256 "cc65a950e7a749f8718cabc940d2bdfb2a5cfa817bab4b0539ce023242ad2648"
|
|
license "GPL-3.0-only"
|
|
version_scheme 1
|
|
|
|
livecheck do
|
|
url "https://neo4j.com/download-center/"
|
|
regex(/href=.*?cypher-shell[._-]v?(\d+(?:\.\d+)+)\.zip/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "d8d6ebf3954dd404e7262f839f4770919b9444ab7371d12f53dcbaeaa99983dd"
|
|
end
|
|
|
|
depends_on "openjdk@11"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
# Needs the jar, but cannot go in bin
|
|
libexec.install Dir["cypher-shell{,.jar}"]
|
|
(bin/"cypher-shell").write_env_script libexec/"cypher-shell", Language::Java.overridable_java_home_env("11")
|
|
end
|
|
|
|
test do
|
|
# The connection will fail and print the name of the host
|
|
assert_match "doesntexist", shell_output("#{bin}/cypher-shell -a bolt://doesntexist 2>&1", 1)
|
|
end
|
|
end
|