30 lines
841 B
Ruby
30 lines
841 B
Ruby
class CypherShell < Formula
|
|
desc "Command-line shell where you can execute Cypher against Neo4j"
|
|
homepage "https://github.com/neo4j/cypher-shell"
|
|
url "https://github.com/neo4j/cypher-shell/releases/download/4.1.3/cypher-shell.zip"
|
|
sha256 "9e61b40e33e23847ac3493c1f381a34c92ab67c14b849fc472cc703e16c921e8"
|
|
license "GPL-3.0"
|
|
revision 1
|
|
version_scheme 1
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "openjdk@8"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
# Needs the jar, but cannot go in bin
|
|
share.install ["cypher-shell.jar"]
|
|
|
|
# Copy the bin
|
|
bin.install ["cypher-shell"]
|
|
bin.env_script_all_files(share, NEO4J_HOME: ENV["NEO4J_HOME"])
|
|
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
|