wp-capistrano3 0.0.49 → 0.0.50
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/capistrano/tasks/install_plugins.rake +5 -4
- data/wp-capistrano.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1de8c4d251c7ab931073122260568b60081e5eaf7a4e80ad0c34a58a23b7a61
|
|
4
|
+
data.tar.gz: 845a973e1940fe0dcb6cb8bb57c48fcfd398f39687caeb3eaa729434ed6a1fa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 637e35a910d967464fde9162978c7f95cd7a1f2a02c9f25a2be5ff5bd3b58397fbd9bc938152ad0b9a6737014b7d366afee00279eb7b18d29be86e818515ac1a
|
|
7
|
+
data.tar.gz: fc83a7599e9088b88dc9f87be8c9026b23d92cc334879644ca067beae4ad939c43c006acaaeaacbe38ae596b884661dd9231ef1ae3067dbca1e20f4a3a798af0
|
|
@@ -6,15 +6,16 @@ namespace "wp-capistrano" do
|
|
|
6
6
|
jsonPlugins = []
|
|
7
7
|
info "Check file #{release_path}/plugins.json"
|
|
8
8
|
if (test("[ -f #{release_path}/plugins.json ]"))
|
|
9
|
-
|
|
9
|
+
info "#{release_path}/plugins.json exist"
|
|
10
10
|
pluginsStr = capture("cat #{release_path}/plugins.json")
|
|
11
11
|
jsonPlugins = JSON.parse(pluginsStr)
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
if(test("[ -L #{current_path} ]"))
|
|
15
15
|
info "installing pluggins..."
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
execute "php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} |awk 'BEGIN{OFS=\":\"} {print $1,$2,$4}'"
|
|
17
|
+
installedPlugins = capture("php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} |awk 'BEGIN{OFS=\":\"} {print $1,$2,$4}'");
|
|
18
|
+
info installedPlugins
|
|
18
19
|
plugins = []
|
|
19
20
|
languages = []
|
|
20
21
|
|
|
@@ -98,4 +99,4 @@ namespace "wp-capistrano" do
|
|
|
98
99
|
end
|
|
99
100
|
end
|
|
100
101
|
end
|
|
101
|
-
end
|
|
102
|
+
end
|
data/wp-capistrano.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'wp-capistrano3'
|
|
7
|
-
spec.version = '0.0.
|
|
7
|
+
spec.version = '0.0.50'
|
|
8
8
|
spec.authors = ['Nicolas RENAULT']
|
|
9
9
|
spec.email = ['nrenault@tangkoko.com']
|
|
10
10
|
spec.description = %q{Wordpress tasks for Capistrano 3.x}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wp-capistrano3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.50
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicolas RENAULT
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|