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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad52af85598f814eb28d2d4469ebd3f8cb69e931
4
- data.tar.gz: c8574fcc2cb05a724d542a75e45f939fabcfd908
3
+ metadata.gz: 9a05b43492beed1effeafad167eb836dcdc2e83e
4
+ data.tar.gz: cdace3cc174aab85a0354155b0dc26febaf7e00a
5
5
  SHA512:
6
- metadata.gz: 310f28261646b039ddad8798475b30383101b7a2a34766c2befa1b8732e3db4f624c524d201e4f9edf35793fe64d44624d5938d58a7199cecd83087be8131007
7
- data.tar.gz: 3ddc52c253ce52352ab8b5bae31e526585366c12986b2aab0d175eb51a473a8184d11c4936123449393c673a15d0963148c0749f39afbe178f6e0c53ba4c4005
6
+ metadata.gz: 8d06312acc750d0db5d34dfe095b12c09e43ea9cc331a39bac970912ca6f712ad911a834bb8168278f89badd316773ad0c70af7f2ae6880351264c8fdf05577f
7
+ data.tar.gz: 3bb73f1f8f0570ff1044279f05bd10dc8b7c161bc2fd0a080c00e300efbc2d2d46006fa590be5a3dc87dfea29b3ba189d42e699ab05474e6a0a5b3df8bc67909
@@ -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.29.0...HEAD
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
@@ -22,9 +22,7 @@ module Capistrano
22
22
  end
23
23
 
24
24
  def compatibility_warning(warning)
25
- warning = "WARNING: #{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
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module MB
3
- VERSION = "0.29.0".freeze
3
+ VERSION = "0.30.0".freeze
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
1
  mb_recipe :crontab do
2
- during :provision, "mb:crontab"
2
+ during "deploy:published", "mb:crontab"
3
3
  end
4
4
 
5
5
  namespace :mb do
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.29.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-07-19 00:00:00.000000000 Z
11
+ date: 2016-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capistrano