wp-capistrano3 0.0.25 → 0.0.29

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: 5f717dbbd0f4d9600c4e0bf28668496c801754cdefe3cea0ac3cc3ac177d340f
4
- data.tar.gz: d2a0bd0a70c3e5990b5d775932abe60b61a1ddc1a1eaec72efc3a40bc1ff2775
3
+ metadata.gz: b6869b71f58f38fdc5bd28c4ed5e203c833422ec2b7d1e6cdcbc5e53a0b5d013
4
+ data.tar.gz: 75df19a8c15a3de18b3d5b7d35f26cfc1d56c7e2fa8232c40c5d139421d968ed
5
5
  SHA512:
6
- metadata.gz: 987fffe1ad47ea3b18c8ba6b40fb226ae83dbc78ddc1ec44ac86c32ed61992a741419b21ebfd3959d9d30ebde75c11d156d4de54adf9dbf0931bffbc606c283e
7
- data.tar.gz: dbedfcda72382df88aaaff4e59a93853717a738a0925ed4c79789959a562605b378915c8e97b13215bff9b65cd16b0baf74af8da2541e12aa5690c5f25f1031f
6
+ metadata.gz: b025b61d18dafc46078f62724144b42dac82faa735f74f80c3c580d300c5ec386320ba964982ed45438f65b2702dfdd4ccc96735e1b0f8f99b126558c2292e4b
7
+ data.tar.gz: 2fc7ea5adbfaaacba8a18a43fa70932967a190755236f91311dc2312d808ffa64c84837da4f7cbb93f3f85df9cb4d520b9216bec68799455c19de5b840bbf1d4
@@ -3,7 +3,7 @@ namespace "wp-capistrano" do
3
3
  task :install_wordpress do
4
4
  on roles(:app), filter: :no_release do
5
5
  puts "#{shared_path}/wp-config.php exist ?"
6
- if (File.exist?("#{shared_path}/wp-config.php") == false && File.symlink?("#{shared_path}/wp-config.php") == false)
6
+ if test("[ -f #{shared_path}/wp-config.php ]") == false
7
7
  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}"
8
8
  execute "cp #{release_path}/wp-config.php #{shared_path}/"
9
9
  end
@@ -0,0 +1,29 @@
1
+ namespace "wp-capistrano" do
2
+ desc 'Install plugins dependencies using composer'
3
+ task :plugins_composer_install do
4
+ on roles(:app) do
5
+ pluginDirectory = "#{release_path}/wp-content/plugins/"
6
+
7
+ Dir.foreach(pluginDirectory) { |directory|
8
+ if (directory != "." and directory != "..")
9
+ puts "#################################\n# Plugin #{directory}\n#################################"
10
+ Dir.chdir(pluginDirectory + directory) do
11
+ puts
12
+ if (Dir.exist?(Dir.pwd + '/vendor') == false && File.exist?(Dir.pwd + '/composer.lock') == true)
13
+ puts '=> NEED INSTALL : There is no vendor installed and composer.lock'
14
+ execute "ls #{release_path}/wp-content/plugins/"
15
+ execute "composer install --working-dir=#{release_path}/wp-content/plugins/" + directory
16
+ else
17
+ puts '=> NO NEED INSTALL'
18
+ end
19
+ end
20
+
21
+ puts ' '
22
+ end
23
+ }
24
+
25
+ puts "#################################\n#End Install Plugins\n#################################"
26
+ end
27
+ end
28
+ end
29
+
@@ -1,6 +1,7 @@
1
1
  # Default Flow
2
2
  #before 'deploy:check:linked_files', 'wp-capistrano:create_wp_config'
3
- before 'deploy:updating', 'wp-capistrano:download_wordpress'
3
+ before 'deploy:updated', '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'
6
- after 'deploy:updating', 'wp-capistrano:install_plugins'
6
+ after 'wp-capistrano:install_wordpress', 'wp-capistrano:plugins_composer_install'
7
+ after 'wp-capistrano:plugins_composer_install', 'wp-capistrano:install_plugins'
@@ -3,6 +3,7 @@ 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__)
5
5
  load File.expand_path("../tasks/install_plugins.rake", __FILE__)
6
+ load File.expand_path("../tasks/plugins_composer_install.rake", __FILE__)
6
7
 
7
8
  namespace :load do
8
9
  task :defaults do
@@ -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.25'
7
+ spec.version = '0.0.29'
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.25
4
+ version: 0.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT
@@ -71,6 +71,7 @@ files:
71
71
  - lib/capistrano/tasks/download_wordpress.rake
72
72
  - lib/capistrano/tasks/install_plugins.rake
73
73
  - lib/capistrano/tasks/install_wordpress.rake
74
+ - lib/capistrano/tasks/plugins_composer_install.rake
74
75
  - lib/capistrano/tasks/update_wordpress.rake
75
76
  - lib/capistrano/wp-capistrano.rb
76
77
  - lib/capistrano/wp-capistrano/defaults.rb