capistrano-ash 1.2.3 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/capistrano-ash.gemspec +3 -3
- data/lib/ash/base.rb +6 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.4
|
data/capistrano-ash.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "capistrano-ash"
|
8
|
-
s.version = "1.2.
|
8
|
+
s.version = "1.2.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["August Ash"]
|
12
|
-
s.date = "2012-
|
12
|
+
s.date = "2012-08-23"
|
13
13
|
s.description = "August Ash recipes for Capistrano"
|
14
14
|
s.email = "code@augustash.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
|
|
34
34
|
]
|
35
35
|
s.homepage = "https://github.com/augustash/capistrano-ash"
|
36
36
|
s.require_paths = ["lib"]
|
37
|
-
s.rubygems_version = "1.8.
|
37
|
+
s.rubygems_version = "1.8.23"
|
38
38
|
s.summary = "Useful task libraries for August Ash recipes for Capistrano"
|
39
39
|
|
40
40
|
if s.respond_to? :specification_version then
|
data/lib/ash/base.rb
CHANGED
@@ -51,7 +51,7 @@ configuration.load do
|
|
51
51
|
set :deploy_via, :remote_cache
|
52
52
|
set :copy_strategy, :checkout
|
53
53
|
set :copy_compression, :bz2
|
54
|
-
set :copy_exclude, [".svn", ".DS_Store", "*.sample", "LICENSE*", "Capfile",
|
54
|
+
set :copy_exclude, [".svn", ".git*", ".DS_Store", "*.sample", "LICENSE*", "Capfile",
|
55
55
|
"RELEASE*", "*.rb", "*.sql", "nbproject", "_template"]
|
56
56
|
|
57
57
|
# phpMyAdmin version
|
@@ -146,6 +146,11 @@ configuration.load do
|
|
146
146
|
File.join(releases_path, release) }.join(" ")
|
147
147
|
|
148
148
|
directories.split(" ").each do |dir|
|
149
|
+
# adding a chown -R method to fix permissions on the directory
|
150
|
+
# this should help with issues related to permission denied
|
151
|
+
# as in issues #28 and #30
|
152
|
+
try_sudo "chown -R #{user}:#{user} #{dir}"
|
153
|
+
|
149
154
|
set_perms_dirs(dir)
|
150
155
|
set_perms_files(dir)
|
151
156
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-ash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.4
|
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:
|
12
|
+
date: 2013-02-01 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: August Ash recipes for Capistrano
|
15
15
|
email: code@augustash.com
|