neo4j-rake_tasks 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/neo4j/rake_tasks/neo4j_server.rake +4 -3
- data/lib/neo4j/rake_tasks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fcfe1262f22643429708bedbc6ec6ee631fa02b
|
4
|
+
data.tar.gz: cdfca43ec1ef833c2da6851db1ca58cddf941429
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d41421fd5b11b5a99ff301292d852fa203358278c2f62bef10a9f789105256467810d15183fb88792c781609aa1f1aaf3117f382c3c219bd041f41fc4eea6ab2
|
7
|
+
data.tar.gz: 033b062bc43c12e8d4e8137cb040d2c02168fb5c00a631d5512aa8d0ff2449ebfb17d8e46bf7394d441834fdf80ba037b2c05881c7e6ec45d4fe91dbe2ed16d5
|
@@ -5,6 +5,7 @@ require 'httparty'
|
|
5
5
|
require 'zip'
|
6
6
|
require 'httparty'
|
7
7
|
require 'pathname'
|
8
|
+
require 'colored'
|
8
9
|
require File.expand_path('../windows_server_manager', __FILE__)
|
9
10
|
require File.expand_path('../starnix_server_manager', __FILE__)
|
10
11
|
|
@@ -38,10 +39,10 @@ namespace :neo4j do
|
|
38
39
|
end
|
39
40
|
|
40
41
|
puts 'To start it type one of the following:'
|
41
|
-
puts ' rake neo4j:start'.
|
42
|
-
puts ' rake neo4j:start[ENVIRONMENT]'.
|
42
|
+
puts ' rake neo4j:start'.cyan
|
43
|
+
puts ' rake neo4j:start[ENVIRONMENT]'.cyan
|
43
44
|
puts 'To change the server port (default is 7474) type:'
|
44
|
-
puts ' neo4j:config[ENVIRONMENT,PORT]'.
|
45
|
+
puts ' neo4j:config[ENVIRONMENT,PORT]'.cyan
|
45
46
|
end
|
46
47
|
|
47
48
|
desc 'Start the Neo4j Server'
|