youthtree-capistrano 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  module YouthTree
2
2
  module Capistrano
3
- VERSION = "0.3.0".freeze
3
+ VERSION = "0.3.1".freeze
4
4
 
5
5
  def self.load(&blk)
6
6
  ::Capistrano::Configuration.instance(:must_exist).load(&blk)
@@ -27,7 +27,7 @@ Capistrano::Deploy::SCM::Git.class_eval do
27
27
  if variable(:git_enable_submodules)
28
28
  execute << "#{git} submodule #{verbose} init"
29
29
  execute << "#{git} submodule #{verbose} sync"
30
- execute << "#{git} submodule #{verbose} update --recursive"
30
+ execute << "#{git} submodule #{verbose} update --init --recursive"
31
31
  end
32
32
 
33
33
  execute.join(" && ")
@@ -1,4 +1,5 @@
1
1
  YouthTree::Capistrano.load_named(:bundler) do
2
2
  require 'bundler/capistrano'
3
- set :bundle_dir, '"$GEM_HOME"'
3
+ set :bundle_dir, nil
4
+ set :bundle_flags, '--quiet'
4
5
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{youthtree-capistrano}
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Darcy Laycock"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: youthtree-capistrano
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
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Darcy Laycock