pipe2me-client 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/pipe2me +2 -2
- data/lib/pipe2me/tunnel/commands.rb +7 -1
- data/lib/pipe2me/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c23b048f9b8593b9ab933de3f2e7923e0d181a82
|
4
|
+
data.tar.gz: 9077ed28e74e074a9ad0aa35dfaeb829e31811b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea57ec0fc6732574a3f6343dddfabd67f8e64604882e42fb836ae66cef4035a8c990fe3f718ea9ca676435dc98f3817c19c2fb55ca1dded9393f6123d161627d
|
7
|
+
data.tar.gz: 063210c0cacdbd5cc2bf0c7b278ca4bcea9134fbfe067ae7913056781028e541f9fac8496bd3c5d768b71e6818d13acdcc48260b5bbc471d58933899c05e5f20
|
data/bin/pipe2me
CHANGED
@@ -35,9 +35,15 @@ module Pipe2me::Tunnel::Commands
|
|
35
35
|
end
|
36
36
|
|
37
37
|
private
|
38
|
+
|
39
|
+
def which!(cmd)
|
40
|
+
path = `which #{cmd}`.chomp
|
41
|
+
raise "Cannot find #{cmd} in your $PATH. Is it installed?"
|
42
|
+
path
|
43
|
+
end
|
38
44
|
|
39
45
|
def port_tunnel_command(tunnel_uri, protocol, remote_port, local_port)
|
40
|
-
|
46
|
+
which! :autossh
|
41
47
|
|
42
48
|
cmd = <<-SHELL
|
43
49
|
env AUTOSSH_GATETIME=0 # comments work here..
|
data/lib/pipe2me/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pipe2me-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- radiospiel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-01-
|
11
|
+
date: 2014-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description: pipe2me command line client V0.2.
|
69
|
+
description: pipe2me command line client V0.2.7; (c) The kink team, 2013, 2014.
|
70
70
|
email: contact@kinko.me
|
71
71
|
executables:
|
72
72
|
- pipe2me
|
@@ -131,5 +131,5 @@ rubyforge_project:
|
|
131
131
|
rubygems_version: 2.2.1
|
132
132
|
signing_key:
|
133
133
|
specification_version: 4
|
134
|
-
summary: pipe2me command line client V0.2.
|
134
|
+
summary: pipe2me command line client V0.2.7; (c) The kink team, 2013, 2014.
|
135
135
|
test_files: []
|