sshkit 1.21.6 → 1.21.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +13 -55
- data/lib/sshkit/version.rb +1 -1
- data/sshkit.gemspec +1 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33d280d41b8674934f244cd9a094ebeb3d34dfb0d700fd172f0a3e4ed25ccd01
|
4
|
+
data.tar.gz: 2f75eb42f4ffa10eaa44e1c35fdccc169f334ca4498c1864c414bfad83138a86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4206a3850adb7e7f666e2031dba9681aef7d236e04baac0cd584f07e118babe25cbfdb49efae13419be567ce870f28ccc33d128538e462d2091a76712f9c1b12
|
7
|
+
data.tar.gz: 622f95a26e026ed0842e3bd1759518303145616ed8b8348e0ebe2a8b5bac5a0c0359118258a56b538ada3a30586542c2e6aa29592a86c51b44c4e06719038bce
|
data/.github/workflows/ci.yml
CHANGED
@@ -8,7 +8,19 @@ jobs:
|
|
8
8
|
runs-on: ubuntu-latest
|
9
9
|
strategy:
|
10
10
|
matrix:
|
11
|
-
ruby:
|
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
|
data/lib/sshkit/version.rb
CHANGED
data/sshkit.gemspec
CHANGED
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.
|
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-
|
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.
|
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
|