engineyard-serverside 1.5.32 → 1.5.33
Sign up to get free protection for your applications and to get access to all the features.
@@ -65,7 +65,7 @@ module EY
|
|
65
65
|
out << with_timestamp(":: running #{cmd}\n")
|
66
66
|
|
67
67
|
# :quiet means don't raise an error on nonzero exit status
|
68
|
-
status = Open4.spawn cmd,
|
68
|
+
status = Open4.spawn cmd, :stdin => '', :stdout => out, :quiet => true # leaving :stderr out for now
|
69
69
|
status.exitstatus == 0
|
70
70
|
end
|
71
71
|
end
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: engineyard-serverside
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.33
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-03-
|
12
|
+
date: 2012-03-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -321,6 +321,8 @@ files:
|
|
321
321
|
- spec/deploy_hook_spec.rb
|
322
322
|
- spec/deprecation_spec.rb
|
323
323
|
- spec/fixtures/gemfiles/1.0.21-rails-31-with-sqlite
|
324
|
+
- spec/fixtures/gitrepo/bar
|
325
|
+
- spec/fixtures/gitrepo/foo
|
324
326
|
- spec/fixtures/gitrepo.tar.gz
|
325
327
|
- spec/fixtures/invalid_hook.rb
|
326
328
|
- spec/fixtures/lockfiles/0.9-no-bundler
|
@@ -363,7 +365,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
363
365
|
version: '0'
|
364
366
|
segments:
|
365
367
|
- 0
|
366
|
-
hash:
|
368
|
+
hash: -3202821505931209678
|
367
369
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
368
370
|
none: false
|
369
371
|
requirements:
|
@@ -383,6 +385,8 @@ test_files:
|
|
383
385
|
- spec/deploy_hook_spec.rb
|
384
386
|
- spec/deprecation_spec.rb
|
385
387
|
- spec/fixtures/gemfiles/1.0.21-rails-31-with-sqlite
|
388
|
+
- spec/fixtures/gitrepo/bar
|
389
|
+
- spec/fixtures/gitrepo/foo
|
386
390
|
- spec/fixtures/gitrepo.tar.gz
|
387
391
|
- spec/fixtures/invalid_hook.rb
|
388
392
|
- spec/fixtures/lockfiles/0.9-no-bundler
|