wp-capistrano3 0.0.27 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a62289fbe60b2342f36813d209bf0678db00784f9f7f97d0098f5c0608e5130
4
- data.tar.gz: fdf4e1cd555b6a0fc546f60678e44fc77d624be0dc099646a3027cb5e6d10eed
3
+ metadata.gz: 0a98c821bb086e17f0e7f575d50a0500b26d6871c48d060e4e2f491a92367687
4
+ data.tar.gz: cda4a6fd4c4f5e5386e88d902cab5116a083cac93c677f9642812cb868f01b4d
5
5
  SHA512:
6
- metadata.gz: 0ec88182eb2385c359aa9b7b4158f66be55440ea2cbb4f7fa7a90c5156954ac290f13d54fe1d8fde8c2bb515b5e1cfd04c4586cbc8e54fe0778bd7fc1b46c236
7
- data.tar.gz: 0c937d316bdb8f4c60e669908370cd45ae0d467fe546c2b3053548598693d3e8f22b6c05eafc8d5ab6b4b1e230eb9314b114b00370c39b484438338bb06a0b97
6
+ metadata.gz: 10f898c1d5966af2b558c037d51e95cef67982456798923df2b81f5f409c7f5e5edbe0a32e5d5db253480b55371ce7dee51811957f5ce14ca0f86bb82ebe597a
7
+ data.tar.gz: 89e159484feb520eec4ddeefdbbc3e7290ba185cde6bd483426897e6b4d437067e65ce075780b28f4367582fd6ec792a94a733162f0a0d21c3d845e1c44965b4
@@ -1,6 +1,6 @@
1
1
  namespace "wp-capistrano" do
2
- desc 'Install Custom Plugins with composer'
3
- task :install_custom_plugins do
2
+ desc 'Install plugins dependencies using composer'
3
+ task :plugins_composer_install do
4
4
  on roles(:app) do
5
5
  pluginDirectory = "#{release_path}/wp-content/plugins/"
6
6
 
@@ -3,5 +3,5 @@
3
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 'wp-capistrano:install_wordpress', 'install_custom_plugins'
7
- after 'install_custom_plugins', 'wp-capistrano:install_plugins'
6
+ after 'wp-capistrano:install_wordpress', 'plugins_composer_install'
7
+ after 'plugins_composer_install', 'wp-capistrano:install_plugins'
@@ -3,7 +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/install_custom_plugins.rake", __FILE__)
6
+ load File.expand_path("../tasks/plugins_composer_install.rake", __FILE__)
7
7
 
8
8
  namespace :load do
9
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.27'
7
+ spec.version = '0.0.28'
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.27
4
+ version: 0.0.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas RENAULT
@@ -69,9 +69,9 @@ files:
69
69
  - gemfile
70
70
  - lib/capistrano/tasks/create_wp_config.rake
71
71
  - lib/capistrano/tasks/download_wordpress.rake
72
- - lib/capistrano/tasks/install_custom_plugins.rake
73
72
  - lib/capistrano/tasks/install_plugins.rake
74
73
  - lib/capistrano/tasks/install_wordpress.rake
74
+ - lib/capistrano/tasks/plugins_composer_install.rake
75
75
  - lib/capistrano/tasks/update_wordpress.rake
76
76
  - lib/capistrano/wp-capistrano.rb
77
77
  - lib/capistrano/wp-capistrano/defaults.rb