neo4j-rake_tasks 0.7.18 → 0.7.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -1
- data/lib/neo4j/rake_tasks/server_manager.rb +1 -1
- data/lib/neo4j/rake_tasks/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c57a7e550ab397bfebcd33e009c2b6af9566976f
|
4
|
+
data.tar.gz: a23766540dee8738354bf50b5ffbfc5a837f7db1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b590abb3c64edbdea8191e17c13e15fa7c6646818b4b3538c7f1ae926e6bfbcd274f750f38a92a0ae309d7212f7a7a28e41b7605c95055a3f7ee36b5abbb82d
|
7
|
+
data.tar.gz: 8d87d2effaccee2c76e7dd0a5064fd8e7daedbf4ab6e6a8c0f09b76d3dc54e8b6da0914ad6fe044186ff02297c979a842b9e68d7f65e1ef6ec1617fc05d2229c
|
data/README.md
CHANGED
@@ -6,7 +6,11 @@ Rake tasks for managing a Neo4j database with your Ruby project
|
|
6
6
|
Rake Tasks
|
7
7
|
==========
|
8
8
|
|
9
|
-
The ``neo4j-rake_tasks`` gem
|
9
|
+
The ``neo4j-rake_tasks`` gem includes some rake tasks which make it easy to install and manage a Neo4j server in the same directory as your Ruby project.
|
10
|
+
|
11
|
+
WARNING: NOT FOR PRODUCTION USE! These rake tasks are intended to make installing and managing a Neo4j server in development and testing easier. Since authentication is disabled by default, this gem should not be used in production. If you need Neo4j in production, installation can be as easy as downloading, unzipping, and running the executable.
|
12
|
+
|
13
|
+
NOTE: The ``neo4j-rake_tasks`` gem used to be included automatically with the ``neo4j-core`` gem (which is in turn included automatically in the ``neo4j`` gem). This is no longer the case because not everybody needs these tasks.
|
10
14
|
|
11
15
|
## neo4j:install
|
12
16
|
|
@@ -283,7 +283,7 @@ module Neo4j
|
|
283
283
|
|
284
284
|
def server_version
|
285
285
|
kernel_jar_path = Dir.glob(@path.join('lib/neo4j-kernel-*.jar'))[0]
|
286
|
-
kernel_jar_path.match(/neo4j-kernel-([\-a-zA-Z\d\.]+)\.jar$/)[1]
|
286
|
+
kernel_jar_path.match(/neo4j-kernel[\-a-zA-Z]*-([\-a-zA-Z\d\.]+)\.jar$/)[1]
|
287
287
|
end
|
288
288
|
|
289
289
|
def neo4j_versions
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j-rake_tasks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Underwood
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|