capistrano 3.12.1 → 3.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e6902f1b95e700ed6ab3bd8f5bfe3db621b56095debb6572c074908f0003928
4
- data.tar.gz: a2568795b19a6756a907e5fbb8bf6840b2b6b314ff504aca69b5492bfef8da76
3
+ metadata.gz: 71ad447b5231ffd0ce9b2cdfeac4f3a1ef81fe5750f0c6507011efb61da342aa
4
+ data.tar.gz: 737df44c0d61daa01736d5f3a7a348e8b5fa960db0906143cf84d4acf41ac94a
5
5
  SHA512:
6
- metadata.gz: 268bfb7df54ae471d795f24894d03ce927273bfcae92d7f8b7ba6e1321a83dc84182b80687abcb27ab8faee5b83107d9b810b955e929ecf788cc2aa3eec33449
7
- data.tar.gz: 8c8493764988091da5bce0ec7258469cad5d1f346abf8e16e32c6a97ec62f845dba8cbf47ec8b448b7b190cdfbf430feca95341e95b9041802b9c42ae0599a99
6
+ metadata.gz: ff9d18efd38e4e185154ffdef2873e6465a73c5fbedbdf972e52c78b60c9d3710d4bf5c158345804d88fa1661d17860243c0be931a4a0521a28edec2860b7633
7
+ data.tar.gz: 73e2a27610d97bb35f1db187c259646ef29687b253829c6d395e871c4d7d2de887c28de1bca7625c45fe4b62fa3c4fce7947bf4716642474fd3158ae8e61d261
@@ -13,14 +13,10 @@ to keep the conversation linked together.
13
13
  - [ ] Did you run `bundle exec rubocop -a` to fix linter issues?
14
14
  - [ ] If relevant, did you create a test?
15
15
  - [ ] Did you confirm that the RSpec tests pass?
16
- - [ ] If you are fixing a bug or introducing a new feature, did you add a CHANGELOG entry?
17
16
 
18
17
  ### Other Information
19
18
 
20
19
  If there's anything else that's important and relevant to your pull
21
20
  request, mention that information here.
22
21
 
23
- If you are updating any of the CHANGELOG files or are asked to update the
24
- CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the file where indicated.
25
-
26
22
  Thanks for helping improve Capistrano!
data/README.md CHANGED
@@ -107,7 +107,7 @@ Add Capistrano to your project's Gemfile using `require: false`:
107
107
 
108
108
  ``` ruby
109
109
  group :development do
110
- gem "capistrano", "~> 3.12", require: false
110
+ gem "capistrano", "~> 3.13", require: false
111
111
  end
112
112
  ```
113
113
 
@@ -6,7 +6,7 @@ namespace :git do
6
6
  task :wrapper do
7
7
  on release_roles(:all), in: :groups, limit: fetch(:git_max_concurrent_connections), wait: fetch(:git_wait_interval) do
8
8
  execute :mkdir, "-p", File.dirname(fetch(:git_wrapper_path)).shellescape
9
- upload! StringIO.new("#!/bin/sh -e\nexec /usr/bin/ssh -o PasswordAuthentication=no -o StrictHostKeyChecking=no \"$@\"\n"), fetch(:git_wrapper_path)
9
+ upload! StringIO.new("#!/bin/sh -e\nexec /usr/bin/env ssh -o PasswordAuthentication=no -o StrictHostKeyChecking=no \"$@\"\n"), fetch(:git_wrapper_path)
10
10
  execute :chmod, "700", fetch(:git_wrapper_path).shellescape
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module Capistrano
2
- VERSION = "3.12.1".freeze
2
+ VERSION = "3.13.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.12.1
4
+ version: 3.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-03-10 00:00:00.000000000 Z
12
+ date: 2020-04-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: airbrussh