wp-capistrano3 0.0.17 → 0.0.18

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: cab8932366840e65dfa57fe63d96833a43291f60ce7cf05e06157a458b62035a
4
- data.tar.gz: 2e8872fc8a9543cb74d41d53b391c8c5298ae6d3c728b26f72dd81393ba46692
3
+ metadata.gz: 63fc5b6cc98b49c6cd3ebd2a553f7610bda361c15cf6dcacedf197ee3ff157da
4
+ data.tar.gz: 87703e68b8a464877a86cf3a54c9e0395e47dfcb3bbfc6063080638578acf32d
5
5
  SHA512:
6
- metadata.gz: d8a6d8496fb735009e8e5afa95a62cf122fdacf5d2754df79dc1b8fdb277281ab524f504030b6f988ff912a442ac5c8a6bbb033a99de25d9bc2c6388330e3db7
7
- data.tar.gz: f5b1ddbca6ab3e172b1909a049e49cd07aaf0efedef4f3933eb9754ce056fbb00e89313e9f8915dfef25aaaf3ce5a339fe4855a80ff3b24b771bf491b5bf86c6
6
+ metadata.gz: c5c67865a7100aec018648dc779baa86e29f8cb166bb0d4faf4c6010782de6a54838218cfcb387357ad82ce0485b066c1b0971efc5880fd98ee65c8af6649130
7
+ data.tar.gz: 24cec847d27ac8fac883ff05beb01af24e5d6f2a077661d72933307a0f26fc3d0db7f52b59a7ffe43cfd55506e190b7cadf61f01338cbfdb691993632d9dacac
@@ -2,10 +2,10 @@ namespace "wp-capistrano" do
2
2
  desc 'Download wordpress'
3
3
  task :download_wordpress do
4
4
  on roles(:app) do
5
- execute "wget -N http://wordpress.org/latest.tar.gz -P /tmp/"
5
+ execute "wget -N http://wordpress.org/latest.tar.gz -P #{fetch(:tmp_dir)}"
6
6
  execute "tar xzf /tmp/latest.tar.gz -C #{release_path} wordpress --strip-components=1"
7
- execute "wget -N https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -P /tmp/"
8
- execute "chmod u+x /tmp/wp-cli.phar"
7
+ execute "wget -N https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -P #{fetch(:tmp_dir)}"
8
+ execute "chmod u+x #{fetch(:tmp_dir)}"
9
9
  end
10
10
  end
11
11
  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.17'
7
+ spec.version = '0.0.18'
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.17
4
+ version: 0.0.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-19 00:00:00.000000000 Z
11
+ date: 2021-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano