capistrano-mb 0.26.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/LICENSE.txt +1 -1
- data/lib/capistrano/mb/version.rb +1 -1
- data/lib/capistrano/tasks/defaults.rake +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c895c6bcf73b79347cbeb34b0df4297c5ffffa46
|
|
4
|
+
data.tar.gz: ecba62c05ec81c5c7092d9de3041ff3767b7239e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
@@ -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.
|
|
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-
|
|
11
|
+
date: 2016-02-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|