sshman 0.3.3 → 0.4.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 +4 -4
- data/.gitattributes +2 -0
- data/.gitignore +71 -0
- data/Gemfile +8 -0
- data/LICENSE +674 -0
- data/README.md +93 -0
- data/exe/sshman +4 -6
- data/images/sshman.gif +0 -0
- data/lib/sshman/cli.rb +62 -85
- data/lib/sshman/connection.rb +30 -0
- data/lib/sshman/manager.rb +52 -0
- data/lib/sshman/tui.rb +136 -0
- data/lib/sshman/version.rb +2 -2
- data/lib/sshman.rb +9 -0
- data/sshman.gemspec +31 -0
- metadata +106 -19
- data/lib/sshman/constants.rb +0 -8
- data/lib/sshman/key_manager.rb +0 -38
- data/lib/sshman/server_manager.rb +0 -131
- data/lib/sshman/sshman.rb +0 -4
- data/lib/sshman/utils.rb +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4f2229c12419a1047d002c3ee41d3cca8edcbe9878f737e418b6fb908d7d90e
|
4
|
+
data.tar.gz: eeca30f29d6323e81f0821c8a6e7fc2cb34ee9f6403139344e6132575479f620
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e952cf88088a3c50c23bcd61f032bade67d54db94c35338f0720fa8643f8b7a0e5fc5179d1d32814c4d8288d315ecac38e4b6aaf076b572fef26bd6bce1c0ae6
|
7
|
+
data.tar.gz: 7556fe378f4cfc6ce15081f43b6484391c120196270ef848ba1c9ecff8973b3ce1ebd876fdd52ae73bc0ac5f9e855c4d9b747c5f9a83ab1c0046abc0a1fc5469
|
data/.gitattributes
ADDED
data/.gitignore
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
15
|
+
|
16
|
+
# Ignore Byebug command history file.
|
17
|
+
.byebug_history
|
18
|
+
|
19
|
+
## Specific to RubyMotion:
|
20
|
+
.dat*
|
21
|
+
.repl_history
|
22
|
+
build/
|
23
|
+
*.bridgesupport
|
24
|
+
build-iPhoneOS/
|
25
|
+
build-iPhoneSimulator/
|
26
|
+
|
27
|
+
## Specific to RubyMotion (use of CocoaPods):
|
28
|
+
#
|
29
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
30
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
31
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
32
|
+
#
|
33
|
+
# vendor/Pods/
|
34
|
+
|
35
|
+
## Documentation cache and generated files:
|
36
|
+
/.yardoc/
|
37
|
+
/_yardoc/
|
38
|
+
/doc/
|
39
|
+
/rdoc/
|
40
|
+
|
41
|
+
## Environment normalization:
|
42
|
+
/.bundle/
|
43
|
+
/vendor/bundle
|
44
|
+
/lib/bundler/man/
|
45
|
+
|
46
|
+
# Ignore the built gem files
|
47
|
+
*.gem
|
48
|
+
|
49
|
+
# Ignore bundler config
|
50
|
+
.bundle/
|
51
|
+
|
52
|
+
# Ignore system gem files and installed gems
|
53
|
+
vendor/
|
54
|
+
.ruby-version
|
55
|
+
.rbenv-gemsets
|
56
|
+
.rbenv-vars
|
57
|
+
.rvmrc
|
58
|
+
.rvm/
|
59
|
+
|
60
|
+
# Ignore log and temporary files
|
61
|
+
*.log
|
62
|
+
*.tmp
|
63
|
+
*.swp
|
64
|
+
|
65
|
+
# Ignore local Ruby gem installation directories
|
66
|
+
/.bundle
|
67
|
+
/vendor/bundle
|
68
|
+
/.gem
|
69
|
+
|
70
|
+
# Ignore coverage reports
|
71
|
+
coverage/
|