capistrano_recipes 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/capistrano_recipes.gemspec +1 -1
- data/lib/capistrano/recipes/figaro.rb +5 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 445ccc59d4b64494959fd5c710fa1a077726add1
|
4
|
+
data.tar.gz: 56216c2269879b9948335b7bd7b15201915ea75d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cab9b70eb47931a65410b4856e0c9ec6d9945a38ffefcc06dca7053940a00d8446d4cf34dd5d88d09a73ff4cc8af8c385834e4b603d6cbfaef129a2daa288f51
|
7
|
+
data.tar.gz: 23907c61db060afd87ffb4b8561028e8f7fc4ba642f9fef784ebe7bc8cf975e154efa3399657356455213b8eb70e2ac7cc43b8b3beb1a158673a6d3cc257c5cd
|
data/capistrano_recipes.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = 'capistrano_recipes'
|
7
|
-
s.version = '1.3.
|
7
|
+
s.version = '1.3.2'
|
8
8
|
s.authors = ['Fernando Aleman']
|
9
9
|
s.email = ['fernandoaleman@mac.com']
|
10
10
|
s.description = 'Capistrano recipes to make your deployments fast and easy'
|
@@ -16,9 +16,11 @@ module CapistranoRecipes
|
|
16
16
|
end
|
17
17
|
|
18
18
|
desc 'Download application.yml from remote server'
|
19
|
-
task :
|
20
|
-
|
21
|
-
|
19
|
+
task :download_application_file, :roles => :app, :except => { :no_release => true } do
|
20
|
+
if agree? "Your local config/application.yml file will be overwritten. Continue?"
|
21
|
+
download "#{config_path}/application.yml", "config/application.yml", :via => :scp
|
22
|
+
end
|
23
|
+
end
|
22
24
|
|
23
25
|
desc 'Symlink application.yml to config path'
|
24
26
|
task :symlink, :roles => :app, :except => { :no_release => true } do
|