multitunnels 1.0.0 → 1.0.1
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/.gitignore +1 -0
- data/README.md +2 -2
- data/lib/tunnels.rb +5 -5
- data/lib/tunnels/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96d6b4eb916daf80561c9c02514753883c61e322
|
4
|
+
data.tar.gz: 66b3abbe084a87245b39245ed0ca7fb41f6118d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3cf787c20df1330aa7340996132a39bd752e8d53d6a9b2e5d4ac8522186ee2b3827b62f5e51b25400f17b2bb4590efaaca1e41d482c98df2b0be212c609d0f0
|
7
|
+
data.tar.gz: a29d6e85a28278d081d6dfd3e9717b9e6823a0f9409e3787d628d467c3e0cdd369693f9425827eb769ddf8206c826e859ea958e2ea385c93a974cc69666e6f5f
|
data/.gitignore
CHANGED
data/README.md
CHANGED
data/lib/tunnels.rb
CHANGED
@@ -40,13 +40,13 @@ module Tunnels
|
|
40
40
|
def self.help
|
41
41
|
<<-HELP
|
42
42
|
Usage:
|
43
|
-
|
43
|
+
multitunnels [from to] [from2 to2] ...
|
44
44
|
|
45
45
|
Examples:
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
46
|
+
multitunnels 443 3000
|
47
|
+
multitunnels localhost:443 localhost:3000
|
48
|
+
multitunnels https://:443 http://:3000
|
49
|
+
multitunnels https://localhost:443 http://localhost:3000
|
50
50
|
|
51
51
|
HELP
|
52
52
|
end
|
data/lib/tunnels/version.rb
CHANGED