capistrano-template 0.0.8 → 0.0.9
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 +10 -2
- data/lib/capistrano/capistrano_plugin_template.rb +8 -0
- data/lib/capistrano/template/version.rb +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: 04267f53fb24b3b2664276f6ebde4cc65706684e
|
|
4
|
+
data.tar.gz: 8d30bea6323aaa016db703ff125330ee217bb512
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69a9af674bb9b1355ad64187e0f296b2145578422b58984787655361f6618779b2b122e91dd8b8c0fc0fd37e995bf3ef6f9b5fbf880f45d28b91687d67461b5a
|
|
7
|
+
data.tar.gz: 2c321ddd4ffa9bccb5483024abb60de2b18dc6494bcfdb951e569912fa49ee6d4a9e0f727cf8ad38c3baccc891f7b758683fbb351072511f572f0237546332fa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.10(next)
|
|
2
|
+
=================
|
|
3
|
+
|
|
4
|
+
0.0.9 (23/06/2017)
|
|
2
5
|
==================
|
|
3
6
|
|
|
7
|
+
#### Fixes
|
|
8
|
+
|
|
9
|
+
* [#14](https://github.com/faber-lotto/capistrano-template/14): Fixes an issue with printer backend. [@slowjack2k](https://github.com/slowjack2k).
|
|
10
|
+
|
|
11
|
+
|
|
4
12
|
0.0.8 (21/05/2017)
|
|
5
13
|
==================
|
|
6
14
|
|
|
@@ -32,4 +40,4 @@ skipped
|
|
|
32
40
|
|
|
33
41
|
#### Fixes
|
|
34
42
|
|
|
35
|
-
* [#4](https://github.com/faber-lotto/capistrano-template/pull/4): Fix for `Digest::Base cannot be directly inherited in Ruby` race condition within ruby digest - [@slowjack2k](https://github.com/slowjack2k).
|
|
43
|
+
* [#4](https://github.com/faber-lotto/capistrano-template/pull/4): Fix for `Digest::Base cannot be directly inherited in Ruby` race condition within ruby digest - [@slowjack2k](https://github.com/slowjack2k).
|
|
@@ -6,4 +6,12 @@ extend Capistrano::Template::Helpers::DSL
|
|
|
6
6
|
|
|
7
7
|
SSHKit::Backend::Netssh.send(:include, Capistrano::Template::Helpers::DSL)
|
|
8
8
|
|
|
9
|
+
# rubocop: disable Lint/HandleExceptions
|
|
10
|
+
begin
|
|
11
|
+
require 'sshkit/backend/printer'
|
|
12
|
+
SSHKit::Backend::Printer.send(:include, Capistrano::Template::Helpers::DSL)
|
|
13
|
+
rescue LoadError
|
|
14
|
+
end
|
|
15
|
+
# rubocop: enable Lint/HandleExceptions
|
|
16
|
+
|
|
9
17
|
import File.join(__dir__, 'template', 'tasks', 'template_defaults.rake')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dieter Späth
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|