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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95b126861e05a2fb4a50da69ab3060075a854414c3b963fc8ad89ecff1fbfb77
4
- data.tar.gz: fcce6a2de34434038680d4782c2e715004ab64dfe60a672fc531084c40b21982
3
+ metadata.gz: f4f2229c12419a1047d002c3ee41d3cca8edcbe9878f737e418b6fb908d7d90e
4
+ data.tar.gz: eeca30f29d6323e81f0821c8a6e7fc2cb34ee9f6403139344e6132575479f620
5
5
  SHA512:
6
- metadata.gz: 07e18d13632d2743542c862d2052bd43aa3a274e2ad1844fbcd34c208b16c8ae4ef672bdb1dd987798401c42ed738c829c02ab17d46c832aae6195e96d441662
7
- data.tar.gz: 737a39f39c65b9d8378a6d8d08c8f7a466a583e0622eb568a8f414463e03ca54df169c808bf338cb5da6b305800f06efb175a121897428d27ed544aafceb3909
6
+ metadata.gz: e952cf88088a3c50c23bcd61f032bade67d54db94c35338f0720fa8643f8b7a0e5fc5179d1d32814c4d8288d315ecac38e4b6aaf076b572fef26bd6bce1c0ae6
7
+ data.tar.gz: 7556fe378f4cfc6ce15081f43b6484391c120196270ef848ba1c9ecff8973b3ce1ebd876fdd52ae73bc0ac5f9e855c4d9b747c5f9a83ab1c0046abc0a1fc5469
data/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
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/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # Gemfile
2
+ source 'https://rubygems.org'
3
+
4
+ gemspec
5
+
6
+ gem 'thor'
7
+ gem 'tty-table'
8
+ gem 'tty-prompt'