diff options
| author | Stefan Plantikow | 2013-12-11 20:44:47 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-12-11 19:28:04 -0800 |
| commit | a45220c83782a9a5e39f4d0c0a85ae14d2c18a5f (patch) | |
| tree | 3e6571d13eef86489bc9fb4b9096cbeb2ed757fa /Library/Formula | |
| parent | b32702538a60822f8dd03c430c462c95ffa34fc8 (diff) | |
| download | homebrew-a45220c83782a9a5e39f4d0c0a85ae14d2c18a5f.tar.bz2 | |
neo4j 2.0.0
Closes #25149.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/neo4j.rb | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/Library/Formula/neo4j.rb b/Library/Formula/neo4j.rb index 14426ed51..3c42d56bd 100644 --- a/Library/Formula/neo4j.rb +++ b/Library/Formula/neo4j.rb @@ -2,15 +2,9 @@ require 'formula' class Neo4j < Formula homepage 'http://neo4j.org' - url 'http://dist.neo4j.org/neo4j-community-1.9.5-unix.tar.gz' - sha1 '8d3569fdd4f3b396fd8101a7f9f92087cef3ac7f' - version '1.9.5' - - devel do - url 'http://dist.neo4j.org/neo4j-community-2.0.0-RC1-unix.tar.gz' - sha1 'c7c59df7c0363439244ad1c4e2e837db5ab07cb3' - version '2.0.0-RC1' - end + url 'http://dist.neo4j.org/neo4j-community-2.0.0-unix.tar.gz' + sha1 'b03a7e52ef7312d23ee290db57104100df70ecb3' + version '2.0.0' def install # Remove windows files @@ -40,8 +34,8 @@ class Neo4j < Formula 1. Start the server manually: neo4j start - 2. Open webadmin: - open http://localhost:7474/webadmin/ + 2. Open the neo4j browser: + open http://localhost:7474/browser/ 3. Start exploring the REST API: curl -v http://localhost:7474/db/data/ @@ -58,8 +52,8 @@ class Neo4j < Formula The manual can be found in: #{libexec}/doc/ - You may need to add JAVA_HOME to your shell profile: - export JAVA_HOME="$(/usr/libexec/java_home)" + You may need to set JAVA_HOME for Java 7 in your shell profile: + export JAVA_HOME="$(/usr/libexec/java_home -v 1.7)" EOS end |
