wp-capistrano3 0.0.17 → 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: cab8932366840e65dfa57fe63d96833a43291f60ce7cf05e06157a458b62035a
4
- data.tar.gz: 2e8872fc8a9543cb74d41d53b391c8c5298ae6d3c728b26f72dd81393ba46692
3
+ metadata.gz: 1413f5e83886cd9db2e870c16944836657d74ef273992238393b6986af85a846
4
+ data.tar.gz: 16a3990729e3bac615c638fd33cb7ef5fb737d03674a61db0302a13261248f6e
5
5
  SHA512:
6
- metadata.gz: d8a6d8496fb735009e8e5afa95a62cf122fdacf5d2754df79dc1b8fdb277281ab524f504030b6f988ff912a442ac5c8a6bbb033a99de25d9bc2c6388330e3db7
7
- data.tar.gz: f5b1ddbca6ab3e172b1909a049e49cd07aaf0efedef4f3933eb9754ce056fbb00e89313e9f8915dfef25aaaf3ce5a339fe4855a80ff3b24b771bf491b5bf86c6
6
+ metadata.gz: fe2654db3c9fdf4cd3b6fe8b9fb66a479355e8086d419d207d5335d1e391db964dbbaaeeabbfb3c1cda017f09644d143d11548a5cd1940feb4ad664bd10297ad
7
+ data.tar.gz: b1a6d60ecbf8c1425ac0ab08549edaee615186fbf8fa3727535056de35baf40787b048edb952d045d0a87f8666c8ded7853335f5ded40e099b2d28315085b756
@@ -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/"
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"
5
+ execute "wget -N http://wordpress.org/latest.tar.gz -P #{fetch(:tmp_dir)}"
6
+ execute "tar xzf #{fetch(:tmp_dir)}/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 #{fetch(:tmp_dir)}"
8
+ execute "chmod u+x #{fetch(:tmp_dir)}/wp-cli.phar"
9
9
  end
10
10
  end
11
11
  end
@@ -13,11 +13,11 @@ namespace "wp-capistrano" do
13
13
 
14
14
  if(test("[ -L #{current_path} ]"))
15
15
  info "installing pluggins..."
16
- installedPlugins = capture("/usr/bin/env php /tmp/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $1 }'")
16
+ installedPlugins = capture("/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $1 }'")
17
17
  installedPluginsArr = installedPlugins.to_s.gsub(/\n/, '|').split("|")
18
- installedPluginsStatus = capture("/usr/bin/env php /tmp/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $2 }'")
18
+ installedPluginsStatus = capture("/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $2 }'")
19
19
  installedPluginsStatusArr = installedPluginsStatus.to_s.gsub(/\n/, '|').split("|")
20
- installedPluginsVersion = capture("/usr/bin/env php /tmp/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $4 }'")
20
+ installedPluginsVersion = capture("/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin list --path=#{current_path} |awk '{ print $4 }'")
21
21
  installedPluginsVersionArr = installedPluginsVersion.to_s.gsub(/\n/, '|').split("|")
22
22
 
23
23
  plugins = []
@@ -45,14 +45,14 @@ namespace "wp-capistrano" do
45
45
 
46
46
  if( !jsonPlugins["languages"].nil? )
47
47
  jsonPlugins["languages"].each do |language|
48
- execute "/usr/bin/env php /tmp/wp-cli.phar language core install #{language} --path=#{release_path}"
49
- execute "/usr/bin/env php /tmp/wp-cli.phar language core activate #{language} --path=#{release_path}"
48
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar language core install #{language} --path=#{release_path}"
49
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar language core activate #{language} --path=#{release_path}"
50
50
  end
51
51
  end
52
52
 
53
53
 
54
54
  plugins.each do |plugin|
55
- existingPlugins = capture("/usr/bin/env php /tmp/wp-cli.phar plugin search #{plugin[:slug]} --path=#{release_path} --field=slug --per-page=999999")
55
+ existingPlugins = capture("/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin search #{plugin[:slug]} --path=#{release_path} --field=slug --per-page=999999")
56
56
  if (existingPlugins.to_s.gsub(/\n/, '|').split("|").include?("#{plugin[:slug]}") == false)
57
57
  warn "Pluggin #{plugin[:slug]} not known in wordpress repository. skip installation"
58
58
  next
@@ -65,19 +65,19 @@ 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 /tmp/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}"
69
69
  info "install #{plugin[:slug]}"
70
70
  else
