opswalrus 1.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 052a555c9674e3835b9609c8b5040ed4c1a7fa5d78cc746b9bad9a64d610a2cd
4
+ data.tar.gz: e9c6dbad4a3d82cb5d59d823bdfe9f9533628a5deba6ac379164fb77518c3489
5
+ SHA512:
6
+ metadata.gz: febce81b7caa90a615a87443cc62a1cfc47642922d6a3b585b6d8fbdb545c29d4ca3d031e9dcfcc6d87eb7852b16b13d353e2089ea9cec156f4be017b943feb2
7
+ data.tar.gz: 384aadc1dc7fcb3311d49262b221679a3447c3c55a0154f97a880882ab3ed45510757b71be1a2e564cbff8ac433c63bef7808be6a1a6735c3e1587a11ee32d9f
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in opswalrus.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem "rspec", "~> 3.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,59 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ opswalrus (1.0.0)
5
+ bcrypt_pbkdf
6
+ citrus
7
+ ed25519
8
+ git
9
+ gli
10
+ rubyzip
11
+ sshkit
12
+
13
+ GEM
14
+ remote: https://rubygems.org/
15
+ specs:
16
+ addressable (2.8.5)
17
+ public_suffix (>= 2.0.2, < 6.0)
18
+ bcrypt_pbkdf (1.1.0)
19
+ citrus (3.0.2)
20
+ diff-lcs (1.5.0)
21
+ ed25519 (1.3.0)
22
+ git (1.18.0)
23
+ addressable (~> 2.8)
24
+ rchardet (~> 1.8)
25
+ gli (2.21.1)
26
+ net-scp (4.0.0)
27
+ net-ssh (>= 2.6.5, < 8.0.0)
28
+ net-ssh (7.2.0)
29
+ public_suffix (5.0.3)
30
+ rake (13.0.6)
31
+ rchardet (1.8.0)
32
+ rspec (3.12.0)
33
+ rspec-core (~> 3.12.0)
34
+ rspec-expectations (~> 3.12.0)
35
+ rspec-mocks (~> 3.12.0)
36
+ rspec-core (3.12.2)
37
+ rspec-support (~> 3.12.0)
38
+ rspec-expectations (3.12.3)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.12.0)
41
+ rspec-mocks (3.12.6)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.12.0)
44
+ rspec-support (3.12.1)
45
+ rubyzip (2.3.2)
46
+ sshkit (1.21.5)
47
+ net-scp (>= 1.1.2)
48
+ net-ssh (>= 2.8.0)
49
+
50
+ PLATFORMS
51
+ x86_64-linux
52
+
53
+ DEPENDENCIES
54
+ opswalrus!
55
+ rake (~> 13.0)
56
+ rspec (~> 3.0)
57
+
58
+ BUNDLED WITH
59
+ 2.4.10