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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c43cf4f1e4c22011c9f00cbc9bc674a74de93bc8
4
- data.tar.gz: 5fd05120a951cbf60768291ea75653fa3175f655
3
+ metadata.gz: 445ccc59d4b64494959fd5c710fa1a077726add1
4
+ data.tar.gz: 56216c2269879b9948335b7bd7b15201915ea75d
5
5
  SHA512:
6
- metadata.gz: f1a70e961514385ab1ee38f9ce2d1ff318446f34885b1af549778670c8816dc30e1808e9907533365706df8b68f670e51a69e6c65cacfe11264904f47dfa676b
7
- data.tar.gz: 3563f41344dd69092e20877452cbe416229300e95c5c04e79c8df2b1ece79340c92be86add4f5276a40f2caaf8a5fa3dbf3d5c67b3bc519aeab6dc94dbad4034
6
+ metadata.gz: cab9b70eb47931a65410b4856e0c9ec6d9945a38ffefcc06dca7053940a00d8446d4cf34dd5d88d09a73ff4cc8af8c385834e4b603d6cbfaef129a2daa288f51
7
+ data.tar.gz: 23907c61db060afd87ffb4b8561028e8f7fc4ba642f9fef784ebe7bc8cf975e154efa3399657356455213b8eb70e2ac7cc43b8b3beb1a158673a6d3cc257c5cd
@@ -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.1'
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 :download, :roles => :app, :except => { :no_release => true } do
20
- download "#{config_path}/application.yml", "config/application.yml", :via => :scp
21
- end if agree? "Your local config/application.yml file will be overwritten. Continue?"
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
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.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fernando Aleman