dark-capistrano-recipes 0.6.10 → 0.6.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  ---
2
- :minor: 6
3
- :build:
4
- :patch: 10
2
+ :patch: 11
5
3
  :major: 0
4
+ :build:
5
+ :minor: 6
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{dark-capistrano-recipes}
8
- s.version = "0.6.10"
8
+ s.version = "0.6.11"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Phil Misiowiec", "Leonardo Bighetti"]
12
- s.date = %q{2010-10-01}
12
+ s.date = %q{2010-10-04}
13
13
  s.description = %q{Extend the Capistrano gem with these useful recipes}
14
14
  s.email = %q{leonardobighetti@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -11,7 +11,7 @@ Capistrano::Configuration.instance(:must_exist).load do
11
11
 
12
12
  # [internal] runs bundle install on the app server
13
13
  task :install, :roles => :app, :except => { :no_release => true } do
14
- run "cd #{current_path} && bundle install --deployment --without=development test"
14
+ run "cd #{current_path} && bundle install --deployment"
15
15
  end
16
16
  end
17
17
 
@@ -48,7 +48,7 @@ Capistrano::Configuration.instance(:must_exist).load do
48
48
 
49
49
  end
50
50
 
51
- after 'deploy:setup', 'nginx:setup' if is_using_nginx
51
+ after 'deploy:setup', 'nginx:setup' if is_using_nginx && Capistrano::CLI.ui.agree("Create nginx configuration file? [Yn]")
52
52
 
53
53
  end
54
54
 
@@ -77,7 +77,7 @@ Capistrano::Configuration.instance(:must_exist).load do
77
77
  end
78
78
  end
79
79
 
80
- after 'deploy:setup', 'unicorn:setup' if is_using_unicorn
80
+ after 'deploy:setup', 'unicorn:setup' if is_using_unicorn && Capistrano::CLI.ui.agree("Create unicorn configuration file? [Yn]")
81
81
 
82
82
  end
83
83
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dark-capistrano-recipes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 10
10
- version: 0.6.10
9
+ - 11
10
+ version: 0.6.11
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phil Misiowiec
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-01 00:00:00 -03:00
19
+ date: 2010-10-04 00:00:00 -03:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency