capistrano-demonz 0.0.20 → 0.0.21

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.
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
- **Current version:** 0.0.20
1
+ **Current version:** 0.0.21
2
2
 
3
3
  ## Changes ##
4
+ ### 0.0.21 ###
5
+ * The 'sites/default' directory is now created if it doesn't exist.
6
+
4
7
  ### 0.0.20 ###
5
8
  * Fixed logic issue from previous fix.
6
9
 
data/lib/demonz/drupal.rb CHANGED
@@ -70,7 +70,12 @@ configuration.load do
70
70
 
71
71
  desc "[internal] Touches up the released code. This is called by update_code after the basic deploy finishes."
72
72
  task :finalize_update, :roles => :web, :except => { :no_release => true } do
73
+ # Remove the files directory if it exists
74
+ # (we'll be symlinking the shared one later).
73
75
  run "#{try_sudo} rm -Rf #{latest_release}/sites/default/files"
76
+
77
+ # Make sure the 'sites/default' directory exists.
78
+ run "#{try_sudo} mkdir -p #{latest_release}/sites/default"
74
79
  end
75
80
 
76
81
  desc "Delete a specified release"
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Demonz
3
- VERSION = "0.0.20"
3
+ VERSION = "0.0.21"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-demonz
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-02-28 00:00:00.000000000 Z
12
+ date: 2013-03-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railsless-deploy