wp-capistrano3 0.0.51 → 0.0.52

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7f4ca210ba73658823c7fd1c661d054ad82050b8b18d5f1b38c27595985da24
4
- data.tar.gz: 7505da520d1844088c91dc05911799682a6ea4a227e7e9b84f712e7b6e37627b
3
+ metadata.gz: 56f5a141bbd47c174a72c1bb1ceb06c201e547a7396e3e5699897dbc1643ab0f
4
+ data.tar.gz: cda5afd8bced7317822581c9eb1b1c998fdfc08bdb220a46019f70ecc99970e8
5
5
  SHA512:
6
- metadata.gz: 2d429b86af385fd495d789fff98705d1683aaecf46b088643a02328df28073e94a8424a5d936b72918f3d1e7990bb3073a890e4dd0b712bfc74bf8f84a414036
7
- data.tar.gz: '0385f4425dd38006fd1a11e902f72dfa50b2a032fc4fb60f1a7bd32e2feae24e914056eb16dcd6d8fb9993e7b31caf5aafbd52be50e01861f715fb3a832eb368'
6
+ metadata.gz: 784660d9afa50048d334d46b977f59bb4852f28ffa48efa8afa573caa6f0ddc51b435421df928d2b71634447f5a685b03bc1fcfc730a7326cab1ead98f4509f2
7
+ data.tar.gz: 77965cf41736ce96994fe22a74a8840b875ca81efd959107a918c5261ca6b17a7b61b49f974e76b2f435e2e3a70d6cc6f2cbcc7cd8decd2368e476a809baaf6a
@@ -13,17 +13,17 @@ namespace "wp-capistrano" do
13
13
 
14
14
  if(test("[ -L #{current_path} ]"))
15
15
  info "installing pluggins..."
16
- execute "php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path}"
17
- installedPlugins = capture("php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path}");
16
+ execute "php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} --format=csv"
17
+ installedPlugins = capture("php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} --format=csv");
18
18
  info installedPlugins
19
19
  plugins = []
20
20
  languages = []
21
21
  installedPlugins.each_line do |line|
22
- plugin= line.scan(/[\w\-\.\_]+/)
22
+ plugin= line.split(",")
23
23
  if(plugin[0].empty?)
24
24
  next
25
25
  end
26
- pluginInfo = {:slug => plugin[0], :version => plugin[1], :status => plugin[2] }
26
+ pluginInfo = {:slug => plugin[0], :version => plugin[3], :status => plugin[1] }
27
27
  plugins.push(pluginInfo)
28
28
  end
29
29
  if( !jsonPlugins["plugins"].nil? )
@@ -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.51'
7
+ spec.version = '0.0.52'
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wp-capistrano3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.51
4
+ version: 0.0.52
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT