wp-capistrano3 0.0.18 → 0.0.22

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: 63fc5b6cc98b49c6cd3ebd2a553f7610bda361c15cf6dcacedf197ee3ff157da
4
- data.tar.gz: 87703e68b8a464877a86cf3a54c9e0395e47dfcb3bbfc6063080638578acf32d
3
+ metadata.gz: 398692f0c0c8ef19701c3aa29fb26e2a589705bba63bff1fe5cb8a3ed3d1199b
4
+ data.tar.gz: 2ee8973b2d5f9a94b923fa6e0906949ca4404aaa86c6c715190c97c1405f8458
5
5
  SHA512:
6
- metadata.gz: c5c67865a7100aec018648dc779baa86e29f8cb166bb0d4faf4c6010782de6a54838218cfcb387357ad82ce0485b066c1b0971efc5880fd98ee65c8af6649130
7
- data.tar.gz: 24cec847d27ac8fac883ff05beb01af24e5d6f2a077661d72933307a0f26fc3d0db7f52b59a7ffe43cfd55506e190b7cadf61f01338cbfdb691993632d9dacac
6
+ metadata.gz: 0d3c9a60398b8601e093c446fb3e4b4fe0325cba751777d69c5fae1b0f4c431529d81249bc356f05010acfdef4fe1fb6def39b92524f4d57c4f04062c3b9b484
7
+ data.tar.gz: 2fa98785cc125ec30989e4aa8f5ba5008084cfd78aca1da0f3bb422e12130c43fbd7a5489db6998a0ef181382f41d841385a0578f831b2ed746ab88caca3744b
@@ -3,9 +3,9 @@ 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
- execute "chmod u+x #{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?("{fetch(:shared_directory)}/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.18'
7
+ spec.version = '0.0.22'
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.18
4
+ version: 0.0.22
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-12-07 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