wp-capistrano3 0.0.20 → 0.0.21

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: dd8315c1efb7c5b442112815ddae787294375296c38ac75e3f548248d147460f
4
- data.tar.gz: 86149f83713ebfb908435cb7beee48b31ccb2742533561b4b9d5e34da9bf9c50
3
+ metadata.gz: 1413f5e83886cd9db2e870c16944836657d74ef273992238393b6986af85a846
4
+ data.tar.gz: 16a3990729e3bac615c638fd33cb7ef5fb737d03674a61db0302a13261248f6e
5
5
  SHA512:
6
- metadata.gz: e782951f9b83ebeb4d074bca03cd88cc50ecc340ef0b16d07071aadb9044016d25ed09532aade1fbb1c0f8d8cb64ef263162e7b87b8e55e2b776426303d3a7ff
7
- data.tar.gz: 17ac5ba881c1b641d51fcd0a83b9bce2fafc5173380bc9706ad057fa5360ff84ff5c01abb7e885af084d1363f3bcb712eaf153d1308b369950e0891bfe828c8c
6
+ metadata.gz: fe2654db3c9fdf4cd3b6fe8b9fb66a479355e8086d419d207d5335d1e391db964dbbaaeeabbfb3c1cda017f09644d143d11548a5cd1940feb4ad664bd10297ad
7
+ data.tar.gz: b1a6d60ecbf8c1425ac0ab08549edaee615186fbf8fa3727535056de35baf40787b048edb952d045d0a87f8666c8ded7853335f5ded40e099b2d28315085b756
@@ -3,7 +3,7 @@ namespace "wp-capistrano" do
3
3
  task :download_wordpress do
4
4
  on roles(:app) do
5
5
  execute "wget -N http://wordpress.org/latest.tar.gz -P #{fetch(:tmp_dir)}"
6
- execute "tar xzf /tmp/latest.tar.gz -C #{release_path} wordpress --strip-components=1"
6
+ execute "tar xzf #{fetch(:tmp_dir)}/latest.tar.gz -C #{release_path} wordpress --strip-components=1"
7
7
  execute "wget -N https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar -P #{fetch(:tmp_dir)}"
8
8
  execute "chmod u+x #{fetch(:tmp_dir)}/wp-cli.phar"
9
9
  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.20'
7
+ spec.version = '0.0.21'
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.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT