capistrano_recipes 1.3.4 → 1.4.0
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.
- checksums.yaml +4 -4
- data/capistrano_recipes.gemspec +1 -1
- data/lib/capistrano/recipes/figaro.rb +1 -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: bb8c292f4ac944096d675a5847f0630b931b74bb
|
|
4
|
+
data.tar.gz: 4b0bc60c64225a454ba029b208103f0d8f31534c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e1b3b11f3ec0fcab23f1b2f1b084de40768d4b63c642fab3dbc6850ba4eab714c7b0e63cc991272f63811e613b6b67cb24d798261f1e3222323bba6f74c261d
|
|
7
|
+
data.tar.gz: 0f6b5e983b5dd9570c0066ac83c3e6b01a98865974584e499628de86eb2c920c3da7c1259826ed96fb6d1ae746ddec6e5b9c7a8ea8bfe4835b64c3c2a5deb0e4
|
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.
|
|
7
|
+
s.version = '1.4.0'
|
|
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'
|
|
@@ -8,9 +8,7 @@ module CapistranoRecipes
|
|
|
8
8
|
task :upload_file, :roles => :app, :except => { :no_release => true } do
|
|
9
9
|
transfer :up, "config/application.yml", "#{config_path}/application.yml", :via => :scp
|
|
10
10
|
end
|
|
11
|
-
before 'deploy:finalize_update'
|
|
12
|
-
figaro.upload_file if agree? 'Upload application.yml?'
|
|
13
|
-
end
|
|
11
|
+
before 'deploy:finalize_update', 'figaro.upload_file'
|
|
14
12
|
after 'deploy:setup' do
|
|
15
13
|
figaro.upload_file if agree? 'Setup application.yml?'
|
|
16
14
|
end
|