capistrano-mb 0.27.0 → 0.28.0

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: c895c6bcf73b79347cbeb34b0df4297c5ffffa46
4
- data.tar.gz: ecba62c05ec81c5c7092d9de3041ff3767b7239e
3
+ metadata.gz: 9a3021b9a62329594d1ac197ad3bc8457db2d97e
4
+ data.tar.gz: 6c4411df7a8818c11172434983222cfb01ca4e97
5
5
  SHA512:
6
- metadata.gz: 1631da3a26928eedafabdce96783601d3dcc2be35aad3d500c9d999397cd40ceac34b2095b000a538323a309209a2a10427234ca62f9dd709b061231df2cb6f8
7
- data.tar.gz: 7483dd3fa8e2392a65c7a81ca4a43f61f9df2e21611194b147e384343f882bfadc655d4ff261ce03973b05b8388b7c2c87647ef2a8eb2bfb6efcd16822096b82
6
+ metadata.gz: 632da81321a90f7a26cb37a18c18975a8781108ec4b5a61b0bda8039eb1ac50a3f67616cd99f63387fb890755b138a2b33914d1b6c4a82c5daeae84a0f14fb9b
7
+ data.tar.gz: 7baeefead6efa4c4ef5a4dd42062e6c9d86972d093f1ce2e6010b9b728e1ce2d29b099fe83a03e0f6a7764733728395d5096fc833aa92f8bae2389fa71c03292
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  * Your contribution here!
4
4
 
5
+ ## [0.28.0][] (2016-05-13)
6
+
7
+ * Add `--quiet` to the default `bundle install` flags
8
+ * Enable SSH compression by default, now that zlib warning has been fixed in
9
+ SSHKit 1.10.0
10
+
5
11
  ## [0.27.0][] (2016-02-19)
6
12
 
7
13
  * Symlink `.bundle` so that every release shares the same `.bundle/config`. This allows `bundle:check` to work, speeding up deployments when the Gemfile hasn't changed.
@@ -161,7 +167,8 @@ Flush console output after each line is printed. This allows deployment progress
161
167
 
162
168
  Initial Rubygems release!
163
169
 
164
- [Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.27.0...HEAD
170
+ [Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.28.0...HEAD
171
+ [0.28.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.27.0...v0.28.0
165
172
  [0.27.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.26.0...v0.27.0
166
173
  [0.26.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.25.0...v0.26.0
167
174
  [0.25.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.24.0...v0.25.0
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module MB
3
- VERSION = "0.27.0"
3
+ VERSION = "0.28.0".freeze
4
4
  end
5
5
  end
@@ -104,7 +104,7 @@ namespace :load do
104
104
  set :mb_unicorn_pid, proc{ "#{current_path}/tmp/pids/unicorn.pid" }
105
105
 
106
106
  set :bundle_binstubs, false
107
- set :bundle_flags, "--deployment --retry=3"
107
+ set :bundle_flags, "--deployment --retry=3 --quiet"
108
108
  set :bundle_path, -> { shared_path.join("bundle") }
109
109
  set :deploy_to, -> { "/home/deployer/apps/#{fetch(:application)}" }
110
110
  set :keep_releases, 10
@@ -129,7 +129,7 @@ namespace :load do
129
129
  set :log_level, :debug
130
130
  set :migration_role, :app
131
131
  set :rails_env, -> { fetch(:stage) }
132
- set :ssh_options, :compression => false, :keepalive => true
132
+ set :ssh_options, :compression => true, :keepalive => true
133
133
 
134
134
  SSHKit.config.command_map[:rake] = "bundle exec rake"
135
135
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-mb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-19 00:00:00.000000000 Z
11
+ date: 2016-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  version: '0'
159
159
  requirements: []
160
160
  rubyforge_project:
161
- rubygems_version: 2.5.1
161
+ rubygems_version: 2.6.4
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: Additional Capistrano 3 recipes