capistrano-helpers 0.3.0 → 0.3.2
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/VERSION +1 -1
- data/capistrano-helpers.gemspec +1 -1
- data/lib/capistrano-helpers/gems.rb +1 -0
- data/lib/capistrano-helpers/privates.rb +4 -1
- data/lib/capistrano-helpers/shared.rb +4 -1
- metadata +1 -1
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.2
|
data/capistrano-helpers.gemspec
CHANGED
|
@@ -5,6 +5,7 @@ CapistranoHelpers.with_configuration do
|
|
|
5
5
|
namespace :gems do
|
|
6
6
|
desc "Install gems on the remote server."
|
|
7
7
|
task :install, :roles => :app do
|
|
8
|
+
rails_env = fetch(:rails_env, "production")
|
|
8
9
|
run "cd #{current_release} && #{sudo} rake gems:install RAILS_ENV=#{rails_env}"
|
|
9
10
|
end
|
|
10
11
|
end
|
|
@@ -9,7 +9,10 @@ CapistranoHelpers.with_configuration do
|
|
|
9
9
|
abort 'You must specify which privates to symlink using the "set :privates" command.'
|
|
10
10
|
end
|
|
11
11
|
privates.each do |path|
|
|
12
|
-
|
|
12
|
+
if release_path.nil? || release_path.empty? || path.nil? || path.empty?
|
|
13
|
+
raise "Release path or path are nil!"
|
|
14
|
+
end
|
|
15
|
+
run "rm -rf #{release_path}/#{path} && ln -nfs #{shared_path}/private/#{path} #{release_path}/#{path}"
|
|
13
16
|
end
|
|
14
17
|
end
|
|
15
18
|
end
|
|
@@ -9,7 +9,10 @@ CapistranoHelpers.with_configuration do
|
|
|
9
9
|
abort 'You must specify which files to symlink using the "set :shared" command.'
|
|
10
10
|
end
|
|
11
11
|
shared.each do |path|
|
|
12
|
-
|
|
12
|
+
if release_path.nil? || release_path.empty? || path.nil? || path.empty?
|
|
13
|
+
raise "Release path or path are nil!"
|
|
14
|
+
end
|
|
15
|
+
run "rm -rf #{release_path}/#{path} && ln -nfs #{shared_path}/#{path} #{release_path}/#{path}"
|
|
13
16
|
end
|
|
14
17
|
end
|
|
15
18
|
end
|