kcapifony 2.1.5 → 2.1.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.
- data/lib/ksymfony2.rb +3 -3
- metadata +10 -5
data/lib/ksymfony2.rb
CHANGED
|
@@ -158,19 +158,19 @@ namespace :symfony do
|
|
|
158
158
|
namespace :vendors do
|
|
159
159
|
desc "Runs the bin/vendors script to install the vendors (fast if already installed)"
|
|
160
160
|
task :install do
|
|
161
|
-
|
|
161
|
+
run "chmod 777 -R `dirname $SSH_AUTH_SOCK`"
|
|
162
162
|
try_sudo "sh -c 'cd #{latest_release} && #{php_bin} bin/vendors install'"
|
|
163
163
|
end
|
|
164
164
|
|
|
165
165
|
desc "Runs the bin/vendors script to reinstall the vendors"
|
|
166
166
|
task :reinstall do
|
|
167
|
-
|
|
167
|
+
run "chmod 777 -R `dirname $SSH_AUTH_SOCK`"
|
|
168
168
|
try_sudo "sh -c 'cd #{latest_release} && #{php_bin} bin/vendors install --reinstall'"
|
|
169
169
|
end
|
|
170
170
|
|
|
171
171
|
desc "Runs the bin/vendors script to upgrade the vendors"
|
|
172
172
|
task :upgrade do
|
|
173
|
-
|
|
173
|
+
run "chmod 777 -R `dirname $SSH_AUTH_SOCK`"
|
|
174
174
|
try_sudo "sh -c 'cd #{latest_release} && #{php_bin} bin/vendors update'"
|
|
175
175
|
end
|
|
176
176
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kcapifony
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-05-
|
|
12
|
+
date: 2012-05-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: capistrano
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: 2.5.10
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 2.5.10
|
|
25
30
|
description: ! ' kCapistrano is an open source tool for running scripts on multiple
|
|
26
31
|
servers. It’s primary use is for easily deploying applications. While it was built
|
|
27
32
|
specifically for deploying Rails apps, it’s pretty simple to customize it to deploy
|
|
@@ -63,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
63
68
|
version: '0'
|
|
64
69
|
requirements: []
|
|
65
70
|
rubyforge_project:
|
|
66
|
-
rubygems_version: 1.8.
|
|
71
|
+
rubygems_version: 1.8.23
|
|
67
72
|
signing_key:
|
|
68
73
|
specification_version: 3
|
|
69
74
|
summary: Deploying symfony PHP applications with Capistrano.
|