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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f1c61c2f1055f66bf5b31df70134f60713ceaa2
4
- data.tar.gz: 88583f0d99623ac998b680a8299e3c46c475b8a7
3
+ metadata.gz: bb8c292f4ac944096d675a5847f0630b931b74bb
4
+ data.tar.gz: 4b0bc60c64225a454ba029b208103f0d8f31534c
5
5
  SHA512:
6
- metadata.gz: d0c1d0eeac9c8116952855a47a430f8f5e79e52ec8431c052e5f2c6121f7741dfc1406b0146e2ac433efcbdf5b745f4cab4278169670e6bf1d9562aa66a8599d
7
- data.tar.gz: 24dc030e3cd6d5f119d0ccaef7db4b0eb8ce275b7958e3cdd927e1090b82b0159cb532b5139a61575cf5f6521caee4f7eb3539a97bca546d0116984f5bf957c9
6
+ metadata.gz: 2e1b3b11f3ec0fcab23f1b2f1b084de40768d4b63c642fab3dbc6850ba4eab714c7b0e63cc991272f63811e613b6b67cb24d798261f1e3222323bba6f74c261d
7
+ data.tar.gz: 0f6b5e983b5dd9570c0066ac83c3e6b01a98865974584e499628de86eb2c920c3da7c1259826ed96fb6d1ae746ddec6e5b9c7a8ea8bfe4835b64c3c2a5deb0e4
@@ -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.4'
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' do
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Aleman