capistrano-mb 0.29.0 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/capistrano/mb/dsl.rb +1 -3
- data/lib/capistrano/mb/version.rb +1 -1
- data/lib/capistrano/tasks/crontab.rake +1 -1
- 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: 9a05b43492beed1effeafad167eb836dcdc2e83e
|
4
|
+
data.tar.gz: cdace3cc174aab85a0354155b0dc26febaf7e00a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d06312acc750d0db5d34dfe095b12c09e43ea9cc331a39bac970912ca6f712ad911a834bb8168278f89badd316773ad0c70af7f2ae6880351264c8fdf05577f
|
7
|
+
data.tar.gz: 3bb73f1f8f0570ff1044279f05bd10dc8b7c161bc2fd0a080c00e300efbc2d2d46006fa590be5a3dc87dfea29b3ba189d42e699ab05474e6a0a5b3df8bc67909
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
* Your contribution here!
|
4
4
|
|
5
|
+
## [0.30.0][] (2016-08-30)
|
6
|
+
|
7
|
+
* Change the hooks such that `mb:crontab` is run at the end of every deployment,
|
8
|
+
rather than once during provisioning. This means that the crontab will now be
|
9
|
+
regenerated and installed every time you `cap deploy`.
|
10
|
+
* Fix a `NoMethodError` when showing certain compatibility warnings [#14](https://github.com/mattbrictson/capistrano-mb/issues/14)
|
11
|
+
|
5
12
|
## [0.29.0][] (2016-07-19)
|
6
13
|
|
7
14
|
* Add `public/.well-known` to `:linked_dirs` to support Let's Encrypt renewals.
|
@@ -174,7 +181,8 @@ Flush console output after each line is printed. This allows deployment progress
|
|
174
181
|
|
175
182
|
Initial Rubygems release!
|
176
183
|
|
177
|
-
[Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.
|
184
|
+
[Unreleased]: https://github.com/mattbrictson/capistrano-mb/compare/v0.30.0...HEAD
|
185
|
+
[0.30.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.29.0...v0.30.0
|
178
186
|
[0.29.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.28.0...v0.29.0
|
179
187
|
[0.28.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.27.0...v0.28.0
|
180
188
|
[0.27.0]: https://github.com/mattbrictson/capistrano-mb/compare/v0.26.0...v0.27.0
|
data/lib/capistrano/mb/dsl.rb
CHANGED
@@ -22,9 +22,7 @@ module Capistrano
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def compatibility_warning(warning)
|
25
|
-
warning
|
26
|
-
warning = warning.colorize(:red) if $stderr.tty?
|
27
|
-
$stderr.puts(warning)
|
25
|
+
Capistrano::MB::Compatibility.warn(warning)
|
28
26
|
end
|
29
27
|
|
30
28
|
# Helper for calling fetch(:application) and making the value safe for
|
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.30.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-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|