rubber 1.5.8 → 1.5.9
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 +9 -0
- data/VERSION +1 -1
- data/lib/rubber/recipes/rubber/deploy.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
1.5.8
|
|
2
|
+
-----
|
|
3
|
+
|
|
4
|
+
use canonical bundler deploy <299a405> [Matt Conway]
|
|
5
|
+
new amis, update to rails 3 final <d59b889> [Matt Conway]
|
|
6
|
+
update to rvm 1.0.1 <b8e57df> [Matt Conway]
|
|
7
|
+
try alternate timeout for instance connection hang issue <e72a881> [Matt Conway]
|
|
8
|
+
quote env vars to keep crontab happy <1240818> [Matt Conway]
|
|
9
|
+
|
|
1
10
|
1.5.7
|
|
2
11
|
-----
|
|
3
12
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.5.
|
|
1
|
+
1.5.9
|
|
@@ -59,7 +59,7 @@ namespace :rubber do
|
|
|
59
59
|
Sets permissions of files in application directory to be owned by app_user.
|
|
60
60
|
DESC
|
|
61
61
|
task :setup_app_permissions do
|
|
62
|
-
rsudo "find #{shared_path} -name cached-copy -prune -o -
|
|
62
|
+
rsudo "find #{shared_path} -name cached-copy -prune -o -name bundle -prune -o -print0 | xargs -0 chown #{rubber_env.app_user}:#{rubber_env.app_user}"
|
|
63
63
|
rsudo "chown -R #{rubber_env.app_user}:#{rubber_env.app_user} #{current_path}/tmp"
|
|
64
64
|
end
|
|
65
65
|
|