pipe2me-client 0.3.1 → 0.3.2
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/lib/pipe2me/tunnel.rb +2 -1
- data/lib/pipe2me/tunnel/commands.rb +1 -1
- data/lib/pipe2me/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f861bfb0c5e9d286a03351bbcbb94e3d4bf0a528
|
|
4
|
+
data.tar.gz: d76bd88f4f44eb2ad99592697391e0dd329c3692
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5bbab396352681165c6ccea0591bf80370385a1281fe5abab4d3d535a5beed270d62bbe3f19950d865442d5411b7b900ed112bc6b73326ca02e18bc5f0bb27e
|
|
7
|
+
data.tar.gz: d0cd7fb07e2e1fd4493c5d16cc6ea1c33b7304a3431f1c9dcdbbe20d10e0f680e531e1ec70fa931316d4217c721572a71502e14095448a92841e89576cc7dde3
|
data/lib/pipe2me/tunnel.rb
CHANGED
|
@@ -17,7 +17,8 @@ module Pipe2me::Tunnel
|
|
|
17
17
|
[
|
|
18
18
|
SSL_KEY, SSL_CERT, SSL_CACERT, SSH_PUBKEY, SSH_PRIVKEY, SSH_CONFIG,
|
|
19
19
|
"pipe2me.info.inc", "pipe2me.local.inc",
|
|
20
|
-
"pipe2me.openssl.priv.csr", "pipe2me.openssl.rnd"
|
|
20
|
+
"pipe2me.openssl.priv.csr", "pipe2me.openssl.rnd",
|
|
21
|
+
"pipe2me.known_hosts"
|
|
21
22
|
].each do |base|
|
|
22
23
|
next unless File.exist?(base)
|
|
23
24
|
UI.info "Deleting #{base}"
|
|
@@ -17,7 +17,7 @@ module Pipe2me::Tunnel::Commands
|
|
|
17
17
|
urls, ports = config.urls, config.ports.split(",")
|
|
18
18
|
urls.zip(ports).map do |url, local_port|
|
|
19
19
|
uri = URI.parse(url)
|
|
20
|
-
Spec.new uri.scheme,
|
|
20
|
+
Spec.new uri.scheme, uri.host, uri.port, local_port || uri.port
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
|
data/lib/pipe2me/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pipe2me-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- radiospiel
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description: pipe2me command line client V0.3.
|
|
55
|
+
description: pipe2me command line client V0.3.2; (c) The kinko.me team, 2013, 2014.
|
|
56
56
|
email: contact@kinko.me
|
|
57
57
|
executables:
|
|
58
58
|
- pipe2me
|
|
@@ -114,5 +114,5 @@ rubyforge_project:
|
|
|
114
114
|
rubygems_version: 2.2.2
|
|
115
115
|
signing_key:
|
|
116
116
|
specification_version: 4
|
|
117
|
-
summary: pipe2me command line client V0.3.
|
|
117
|
+
summary: pipe2me command line client V0.3.2; (c) The kinko.me team, 2013, 2014.
|
|
118
118
|
test_files: []
|