neo4j-rake_tasks 0.7.17 → 0.7.18
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 +20 -15
- 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: 3e3ef754c2d50585fe7418c550ee173967d9b570
|
4
|
+
data.tar.gz: 4a429587c5396c173691c657aaa26381a404038b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3bc51920c24b7e2fab1ba1755d7af98a2dbbfc2c2e0ed7ebef86a803b8e15a8a24422d649230e0483d888e0dac1047cb98498f4c20acaec637f5f68efc9b11a
|
7
|
+
data.tar.gz: 57fe9a72da7cc4d9363803cc144f687ff801607b2b50b9b859d1185fc7d81f0d0c0857725e35e3cf3e593c77cd2d275ded9c0426723871f532ae16da7f2fa5e1
|
@@ -6,7 +6,12 @@ require 'pathname'
|
|
6
6
|
require File.expand_path('../windows_server_manager', __FILE__)
|
7
7
|
require File.expand_path('../starnix_server_manager', __FILE__)
|
8
8
|
|
9
|
+
|
9
10
|
namespace :neo4j do
|
11
|
+
def clear_task_if_defined(task_name)
|
12
|
+
Rake::Task["neo4j:#{task_name}"].clear if Rake::Task.task_defined?("neo4j:#{task_name}")
|
13
|
+
end
|
14
|
+
|
10
15
|
def server_path(environment)
|
11
16
|
Pathname.new('db/neo4j').join(environment.to_s)
|
12
17
|
end
|
@@ -23,7 +28,7 @@ namespace :neo4j do
|
|
23
28
|
"\e[36m#{string}\e[0m"
|
24
29
|
end
|
25
30
|
|
26
|
-
|
31
|
+
clear_task_if_defined(:install)
|
27
32
|
desc 'Install Neo4j with auth disabled in v2.2+'
|
28
33
|
task :install, :edition, :environment do |_, args|
|
29
34
|
args.with_defaults(edition: 'community-latest', environment: 'development')
|
@@ -44,7 +49,7 @@ namespace :neo4j do
|
|
44
49
|
puts cyanize(' neo4j:config[ENVIRONMENT,PORT]')
|
45
50
|
end
|
46
51
|
|
47
|
-
|
52
|
+
clear_task_if_defined(:start)
|
48
53
|
desc 'Start the Neo4j Server'
|
49
54
|
task :start, :environment do |_, args|
|
50
55
|
args.with_defaults(environment: :development)
|
@@ -54,7 +59,7 @@ namespace :neo4j do
|
|
54
59
|
server_manager.start
|
55
60
|
end
|
56
61
|
|
57
|
-
|
62
|
+
clear_task_if_defined(:start_no_wait)
|
58
63
|
desc 'Start the Neo4j Server asynchronously'
|
59
64
|
task :start_no_wait, :environment do |_, args|
|
60
65
|
args.with_defaults(environment: :development)
|
@@ -64,7 +69,7 @@ namespace :neo4j do
|
|
64
69
|
server_manager.start(false)
|
65
70
|
end
|
66
71
|
|
67
|
-
|
72
|
+
clear_task_if_defined(:console)
|
68
73
|
desc 'Start the Neo4j Server in the foreground'
|
69
74
|
task :console, :environment do |_, args|
|
70
75
|
args.with_defaults(environment: :development)
|
@@ -74,7 +79,7 @@ namespace :neo4j do
|
|
74
79
|
server_manager.console
|
75
80
|
end
|
76
81
|
|
77
|
-
|
82
|
+
clear_task_if_defined(:shell)
|
78
83
|
desc 'Open Neo4j REPL Shell'
|
79
84
|
task :shell, :environment do |_, args|
|
80
85
|
args.with_defaults(environment: :development)
|
@@ -84,7 +89,7 @@ namespace :neo4j do
|
|
84
89
|
server_manager.shell
|
85
90
|
end
|
86
91
|
|
87
|
-
|
92
|
+
clear_task_if_defined(:config)
|
88
93
|
desc 'Configure Server, e.g. rake neo4j:config[development,8888]'
|
89
94
|
task :config, :environment, :port do |_, args|
|
90
95
|
args.with_defaults(environment: :development, port: 7474)
|
@@ -96,7 +101,7 @@ namespace :neo4j do
|
|
96
101
|
server_manager.config_port!(args[:port].to_i)
|
97
102
|
end
|
98
103
|
|
99
|
-
|
104
|
+
clear_task_if_defined(:stop)
|
100
105
|
desc 'Stop the Neo4j Server'
|
101
106
|
task :stop, :environment do |_, args|
|
102
107
|
args.with_defaults(environment: :development)
|
@@ -107,7 +112,7 @@ namespace :neo4j do
|
|
107
112
|
server_manager.stop
|
108
113
|
end
|
109
114
|
|
110
|
-
|
115
|
+
clear_task_if_defined(:info)
|
111
116
|
desc 'Get info for the Neo4j Server'
|
112
117
|
task :info, :environment do |_, args|
|
113
118
|
args.with_defaults(environment: :development)
|
@@ -118,7 +123,7 @@ namespace :neo4j do
|
|
118
123
|
server_manager.info
|
119
124
|
end
|
120
125
|
|
121
|
-
|
126
|
+
clear_task_if_defined(:indexes)
|
122
127
|
desc 'List indexes for the Neo4j server'
|
123
128
|
task :indexes, :environment do |_, args|
|
124
129
|
args.with_defaults(environment: :development)
|
@@ -129,7 +134,7 @@ namespace :neo4j do
|
|
129
134
|
server_manager.print_indexes
|
130
135
|
end
|
131
136
|
|
132
|
-
|
137
|
+
clear_task_if_defined(:constraints)
|
133
138
|
desc 'List constraints for the Neo4j server'
|
134
139
|
task :constraints, :environment do |_, args|
|
135
140
|
args.with_defaults(environment: :development)
|
@@ -140,7 +145,7 @@ namespace :neo4j do
|
|
140
145
|
server_manager.print_constraints
|
141
146
|
end
|
142
147
|
|
143
|
-
|
148
|
+
clear_task_if_defined(:restart)
|
144
149
|
desc 'Restart the Neo4j Server'
|
145
150
|
task :restart, :environment do |_, args|
|
146
151
|
args.with_defaults(environment: :development)
|
@@ -151,7 +156,7 @@ namespace :neo4j do
|
|
151
156
|
server_manager.restart
|
152
157
|
end
|
153
158
|
|
154
|
-
|
159
|
+
clear_task_if_defined(:reset_yes_i_am_sure)
|
155
160
|
desc 'Reset the Neo4j Server'
|
156
161
|
task :reset_yes_i_am_sure, :environment do |_, args|
|
157
162
|
args.with_defaults(environment: :development)
|
@@ -162,7 +167,7 @@ namespace :neo4j do
|
|
162
167
|
server_manager.reset
|
163
168
|
end
|
164
169
|
|
165
|
-
|
170
|
+
clear_task_if_defined(:change_password)
|
166
171
|
desc 'Neo4j 2.2+: Change connection password'
|
167
172
|
task :change_password do |_, _args|
|
168
173
|
# Maybe we should take the environment as an arg and
|
@@ -170,7 +175,7 @@ namespace :neo4j do
|
|
170
175
|
server_manager_class.change_password!
|
171
176
|
end
|
172
177
|
|
173
|
-
|
178
|
+
clear_task_if_defined(:enable_auth)
|
174
179
|
desc 'Neo4j 2.2+: Enable Auth'
|
175
180
|
task :enable_auth, :environment do |_, args|
|
176
181
|
args.with_defaults(environment: :development)
|
@@ -181,7 +186,7 @@ namespace :neo4j do
|
|
181
186
|
puts 'Neo4j basic authentication enabled. Restart server to apply.'
|
182
187
|
end
|
183
188
|
|
184
|
-
|
189
|
+
clear_task_if_defined(:disable_auth)
|
185
190
|
desc 'Neo4j 2.2+: Disable Auth'
|
186
191
|
task :disable_auth, :environment do |_, args|
|
187
192
|
args.with_defaults(environment: :development)
|