capistrano-mb 0.26.0 → 0.27.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: 1a635a5c0e264df5e8a8471ba83d32095b5155ff
4
- data.tar.gz: 0f8a89893367acf14bf4a5f29e013f253e72973a
3
+ metadata.gz: c895c6bcf73b79347cbeb34b0df4297c5ffffa46
4
+ data.tar.gz: ecba62c05ec81c5c7092d9de3041ff3767b7239e
5
5
  SHA512:
6
- metadata.gz: 1935554eb3a9c48b1b8119bb64f7dd5f30dddeb20ef6c216df85a139534b25881c7aadfead3a97b07cad1829e632f9d87386185b53334eaf64d6247d57db2f52
7
- data.tar.gz: 5cf45d13b17e22210ae5cd5e533106f07172a409fd9f2980c5ffefad82d9b8c8f858bdbe00c3ef79e4574d7e3b3b33518fdb6e51af16ea283dab1856af4e69ef
6
+ metadata.gz: 1631da3a26928eedafabdce96783601d3dcc2be35aad3d500c9d999397cd40ceac34b2095b000a538323a309209a2a10427234ca62f9dd709b061231df2cb6f8
7
+ data.tar.gz: 7483dd3fa8e2392a65c7a81ca4a43f61f9df2e21611194b147e384343f882bfadc655d4ff261ce03973b05b8388b7c2c87647ef2a8eb2bfb6efcd16822096b82
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  * Your contribution here!
4
4
 
5
+ ## [0.27.0][] (2016-02-19)
6
+
7
+ * 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.
8
+ * Work around a regression in capistrano-bundler so that the Bundler path stays the same. See [capistrano-bundler #79](https://github.com/capistrano/bundler/pull/79).
9
+
5
10
  ## [0.26.0][] (2016-01-08)
6
11
 
7
12
  * Remove `mb:postgresql:tune` task. The [pgtune](https://github.com/gregs1104/pgtune) tool no longer works with the latest versions of PostgresSQL.
@@ -156,7 +161,8 @@ Flush console output after each line is printed. This allows deployment progress
156
161
 
157
162
  Initial Rubygems release!
158
163
 
159
- [Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.26.0...HEAD
164
+ [Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.27.0...HEAD
165
+ [0.27.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.26.0...v0.27.0
160
166
  [0.26.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.25.0...v0.26.0
161
167
  [0.25.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.24.0...v0.25.0
162
168
  [0.24.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.23.1...v0.24.0
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Matt Brictson
1
+ Copyright (c) 2016 Matt Brictson
2
2
 
3
3
  MIT License
4
4
 
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module MB
3
- VERSION = "0.26.0"
3
+ VERSION = "0.27.0"
4
4
  end
5
5
  end
@@ -105,11 +105,13 @@ namespace :load do
105
105
 
106
106
  set :bundle_binstubs, false
107
107
  set :bundle_flags, "--deployment --retry=3"
108
+ set :bundle_path, -> { shared_path.join("bundle") }
108
109
  set :deploy_to, -> { "/home/deployer/apps/#{fetch(:application)}" }
109
110
  set :keep_releases, 10
110
111
  set :linked_dirs, -> {
111
112
  ["public/#{fetch(:assets_prefix, 'assets')}"] +
112
113
  %w(
114
+ .bundle
113
115
  log
114
116
  tmp/pids
115
117
  tmp/cache
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.26.0
4
+ version: 0.27.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-01-08 00:00:00.000000000 Z
11
+ date: 2016-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano