wp-capistrano3 0.0.34 → 0.0.35

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea1c2bbf6794a459495761c59028b2cd56589a97583f06d044523b0cebf2aa5a
4
- data.tar.gz: d52b3c7aa8ec13074f21974deb6f49290932fbec0ba433393b4e2360bd14e44a
3
+ metadata.gz: 88099740811660d39a68493bb37826e61bd24e60bdedab3114edf37216cbf73a
4
+ data.tar.gz: 5ed367641f0fee535eeeabbca6f5e72cb592640881a4e9184174bfab8b37bc96
5
5
  SHA512:
6
- metadata.gz: c4ee7297cb7716259a9ed8f38b2ba99886f8f4c015f0fce5d173304ddb8ff48717f86ffb8ca4f3c58f306e0df13f4e17940108ce666a9f153b38eb4afa6a0f4d
7
- data.tar.gz: 35521db4af61c5367789f9edbfd240f58ec3ac69378a3ce475cfbaec461c0e5992ed481b23fdf179231137c0ab4607adbc480b279827a7d00ecd8d404d53fbc3
6
+ metadata.gz: 8b3079c3f784f2347a411da37060d403b3e65586a152986f3928d9be022debd0114fd9769acd6a29906c9b1b53eae65479e0d001d9010e8f2b4ae8884e3052a4
7
+ data.tar.gz: a799e26ad3710a09dbb1fa0519cfb93cc5f01703c25d6f50fbdc78612c1f14b522925df6dcae80def3db2b94ea478d08b6c1806c07f80008a4215604703008ad
@@ -65,10 +65,10 @@ namespace "wp-capistrano" do
65
65
 
66
66
  info "install #{plugin[:slug]}:#{plugin[:version]}"
67
67
  if(plugin[:version]) == "latest"
68
- execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin install #{plugin[:slug]} --path=#{release_path}"
68
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin install #{plugin[:slug]} --path=#{release_path} --force"
69
69
  info "install #{plugin[:slug]}"
70
70
  else
71
- execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin install #{plugin[:slug]} --path=#{release_path} --version=#{plugin[:version]}"
71
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin install #{plugin[:slug]} --path=#{release_path} --version=#{plugin[:version]} --force"
72
72
  info "install #{plugin[:slug]} #{plugin[:version]}"
73
73
  end
74
74
  end
@@ -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.34'
7
+ spec.version = '0.0.35'
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.34
4
+ version: 0.0.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT