engineyard-serverside 1.4.7.pre → 1.4.8.nodestack
Sign up to get free protection for your applications and to get access to all the features.
@@ -119,7 +119,7 @@ module EY
|
|
119
119
|
end
|
120
120
|
|
121
121
|
def framework_envs
|
122
|
-
"RAILS_ENV=#{environment} RACK_ENV=#{environment} MERB_ENV=#{environment}"
|
122
|
+
"RAILS_ENV=#{environment} RACK_ENV=#{environment} NODE_ENV=#{environment} MERB_ENV=#{environment}"
|
123
123
|
end
|
124
124
|
|
125
125
|
def current_path
|
@@ -166,6 +166,15 @@ module EY
|
|
166
166
|
|
167
167
|
run "mkdir -p #{bundled_gems_path} && ruby -v > #{ruby_version_file} && uname -m > #{system_version_file}"
|
168
168
|
end
|
169
|
+
|
170
|
+
if File.exist?("#{c.release_path}/package.json")
|
171
|
+
unless run("which npm")
|
172
|
+
error "~> package.json detected, BUT npm not installed"
|
173
|
+
else
|
174
|
+
info "~> package.json detected, installing npm packages"
|
175
|
+
run "cd #{c.release_path} && npm install"
|
176
|
+
end
|
177
|
+
end
|
169
178
|
end
|
170
179
|
|
171
180
|
# task
|
data/spec/real_deploy_spec.rb
CHANGED
@@ -46,6 +46,21 @@ DEPENDENCIES
|
|
46
46
|
rake
|
47
47
|
EOF
|
48
48
|
end
|
49
|
+
|
50
|
+
File.open('package.json', 'w') do |f|
|
51
|
+
f.write <<-EOF
|
52
|
+
{
|
53
|
+
"name": "application-name"
|
54
|
+
, "version": "0.0.1"
|
55
|
+
, "private": true
|
56
|
+
, "dependencies": {
|
57
|
+
"express": "2.3.12"
|
58
|
+
, "jade": ">= 0.0.1"
|
59
|
+
}
|
60
|
+
}
|
61
|
+
EOF
|
62
|
+
end
|
63
|
+
|
49
64
|
end
|
50
65
|
end
|
51
66
|
|
@@ -137,8 +152,16 @@ describe "deploying an application" do
|
|
137
152
|
clear_bundle_cmd = @deployer.commands.grep(/rm -Rf \S+\/bundled_gems/).first
|
138
153
|
clear_bundle_cmd.should_not be_nil
|
139
154
|
end
|
155
|
+
|
156
|
+
it "creates binstubs somewhere out of the way" do
|
157
|
+
File.exist?(File.join(@deploy_dir, 'current', 'ey_bundler_binstubs', 'rake')).should be_true
|
158
|
+
end
|
140
159
|
end
|
141
160
|
|
161
|
+
it "runs 'npm install'" do
|
162
|
+
bundle_install_cmd = @deployer.commands.grep(/npm install/).first
|
163
|
+
bundle_install_cmd.should_not be_nil
|
164
|
+
end
|
142
165
|
it "generates a database.yml file" do
|
143
166
|
File.exist?(File.join(@deploy_dir, 'current', 'config', 'database.yml')).should be_true
|
144
167
|
end
|
metadata
CHANGED
@@ -1,312 +1,298 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: engineyard-serverside
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 961916008
|
5
4
|
prerelease: 6
|
6
|
-
|
7
|
-
- 1
|
8
|
-
- 4
|
9
|
-
- 7
|
10
|
-
- pre
|
11
|
-
version: 1.4.7.pre
|
5
|
+
version: 1.4.8.nodestack
|
12
6
|
platform: ruby
|
13
7
|
authors:
|
14
|
-
- EY Cloud Team
|
8
|
+
- EY Cloud Team
|
15
9
|
autorequire:
|
16
10
|
bindir: bin
|
17
11
|
cert_chain: []
|
18
12
|
|
19
|
-
date: 2011-09-
|
13
|
+
date: 2011-09-08 00:00:00 +02:00
|
14
|
+
default_executable: engineyard-serverside
|
20
15
|
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
hash: 27
|
44
|
-
segments:
|
45
|
-
- 1
|
46
|
-
- 3
|
47
|
-
- 0
|
48
|
-
version: 1.3.0
|
49
|
-
version_requirements: *id002
|
50
|
-
name: rspec
|
51
|
-
type: :development
|
52
|
-
prerelease: false
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: rake
|
18
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.8.7
|
24
|
+
requirement: *id001
|
25
|
+
prerelease: false
|
26
|
+
type: :development
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rspec
|
29
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - "="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.3.0
|
35
|
+
requirement: *id002
|
36
|
+
prerelease: false
|
37
|
+
type: :development
|
53
38
|
description:
|
54
39
|
email: cloud@engineyard.com
|
55
40
|
executables:
|
56
|
-
- engineyard-serverside
|
41
|
+
- engineyard-serverside
|
57
42
|
extensions: []
|
58
43
|
|
59
44
|
extra_rdoc_files: []
|
60
45
|
|
61
46
|
files:
|
62
|
-
- bin/engineyard-serverside
|
63
|
-
- lib/
|
64
|
-
- lib/core-ext/
|
65
|
-
- lib/
|
66
|
-
- lib/engineyard-serverside/
|
67
|
-
- lib/engineyard-serverside/
|
68
|
-
- lib/engineyard-serverside/
|
69
|
-
- lib/engineyard-serverside/
|
70
|
-
- lib/engineyard-serverside/
|
71
|
-
- lib/engineyard-serverside/
|
72
|
-
- lib/engineyard-serverside/
|
73
|
-
- lib/engineyard-serverside/
|
74
|
-
- lib/engineyard-serverside/
|
75
|
-
- lib/engineyard-serverside/
|
76
|
-
- lib/engineyard-serverside/task.rb
|
77
|
-
- lib/engineyard-serverside/version.rb
|
78
|
-
- lib/engineyard-serverside.rb
|
79
|
-
- lib/vendor/
|
80
|
-
- lib/vendor/dataflow/dataflow
|
81
|
-
- lib/vendor/dataflow/
|
82
|
-
- lib/vendor/dataflow/
|
83
|
-
- lib/vendor/dataflow/
|
84
|
-
- lib/vendor/dataflow/
|
85
|
-
- lib/vendor/dataflow/
|
86
|
-
- lib/vendor/dataflow/
|
87
|
-
- lib/vendor/dataflow/
|
88
|
-
- lib/vendor/dataflow/
|
89
|
-
- lib/vendor/dataflow/examples/
|
90
|
-
- lib/vendor/dataflow/examples/
|
91
|
-
- lib/vendor/dataflow/examples/
|
92
|
-
- lib/vendor/dataflow/examples/
|
93
|
-
- lib/vendor/dataflow/examples/
|
94
|
-
- lib/vendor/dataflow/examples/
|
95
|
-
- lib/vendor/dataflow/examples/
|
96
|
-
- lib/vendor/dataflow/examples/
|
97
|
-
- lib/vendor/dataflow/
|
98
|
-
- lib/vendor/dataflow/
|
99
|
-
- lib/vendor/dataflow/
|
100
|
-
- lib/vendor/dataflow/
|
101
|
-
- lib/vendor/dataflow/
|
102
|
-
- lib/vendor/dataflow/spec/
|
103
|
-
- lib/vendor/dataflow/spec/
|
104
|
-
- lib/vendor/dataflow/spec/
|
105
|
-
- lib/vendor/dataflow/spec/
|
106
|
-
- lib/vendor/dataflow/spec/
|
107
|
-
- lib/vendor/dataflow/spec/
|
108
|
-
- lib/vendor/dataflow/spec/
|
109
|
-
- lib/vendor/dataflow/spec/
|
110
|
-
- lib/vendor/dataflow/spec/
|
111
|
-
- lib/vendor/dataflow/spec/
|
112
|
-
- lib/vendor/dataflow/spec/
|
113
|
-
- lib/vendor/dataflow/spec/
|
114
|
-
- lib/vendor/dataflow/spec/
|
115
|
-
- lib/vendor/
|
116
|
-
- lib/vendor/escape/
|
117
|
-
- lib/vendor/escape/
|
118
|
-
- lib/vendor/
|
119
|
-
- lib/vendor/json_pure/
|
120
|
-
- lib/vendor/json_pure/
|
121
|
-
- lib/vendor/json_pure/
|
122
|
-
- lib/vendor/json_pure/
|
123
|
-
- lib/vendor/json_pure/
|
124
|
-
- lib/vendor/json_pure/
|
125
|
-
- lib/vendor/json_pure/
|
126
|
-
- lib/vendor/json_pure/
|
127
|
-
- lib/vendor/json_pure/benchmarks/
|
128
|
-
- lib/vendor/json_pure/benchmarks/
|
129
|
-
- lib/vendor/json_pure/benchmarks/
|
130
|
-
- lib/vendor/json_pure/benchmarks/
|
131
|
-
- lib/vendor/json_pure/benchmarks/
|
132
|
-
- lib/vendor/json_pure/benchmarks/
|
133
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
134
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
135
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
136
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
137
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
138
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
139
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
140
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
141
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
142
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
143
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
144
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
145
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
146
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
147
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
148
|
-
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/
|
149
|
-
- lib/vendor/json_pure/benchmarks/
|
150
|
-
- lib/vendor/json_pure/benchmarks/
|
151
|
-
- lib/vendor/json_pure/benchmarks/
|
152
|
-
- lib/vendor/json_pure/benchmarks/
|
153
|
-
- lib/vendor/json_pure/benchmarks/
|
154
|
-
- lib/vendor/json_pure/benchmarks/
|
155
|
-
- lib/vendor/json_pure/
|
156
|
-
- lib/vendor/json_pure/
|
157
|
-
- lib/vendor/json_pure/
|
158
|
-
- lib/vendor/json_pure/
|
159
|
-
- lib/vendor/json_pure/data/
|
160
|
-
- lib/vendor/json_pure/data/
|
161
|
-
- lib/vendor/json_pure/data/
|
162
|
-
- lib/vendor/json_pure/
|
163
|
-
- lib/vendor/json_pure/
|
164
|
-
- lib/vendor/json_pure/
|
165
|
-
- lib/vendor/json_pure/
|
166
|
-
- lib/vendor/json_pure/
|
167
|
-
- lib/vendor/json_pure/
|
168
|
-
- lib/vendor/json_pure/
|
169
|
-
- lib/vendor/json_pure/
|
170
|
-
- lib/vendor/json_pure/
|
171
|
-
- lib/vendor/json_pure/
|
172
|
-
- lib/vendor/json_pure/
|
173
|
-
- lib/vendor/json_pure/
|
174
|
-
- lib/vendor/json_pure/
|
175
|
-
- lib/vendor/json_pure/
|
176
|
-
- lib/vendor/json_pure/lib/json
|
177
|
-
- lib/vendor/json_pure/lib/json/
|
178
|
-
- lib/vendor/json_pure/lib/json/
|
179
|
-
- lib/vendor/json_pure/lib/json/
|
180
|
-
- lib/vendor/json_pure/lib/json/
|
181
|
-
- lib/vendor/json_pure/lib/json/
|
182
|
-
- lib/vendor/json_pure/lib/json/
|
183
|
-
- lib/vendor/json_pure/lib/json/
|
184
|
-
- lib/vendor/json_pure/lib/json/
|
185
|
-
- lib/vendor/json_pure/lib/json/
|
186
|
-
- lib/vendor/json_pure/lib/json/
|
187
|
-
- lib/vendor/json_pure/lib/json/
|
188
|
-
- lib/vendor/json_pure/lib/json/
|
189
|
-
- lib/vendor/json_pure/lib/json.
|
190
|
-
- lib/vendor/json_pure/
|
191
|
-
- lib/vendor/json_pure/
|
192
|
-
- lib/vendor/json_pure/
|
193
|
-
- lib/vendor/json_pure/
|
194
|
-
- lib/vendor/json_pure/
|
195
|
-
- lib/vendor/json_pure/tests/
|
196
|
-
- lib/vendor/json_pure/tests/
|
197
|
-
- lib/vendor/json_pure/tests/
|
198
|
-
- lib/vendor/json_pure/tests/
|
199
|
-
- lib/vendor/json_pure/tests/
|
200
|
-
- lib/vendor/json_pure/tests/
|
201
|
-
- lib/vendor/json_pure/tests/
|
202
|
-
- lib/vendor/json_pure/tests/fixtures/
|
203
|
-
- lib/vendor/json_pure/tests/fixtures/
|
204
|
-
- lib/vendor/json_pure/tests/fixtures/
|
205
|
-
- lib/vendor/json_pure/tests/fixtures/
|
206
|
-
- lib/vendor/json_pure/tests/fixtures/
|
207
|
-
- lib/vendor/json_pure/tests/fixtures/
|
208
|
-
- lib/vendor/json_pure/tests/fixtures/
|
209
|
-
- lib/vendor/json_pure/tests/fixtures/
|
210
|
-
- lib/vendor/json_pure/tests/fixtures/
|
211
|
-
- lib/vendor/json_pure/tests/fixtures/
|
212
|
-
- lib/vendor/json_pure/tests/fixtures/
|
213
|
-
- lib/vendor/json_pure/tests/fixtures/
|
214
|
-
- lib/vendor/json_pure/tests/fixtures/
|
215
|
-
- lib/vendor/json_pure/tests/fixtures/
|
216
|
-
- lib/vendor/json_pure/tests/fixtures/
|
217
|
-
- lib/vendor/json_pure/tests/fixtures/
|
218
|
-
- lib/vendor/json_pure/tests/fixtures/
|
219
|
-
- lib/vendor/json_pure/tests/fixtures/
|
220
|
-
- lib/vendor/json_pure/tests/fixtures/
|
221
|
-
- lib/vendor/json_pure/tests/fixtures/
|
222
|
-
- lib/vendor/json_pure/tests/fixtures/
|
223
|
-
- lib/vendor/json_pure/tests/
|
224
|
-
- lib/vendor/json_pure/tests/
|
225
|
-
- lib/vendor/json_pure/tests/
|
226
|
-
- lib/vendor/json_pure/tests/
|
227
|
-
- lib/vendor/json_pure/tests/
|
228
|
-
- lib/vendor/json_pure/tests/
|
229
|
-
- lib/vendor/json_pure/tests/
|
230
|
-
- lib/vendor/json_pure/
|
231
|
-
- lib/vendor/json_pure/
|
232
|
-
- lib/vendor/json_pure/
|
233
|
-
- lib/vendor/json_pure/
|
234
|
-
- lib/vendor/
|
235
|
-
- lib/vendor/
|
236
|
-
- lib/vendor/thor/
|
237
|
-
- lib/vendor/thor/
|
238
|
-
- lib/vendor/thor/
|
239
|
-
- lib/vendor/thor/
|
240
|
-
- lib/vendor/thor/
|
241
|
-
- lib/vendor/thor/
|
242
|
-
- lib/vendor/thor/
|
243
|
-
- lib/vendor/thor/lib/thor
|
244
|
-
- lib/vendor/thor/lib/thor/actions.rb
|
245
|
-
- lib/vendor/thor/lib/thor/base.rb
|
246
|
-
- lib/vendor/thor/lib/thor/
|
247
|
-
- lib/vendor/thor/lib/thor/
|
248
|
-
- lib/vendor/thor/lib/thor/
|
249
|
-
- lib/vendor/thor/lib/thor/
|
250
|
-
- lib/vendor/thor/lib/thor/
|
251
|
-
- lib/vendor/thor/lib/thor/
|
252
|
-
- lib/vendor/thor/lib/thor/
|
253
|
-
- lib/vendor/thor/lib/thor/
|
254
|
-
- lib/vendor/thor/lib/thor/
|
255
|
-
- lib/vendor/thor/lib/thor/
|
256
|
-
- lib/vendor/thor/lib/thor/
|
257
|
-
- lib/vendor/thor/lib/thor/
|
258
|
-
- lib/vendor/thor/lib/thor/
|
259
|
-
- lib/vendor/thor/lib/thor/
|
260
|
-
- lib/vendor/thor/lib/thor/
|
261
|
-
- lib/vendor/thor/lib/thor/
|
262
|
-
- lib/vendor/thor/lib/thor/
|
263
|
-
- lib/vendor/thor/lib/thor/
|
264
|
-
- lib/vendor/thor/lib/thor/
|
265
|
-
- lib/vendor/thor/lib/thor.rb
|
266
|
-
- lib/vendor/thor/
|
267
|
-
- lib/vendor/thor/
|
268
|
-
- lib/vendor/thor/thor.
|
269
|
-
- lib/vendor/thor/
|
270
|
-
- LICENSE
|
271
|
-
- spec/custom_deploy_spec.rb
|
272
|
-
- spec/deploy_hook_spec.rb
|
273
|
-
- spec/deprecation_spec.rb
|
274
|
-
- spec/
|
275
|
-
- spec/
|
276
|
-
- spec/
|
277
|
-
- spec/
|
278
|
-
- spec/
|
279
|
-
- spec/
|
280
|
-
- spec/
|
281
|
-
- spec/fixtures/
|
282
|
-
- spec/fixtures/
|
283
|
-
- spec/fixtures/
|
284
|
-
- spec/fixtures/gemfiles/
|
285
|
-
- spec/fixtures/gemfiles/
|
286
|
-
- spec/fixtures/gemfiles/
|
287
|
-
- spec/fixtures/gemfiles/
|
288
|
-
- spec/fixtures/gemfiles/
|
289
|
-
- spec/fixtures/
|
290
|
-
- spec/fixtures/
|
291
|
-
- spec/fixtures/
|
292
|
-
- spec/fixtures/
|
293
|
-
- spec/
|
294
|
-
- spec/
|
295
|
-
- spec/
|
296
|
-
- spec/
|
297
|
-
- spec/
|
298
|
-
- spec/
|
299
|
-
- spec/
|
300
|
-
- spec/
|
301
|
-
- spec/support/lockfiles/0.9-no-bundler
|
302
|
-
- spec/support/lockfiles/0.9-with-bundler
|
303
|
-
- spec/support/lockfiles/1.0-no-bundler
|
304
|
-
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
305
|
-
- spec/support/lockfiles/1.0.6-no-bundler
|
306
|
-
- spec/support/lockfiles/1.0.6-with-any-bundler
|
307
|
-
- spec/support/lockfiles/1.0.6-with-bundler
|
308
|
-
- spec/support/lockfiles/evil-yaml
|
309
|
-
- spec/support/lockfiles/not-a-lockfile
|
47
|
+
- bin/engineyard-serverside
|
48
|
+
- lib/engineyard-serverside.rb
|
49
|
+
- lib/core-ext/README.md
|
50
|
+
- lib/core-ext/string.rb
|
51
|
+
- lib/engineyard-serverside/bundle_installer.rb
|
52
|
+
- lib/engineyard-serverside/cli.rb
|
53
|
+
- lib/engineyard-serverside/configuration.rb
|
54
|
+
- lib/engineyard-serverside/default_maintenance_page.html
|
55
|
+
- lib/engineyard-serverside/deploy.rb
|
56
|
+
- lib/engineyard-serverside/deploy_hook.rb
|
57
|
+
- lib/engineyard-serverside/deprecation.rb
|
58
|
+
- lib/engineyard-serverside/lockfile_parser.rb
|
59
|
+
- lib/engineyard-serverside/logged_output.rb
|
60
|
+
- lib/engineyard-serverside/server.rb
|
61
|
+
- lib/engineyard-serverside/task.rb
|
62
|
+
- lib/engineyard-serverside/version.rb
|
63
|
+
- lib/engineyard-serverside/strategies/git.rb
|
64
|
+
- lib/vendor/ruby_1.8.6_openssl.patch
|
65
|
+
- lib/vendor/dataflow/dataflow.rb
|
66
|
+
- lib/vendor/dataflow/HISTORY
|
67
|
+
- lib/vendor/dataflow/LICENSE
|
68
|
+
- lib/vendor/dataflow/Rakefile
|
69
|
+
- lib/vendor/dataflow/README.textile
|
70
|
+
- lib/vendor/dataflow/dataflow/actor.rb
|
71
|
+
- lib/vendor/dataflow/dataflow/equality.rb
|
72
|
+
- lib/vendor/dataflow/dataflow/future_queue.rb
|
73
|
+
- lib/vendor/dataflow/dataflow/port.rb
|
74
|
+
- lib/vendor/dataflow/examples/barrier.rb
|
75
|
+
- lib/vendor/dataflow/examples/data_driven.rb
|
76
|
+
- lib/vendor/dataflow/examples/dataflow_http_gets.rb
|
77
|
+
- lib/vendor/dataflow/examples/flow.rb
|
78
|
+
- lib/vendor/dataflow/examples/future_http_gets.rb
|
79
|
+
- lib/vendor/dataflow/examples/future_queue.rb
|
80
|
+
- lib/vendor/dataflow/examples/instance_variables.rb
|
81
|
+
- lib/vendor/dataflow/examples/laziness.rb
|
82
|
+
- lib/vendor/dataflow/examples/local_variables.rb
|
83
|
+
- lib/vendor/dataflow/examples/messages.rb
|
84
|
+
- lib/vendor/dataflow/examples/port_http_gets.rb
|
85
|
+
- lib/vendor/dataflow/examples/port_send.rb
|
86
|
+
- lib/vendor/dataflow/examples/ring.rb
|
87
|
+
- lib/vendor/dataflow/spec/actor_spec.rb
|
88
|
+
- lib/vendor/dataflow/spec/anonymous_variables_spec.rb
|
89
|
+
- lib/vendor/dataflow/spec/barrier_spec.rb
|
90
|
+
- lib/vendor/dataflow/spec/by_need_spec.rb
|
91
|
+
- lib/vendor/dataflow/spec/dataflow_spec.rb
|
92
|
+
- lib/vendor/dataflow/spec/equality_spec.rb
|
93
|
+
- lib/vendor/dataflow/spec/flow_spec.rb
|
94
|
+
- lib/vendor/dataflow/spec/forker_spec.rb
|
95
|
+
- lib/vendor/dataflow/spec/future_queue_spec.rb
|
96
|
+
- lib/vendor/dataflow/spec/inspect_spec.rb
|
97
|
+
- lib/vendor/dataflow/spec/need_later_spec.rb
|
98
|
+
- lib/vendor/dataflow/spec/port_spec.rb
|
99
|
+
- lib/vendor/dataflow/spec/spec.opts
|
100
|
+
- lib/vendor/dataflow/spec/spec_helper.rb
|
101
|
+
- lib/vendor/escape/Readme
|
102
|
+
- lib/vendor/escape/doc_include/template/qualitysmith.rb
|
103
|
+
- lib/vendor/escape/lib/escape.rb
|
104
|
+
- lib/vendor/json_pure/CHANGES
|
105
|
+
- lib/vendor/json_pure/COPYING
|
106
|
+
- lib/vendor/json_pure/GPL
|
107
|
+
- lib/vendor/json_pure/install.rb
|
108
|
+
- lib/vendor/json_pure/Rakefile
|
109
|
+
- lib/vendor/json_pure/README
|
110
|
+
- lib/vendor/json_pure/TODO
|
111
|
+
- lib/vendor/json_pure/VERSION
|
112
|
+
- lib/vendor/json_pure/benchmarks/generator2_benchmark.rb
|
113
|
+
- lib/vendor/json_pure/benchmarks/generator_benchmark.rb
|
114
|
+
- lib/vendor/json_pure/benchmarks/ohai.json
|
115
|
+
- lib/vendor/json_pure/benchmarks/ohai.ruby
|
116
|
+
- lib/vendor/json_pure/benchmarks/parser2_benchmark.rb
|
117
|
+
- lib/vendor/json_pure/benchmarks/parser_benchmark.rb
|
118
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkComparison.log
|
119
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast-autocorrelation.dat
|
120
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_fast.dat
|
121
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty-autocorrelation.dat
|
122
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_pretty.dat
|
123
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe-autocorrelation.dat
|
124
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt#generator_safe.dat
|
125
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkExt.log
|
126
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast-autocorrelation.dat
|
127
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_fast.dat
|
128
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty-autocorrelation.dat
|
129
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_pretty.dat
|
130
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe-autocorrelation.dat
|
131
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure#generator_safe.dat
|
132
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkPure.log
|
133
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator-autocorrelation.dat
|
134
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails#generator.dat
|
135
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/GeneratorBenchmarkRails.log
|
136
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkComparison.log
|
137
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser-autocorrelation.dat
|
138
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt#parser.dat
|
139
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkExt.log
|
140
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser-autocorrelation.dat
|
141
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure#parser.dat
|
142
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkPure.log
|
143
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser-autocorrelation.dat
|
144
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails#parser.dat
|
145
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkRails.log
|
146
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser-autocorrelation.dat
|
147
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML#parser.dat
|
148
|
+
- lib/vendor/json_pure/benchmarks/data-p4-3GHz-ruby18/ParserBenchmarkYAML.log
|
149
|
+
- lib/vendor/json_pure/bin/edit_json.rb
|
150
|
+
- lib/vendor/json_pure/bin/prettify_json.rb
|
151
|
+
- lib/vendor/json_pure/data/example.json
|
152
|
+
- lib/vendor/json_pure/data/index.html
|
153
|
+
- lib/vendor/json_pure/data/prototype.js
|
154
|
+
- lib/vendor/json_pure/ext/json/ext/generator/extconf.rb
|
155
|
+
- lib/vendor/json_pure/ext/json/ext/generator/generator.c
|
156
|
+
- lib/vendor/json_pure/ext/json/ext/generator/generator.h
|
157
|
+
- lib/vendor/json_pure/ext/json/ext/parser/extconf.rb
|
158
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.c
|
159
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.h
|
160
|
+
- lib/vendor/json_pure/ext/json/ext/parser/parser.rl
|
161
|
+
- lib/vendor/json_pure/lib/json.rb
|
162
|
+
- lib/vendor/json_pure/lib/json/Array.xpm
|
163
|
+
- lib/vendor/json_pure/lib/json/common.rb
|
164
|
+
- lib/vendor/json_pure/lib/json/editor.rb
|
165
|
+
- lib/vendor/json_pure/lib/json/ext.rb
|
166
|
+
- lib/vendor/json_pure/lib/json/FalseClass.xpm
|
167
|
+
- lib/vendor/json_pure/lib/json/Hash.xpm
|
168
|
+
- lib/vendor/json_pure/lib/json/json.xpm
|
169
|
+
- lib/vendor/json_pure/lib/json/Key.xpm
|
170
|
+
- lib/vendor/json_pure/lib/json/NilClass.xpm
|
171
|
+
- lib/vendor/json_pure/lib/json/Numeric.xpm
|
172
|
+
- lib/vendor/json_pure/lib/json/pure.rb
|
173
|
+
- lib/vendor/json_pure/lib/json/String.xpm
|
174
|
+
- lib/vendor/json_pure/lib/json/TrueClass.xpm
|
175
|
+
- lib/vendor/json_pure/lib/json/version.rb
|
176
|
+
- lib/vendor/json_pure/lib/json/add/core.rb
|
177
|
+
- lib/vendor/json_pure/lib/json/add/rails.rb
|
178
|
+
- lib/vendor/json_pure/lib/json/pure/generator.rb
|
179
|
+
- lib/vendor/json_pure/lib/json/pure/parser.rb
|
180
|
+
- lib/vendor/json_pure/tests/test_json.rb
|
181
|
+
- lib/vendor/json_pure/tests/test_json_addition.rb
|
182
|
+
- lib/vendor/json_pure/tests/test_json_encoding.rb
|
183
|
+
- lib/vendor/json_pure/tests/test_json_fixtures.rb
|
184
|
+
- lib/vendor/json_pure/tests/test_json_generate.rb
|
185
|
+
- lib/vendor/json_pure/tests/test_json_rails.rb
|
186
|
+
- lib/vendor/json_pure/tests/test_json_unicode.rb
|
187
|
+
- lib/vendor/json_pure/tests/fixtures/fail1.json
|
188
|
+
- lib/vendor/json_pure/tests/fixtures/fail10.json
|
189
|
+
- lib/vendor/json_pure/tests/fixtures/fail11.json
|
190
|
+
- lib/vendor/json_pure/tests/fixtures/fail12.json
|
191
|
+
- lib/vendor/json_pure/tests/fixtures/fail13.json
|
192
|
+
- lib/vendor/json_pure/tests/fixtures/fail14.json
|
193
|
+
- lib/vendor/json_pure/tests/fixtures/fail18.json
|
194
|
+
- lib/vendor/json_pure/tests/fixtures/fail19.json
|
195
|
+
- lib/vendor/json_pure/tests/fixtures/fail2.json
|
196
|
+
- lib/vendor/json_pure/tests/fixtures/fail20.json
|
197
|
+
- lib/vendor/json_pure/tests/fixtures/fail21.json
|
198
|
+
- lib/vendor/json_pure/tests/fixtures/fail22.json
|
199
|
+
- lib/vendor/json_pure/tests/fixtures/fail23.json
|
200
|
+
- lib/vendor/json_pure/tests/fixtures/fail24.json
|
201
|
+
- lib/vendor/json_pure/tests/fixtures/fail25.json
|
202
|
+
- lib/vendor/json_pure/tests/fixtures/fail27.json
|
203
|
+
- lib/vendor/json_pure/tests/fixtures/fail28.json
|
204
|
+
- lib/vendor/json_pure/tests/fixtures/fail3.json
|
205
|
+
- lib/vendor/json_pure/tests/fixtures/fail4.json
|
206
|
+
- lib/vendor/json_pure/tests/fixtures/fail5.json
|
207
|
+
- lib/vendor/json_pure/tests/fixtures/fail6.json
|
208
|
+
- lib/vendor/json_pure/tests/fixtures/fail7.json
|
209
|
+
- lib/vendor/json_pure/tests/fixtures/fail8.json
|
210
|
+
- lib/vendor/json_pure/tests/fixtures/fail9.json
|
211
|
+
- lib/vendor/json_pure/tests/fixtures/pass1.json
|
212
|
+
- lib/vendor/json_pure/tests/fixtures/pass15.json
|
213
|
+
- lib/vendor/json_pure/tests/fixtures/pass16.json
|
214
|
+
- lib/vendor/json_pure/tests/fixtures/pass17.json
|
215
|
+
- lib/vendor/json_pure/tests/fixtures/pass2.json
|
216
|
+
- lib/vendor/json_pure/tests/fixtures/pass26.json
|
217
|
+
- lib/vendor/json_pure/tests/fixtures/pass3.json
|
218
|
+
- lib/vendor/json_pure/tools/fuzz.rb
|
219
|
+
- lib/vendor/json_pure/tools/server.rb
|
220
|
+
- lib/vendor/open4/lib/open4.rb
|
221
|
+
- lib/vendor/thor/CHANGELOG.rdoc
|
222
|
+
- lib/vendor/thor/LICENSE
|
223
|
+
- lib/vendor/thor/README.rdoc
|
224
|
+
- lib/vendor/thor/thor.gemspec
|
225
|
+
- lib/vendor/thor/Thorfile
|
226
|
+
- lib/vendor/thor/bin/rake2thor
|
227
|
+
- lib/vendor/thor/bin/thor
|
228
|
+
- lib/vendor/thor/lib/thor.rb
|
229
|
+
- lib/vendor/thor/lib/thor/actions.rb
|
230
|
+
- lib/vendor/thor/lib/thor/base.rb
|
231
|
+
- lib/vendor/thor/lib/thor/error.rb
|
232
|
+
- lib/vendor/thor/lib/thor/group.rb
|
233
|
+
- lib/vendor/thor/lib/thor/invocation.rb
|
234
|
+
- lib/vendor/thor/lib/thor/parser.rb
|
235
|
+
- lib/vendor/thor/lib/thor/rake_compat.rb
|
236
|
+
- lib/vendor/thor/lib/thor/runner.rb
|
237
|
+
- lib/vendor/thor/lib/thor/shell.rb
|
238
|
+
- lib/vendor/thor/lib/thor/task.rb
|
239
|
+
- lib/vendor/thor/lib/thor/util.rb
|
240
|
+
- lib/vendor/thor/lib/thor/version.rb
|
241
|
+
- lib/vendor/thor/lib/thor/actions/create_file.rb
|
242
|
+
- lib/vendor/thor/lib/thor/actions/directory.rb
|
243
|
+
- lib/vendor/thor/lib/thor/actions/empty_directory.rb
|
244
|
+
- lib/vendor/thor/lib/thor/actions/file_manipulation.rb
|
245
|
+
- lib/vendor/thor/lib/thor/actions/inject_into_file.rb
|
246
|
+
- lib/vendor/thor/lib/thor/core_ext/file_binary_read.rb
|
247
|
+
- lib/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb
|
248
|
+
- lib/vendor/thor/lib/thor/core_ext/ordered_hash.rb
|
249
|
+
- lib/vendor/thor/lib/thor/parser/argument.rb
|
250
|
+
- lib/vendor/thor/lib/thor/parser/arguments.rb
|
251
|
+
- lib/vendor/thor/lib/thor/parser/option.rb
|
252
|
+
- lib/vendor/thor/lib/thor/parser/options.rb
|
253
|
+
- lib/vendor/thor/lib/thor/shell/basic.rb
|
254
|
+
- lib/vendor/thor/lib/thor/shell/color.rb
|
255
|
+
- LICENSE
|
256
|
+
- spec/custom_deploy_spec.rb
|
257
|
+
- spec/deploy_hook_spec.rb
|
258
|
+
- spec/deprecation_spec.rb
|
259
|
+
- spec/generate_configs_spec.rb
|
260
|
+
- spec/git_strategy_spec.rb
|
261
|
+
- spec/lockfile_parser_spec.rb
|
262
|
+
- spec/real_deploy_spec.rb
|
263
|
+
- spec/restart_spec.rb
|
264
|
+
- spec/server_spec.rb
|
265
|
+
- spec/spec_helper.rb
|
266
|
+
- spec/fixtures/gitrepo.tar.gz
|
267
|
+
- spec/fixtures/invalid_hook.rb
|
268
|
+
- spec/fixtures/valid_hook.rb
|
269
|
+
- spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
|
270
|
+
- spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
|
271
|
+
- spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
|
272
|
+
- spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
|
273
|
+
- spec/fixtures/gemfiles/activerecord_mysql/Gemfile
|
274
|
+
- spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
|
275
|
+
- spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
|
276
|
+
- spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
|
277
|
+
- spec/fixtures/gemfiles/activerecord_pg/Gemfile
|
278
|
+
- spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
|
279
|
+
- spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
|
280
|
+
- spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
|
281
|
+
- spec/fixtures/gemfiles/diy_database_yml/Gemfile
|
282
|
+
- spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
|
283
|
+
- spec/fixtures/gemfiles/diy_database_yml/config/database.yml
|
284
|
+
- spec/fixtures/gitrepo/foo
|
285
|
+
- spec/lib/full_test_deploy.rb
|
286
|
+
- spec/support/lockfiles/0.9-no-bundler
|
287
|
+
- spec/support/lockfiles/0.9-with-bundler
|
288
|
+
- spec/support/lockfiles/1.0-no-bundler
|
289
|
+
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
290
|
+
- spec/support/lockfiles/1.0.6-no-bundler
|
291
|
+
- spec/support/lockfiles/1.0.6-with-any-bundler
|
292
|
+
- spec/support/lockfiles/1.0.6-with-bundler
|
293
|
+
- spec/support/lockfiles/evil-yaml
|
294
|
+
- spec/support/lockfiles/not-a-lockfile
|
295
|
+
has_rdoc: true
|
310
296
|
homepage: http://github.com/engineyard/engineyard-serverside
|
311
297
|
licenses: []
|
312
298
|
|
@@ -314,71 +300,63 @@ post_install_message:
|
|
314
300
|
rdoc_options: []
|
315
301
|
|
316
302
|
require_paths:
|
317
|
-
- lib
|
303
|
+
- lib
|
318
304
|
required_ruby_version: !ruby/object:Gem::Requirement
|
319
305
|
none: false
|
320
306
|
requirements:
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
segments:
|
325
|
-
- 0
|
326
|
-
version: "0"
|
307
|
+
- - ">="
|
308
|
+
- !ruby/object:Gem::Version
|
309
|
+
version: "0"
|
327
310
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
328
311
|
none: false
|
329
312
|
requirements:
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
segments:
|
334
|
-
- 1
|
335
|
-
- 3
|
336
|
-
- 1
|
337
|
-
version: 1.3.1
|
313
|
+
- - ">"
|
314
|
+
- !ruby/object:Gem::Version
|
315
|
+
version: 1.3.1
|
338
316
|
requirements: []
|
339
317
|
|
340
318
|
rubyforge_project:
|
341
|
-
rubygems_version: 1.
|
319
|
+
rubygems_version: 1.5.1
|
342
320
|
signing_key:
|
343
321
|
specification_version: 3
|
344
322
|
summary: A gem that deploys ruby applications on EY Cloud instances
|
345
323
|
test_files:
|
346
|
-
- spec/custom_deploy_spec.rb
|
347
|
-
- spec/deploy_hook_spec.rb
|
348
|
-
- spec/deprecation_spec.rb
|
349
|
-
- spec/
|
350
|
-
- spec/
|
351
|
-
- spec/
|
352
|
-
- spec/
|
353
|
-
- spec/
|
354
|
-
- spec/
|
355
|
-
- spec/
|
356
|
-
- spec/fixtures/
|
357
|
-
- spec/fixtures/
|
358
|
-
- spec/fixtures/
|
359
|
-
- spec/fixtures/gemfiles/
|
360
|
-
- spec/fixtures/gemfiles/
|
361
|
-
- spec/fixtures/gemfiles/
|
362
|
-
- spec/fixtures/gemfiles/
|
363
|
-
- spec/fixtures/gemfiles/
|
364
|
-
- spec/fixtures/
|
365
|
-
- spec/fixtures/
|
366
|
-
- spec/fixtures/
|
367
|
-
- spec/fixtures/
|
368
|
-
- spec/
|
369
|
-
- spec/
|
370
|
-
- spec/
|
371
|
-
- spec/
|
372
|
-
- spec/
|
373
|
-
- spec/
|
374
|
-
- spec/
|
375
|
-
- spec/
|
376
|
-
- spec/support/lockfiles/0.9-no-bundler
|
377
|
-
- spec/support/lockfiles/0.9-with-bundler
|
378
|
-
- spec/support/lockfiles/1.0-no-bundler
|
379
|
-
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
380
|
-
- spec/support/lockfiles/1.0.6-no-bundler
|
381
|
-
- spec/support/lockfiles/1.0.6-with-any-bundler
|
382
|
-
- spec/support/lockfiles/1.0.6-with-bundler
|
383
|
-
- spec/support/lockfiles/evil-yaml
|
384
|
-
- spec/support/lockfiles/not-a-lockfile
|
324
|
+
- spec/custom_deploy_spec.rb
|
325
|
+
- spec/deploy_hook_spec.rb
|
326
|
+
- spec/deprecation_spec.rb
|
327
|
+
- spec/generate_configs_spec.rb
|
328
|
+
- spec/git_strategy_spec.rb
|
329
|
+
- spec/lockfile_parser_spec.rb
|
330
|
+
- spec/real_deploy_spec.rb
|
331
|
+
- spec/restart_spec.rb
|
332
|
+
- spec/server_spec.rb
|
333
|
+
- spec/spec_helper.rb
|
334
|
+
- spec/fixtures/gitrepo.tar.gz
|
335
|
+
- spec/fixtures/invalid_hook.rb
|
336
|
+
- spec/fixtures/valid_hook.rb
|
337
|
+
- spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile
|
338
|
+
- spec/fixtures/gemfiles/activerecord_jdbcmysql/Gemfile.lock
|
339
|
+
- spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile
|
340
|
+
- spec/fixtures/gemfiles/activerecord_jdbcpostgresql/Gemfile.lock
|
341
|
+
- spec/fixtures/gemfiles/activerecord_mysql/Gemfile
|
342
|
+
- spec/fixtures/gemfiles/activerecord_mysql/Gemfile.lock
|
343
|
+
- spec/fixtures/gemfiles/activerecord_mysql2/Gemfile
|
344
|
+
- spec/fixtures/gemfiles/activerecord_mysql2/Gemfile.lock
|
345
|
+
- spec/fixtures/gemfiles/activerecord_pg/Gemfile
|
346
|
+
- spec/fixtures/gemfiles/activerecord_pg/Gemfile.lock
|
347
|
+
- spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile
|
348
|
+
- spec/fixtures/gemfiles/activerecord_sqlite3/Gemfile.lock
|
349
|
+
- spec/fixtures/gemfiles/diy_database_yml/Gemfile
|
350
|
+
- spec/fixtures/gemfiles/diy_database_yml/Gemfile.lock
|
351
|
+
- spec/fixtures/gemfiles/diy_database_yml/config/database.yml
|
352
|
+
- spec/fixtures/gitrepo/foo
|
353
|
+
- spec/lib/full_test_deploy.rb
|
354
|
+
- spec/support/lockfiles/0.9-no-bundler
|
355
|
+
- spec/support/lockfiles/0.9-with-bundler
|
356
|
+
- spec/support/lockfiles/1.0-no-bundler
|
357
|
+
- spec/support/lockfiles/1.0.0.rc.1-with-bundler
|
358
|
+
- spec/support/lockfiles/1.0.6-no-bundler
|
359
|
+
- spec/support/lockfiles/1.0.6-with-any-bundler
|
360
|
+
- spec/support/lockfiles/1.0.6-with-bundler
|
361
|
+
- spec/support/lockfiles/evil-yaml
|
362
|
+
- spec/support/lockfiles/not-a-lockfile
|