71
- execute "/usr/bin/env php /tmp/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]}"
72
72
  info "install #{plugin[:slug]} #{plugin[:version]}"
73
73
  end
74
74
  end
75
75
  plugins.each do |plugin|
76
76
  if (plugin[:status] == "active")
77
- execute "/usr/bin/env php /tmp/wp-cli.phar plugin activate #{plugin[:slug]} --path=#{release_path}"
77
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin activate #{plugin[:slug]} --path=#{release_path}"
78
78
  info "activate #{plugin[:slug]}"
79
79
  else
80
- execute "/usr/bin/env php /tmp/wp-cli.phar plugin deactivate #{plugin[:slug]} --path=#{release_path}"
80
+ execute "/usr/bin/env php #{fetch(:tmp_dir)}/wp-cli.phar plugin deactivate #{plugin[:slug]} --path=#{release_path}"
81
81
  info "deactivate #{plugin[:slug]}"
82
82
  end
83
83
  end
@@ -2,10 +2,11 @@ namespace "wp-capistrano" do
2
2
  desc 'Install wordpress'
3
3
  task :install_wordpress do
4
4
  on roles(:app), filter: :no_release do
5
- execute "rm #{shared_path}/wp-config.php"
6
- execute "php /tmp/wp-cli.phar config create --dbname=#{fetch(:wp_db_name)} --dbuser=#{fetch(:wp_db_user)} --dbpass=#{fetch(:wp_db_password)} --dbhost='#{fetch(:wp_db_host)}' --locale=#{fetch(:wp_locale)} --path=#{release_path}"
7
- execute "cp #{release_path}/wp-config.php #{shared_path}/"
8
- execute "php /tmp/wp-cli.phar core install --url='#{fetch(:wp_url)}' --title='#{fetch(:wp_title)}' --admin_user='#{fetch(:wp_admin_user)}' --admin_password='#{fetch(:wp_admin_password)}' --admin_email='#{fetch(:wp_admin_email)}' --skip-email --path=#{release_path}"
5
+ if (File.exist?("#{release_path}/wp-config.php") == false)
6
+ execute "php #{fetch(:tmp_dir)}/wp-cli.phar config create --dbname=#{fetch(:wp_db_name)} --dbuser=#{fetch(:wp_db_user)} --dbpass=#{fetch(:wp_db_password)} --dbhost='#{fetch(:wp_db_host)}' --locale=#{fetch(:wp_locale)} --path=#{release_path}"
7
+ execute "cp #{release_path}/wp-config.php #{shared_path}/"
8
+ end
9
+ execute "php #{fetch(:tmp_dir)}/wp-cli.phar core install --url='#{fetch(:wp_url)}' --title='#{fetch(:wp_title)}' --admin_user='#{fetch(:wp_admin_user)}' --admin_password='#{fetch(:wp_admin_password)}' --admin_email='#{fetch(:wp_admin_email)}' --skip-email --path=#{release_path}"
9
10
  end
10
11
  end
11
- end
12
+ end
@@ -2,7 +2,7 @@ namespace "wp-capistrano" do
2
2
  desc 'Download wordpress'
3
3
  task :update_wordpress do
4
4
  on roles(:app) do
5
- execute "php /tmp/wp-cli.phar core update --path=#{release_path}"
5
+ execute "php #{fetch(:tmp_dir)}/wp-cli.phar core update --path=#{release_path}"
6
6
  end
7
7
  end
8
- end
8
+ end
@@ -1,5 +1,5 @@
1
1
  # Default Flow
2
- before 'deploy:check:linked_files', 'wp-capistrano:create_wp_config'
2
+ #before 'deploy:check:linked_files', 'wp-capistrano:create_wp_config'
3
3
  before 'deploy:updating', 'wp-capistrano:download_wordpress'
4
4
  after 'wp-capistrano:download_wordpress', 'wp-capistrano:install_wordpress'
5
5
  after 'wp-capistrano:install_plugins', 'wp-capistrano:update_wordpress'
@@ -1,4 +1,4 @@
1
- load File.expand_path("../tasks/create_wp_config.rake", __FILE__)
1
+ #load File.expand_path("../tasks/create_wp_config.rake", __FILE__)
2
2
  load File.expand_path("../tasks/download_wordpress.rake", __FILE__)
3
3
  load File.expand_path("../tasks/install_wordpress.rake", __FILE__)
4
4
  load File.expand_path("../tasks/update_wordpress.rake", __FILE__)
@@ -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.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,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.21
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: 2022-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano