sshkit 1.21.6 → 1.21.7

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: c02076e3d45e9cc2eeac09d86836d8d76b957e62effe234e8f35cc946097683a
4
- data.tar.gz: 748296139afb794afe86828c674a8bb41b8e080f77b8c65d3120b2c8842b481e
3
+ metadata.gz: 33d280d41b8674934f244cd9a094ebeb3d34dfb0d700fd172f0a3e4ed25ccd01
4
+ data.tar.gz: 2f75eb42f4ffa10eaa44e1c35fdccc169f334ca4498c1864c414bfad83138a86
5
5
  SHA512:
6
- metadata.gz: f62b86ebfe3ff109d1cb6445b0a361256a5b316320706acda4a2c57cf160b8ee37086060ad15f21063e809a8b07549b01a5c92c5210e18694b88e6249ea6602f
7
- data.tar.gz: 58e77e7514508a4c8bcbfa4f1d5b789079da62cd2ffaee7de81c38efcd2760a47f8b61049a8c284e9193ca9d1cbdc8a31fadc48c7513f9e3cec7156dd172ab6c
6
+ metadata.gz: 4206a3850adb7e7f666e2031dba9681aef7d236e04baac0cd584f07e118babe25cbfdb49efae13419be567ce870f28ccc33d128538e462d2091a76712f9c1b12
7
+ data.tar.gz: 622f95a26e026ed0842e3bd1759518303145616ed8b8348e0ebe2a8b5bac5a0c0359118258a56b538ada3a30586542c2e6aa29592a86c51b44c4e06719038bce
@@ -8,7 +8,19 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
  strategy:
10
10
  matrix:
11
- ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "head"]
11
+ ruby:
12
+ [
13
+ "2.3",
14
+ "2.4",
15
+ "2.5",
16
+ "2.6",
17
+ "2.7",
18
+ "3.0",
19
+ "3.1",
20
+ "3.2",
21
+ "3.3",
22
+ "head",
23
+ ]
12
24
  steps:
13
25
  - uses: actions/checkout@v4
14
26
  - name: Set up Ruby
@@ -57,57 +69,3 @@ jobs:
57
69
  bundler-cache: true
58
70
  - name: Run rubocop
59
71
  run: bundle exec rake lint
60
-
61
- functional:
62
- runs-on: macos-12
63
- strategy:
64
- matrix:
65
- ruby:
66
- [
67
- "2.0",
68
- "2.1",
69
- "2.2",
70
- "2.3",
71
- "2.4",
72
- "2.5",
73
- "2.6",
74
- "2.7",
75
- "3.0",
76
- "3.1",
77
- "3.2",
78
- "head",
79
- ]
80
- steps:
81
- - uses: actions/checkout@v4
82
-
83
- - name: Cache Vagrant boxes
84
- uses: actions/cache@v3
85
- with:
86
- path: ~/.vagrant.d/boxes
87
- key: ${{ runner.os }}-vagrant-v2-${{ hashFiles('Vagrantfile') }}
88
- restore-keys: |
89
- ${{ runner.os }}-vagrant-v2-
90
-
91
- - name: Run vagrant up
92
- run: vagrant up
93
-
94
- - name: Set up Ruby
95
- uses: ruby/setup-ruby@v1
96
- with:
97
- ruby-version: ${{ matrix.ruby }}
98
- bundler-cache: true
99
-
100
- - name: Run functional tests
101
- run: bundle exec rake test:functional
102
-
103
- functional-all:
104
- runs-on: ubuntu-latest
105
- needs: [functional]
106
- if: always()
107
- steps:
108
- - name: All tests ok
109
- if: ${{ !(contains(needs.*.result, 'failure')) }}
110
- run: exit 0
111
- - name: Some tests failed
112
- if: ${{ contains(needs.*.result, 'failure') }}
113
- run: exit 1
@@ -1,3 +1,3 @@
1
1
  module SSHKit
2
- VERSION = "1.21.6".freeze
2
+ VERSION = "1.21.7".freeze
3
3
  end
data/sshkit.gemspec CHANGED
@@ -20,6 +20,7 @@ Gem::Specification.new do |gem|
20
20
  gem.require_paths = ["lib"]
21
21
  gem.version = SSHKit::VERSION
22
22
 
23
+ gem.add_runtime_dependency('mutex_m')
23
24
  gem.add_runtime_dependency('net-ssh', '>= 2.8.0')
24
25
  gem.add_runtime_dependency('net-scp', '>= 1.1.2')
25
26
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sshkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.21.6
4
+ version: 1.21.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Hambley
@@ -9,8 +9,22 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-11-17 00:00:00.000000000 Z
12
+ date: 2023-12-26 00:00:00.000000000 Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: mutex_m
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
14
28
  - !ruby/object:Gem::Dependency
15
29
  name: net-ssh
16
30
  requirement: !ruby/object:Gem::Requirement
@@ -291,7 +305,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
291
305
  - !ruby/object:Gem::Version
292
306
  version: '0'
293
307
  requirements: []
294
- rubygems_version: 3.4.21
308
+ rubygems_version: 3.5.3
295
309
  signing_key:
296
310
  specification_version: 4
297
311
  summary: SSHKit makes it easy to write structured, testable SSH commands in Ruby