pipe2me-client 0.2.11 → 0.2.12

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
  SHA1:
3
- metadata.gz: 7ad2a840c6ac8ad3b315d94b0c9ab610c710d860
4
- data.tar.gz: 0849c604f70e4752a8fb4145fe03d24e797ef544
3
+ metadata.gz: c691420121289dd7bdb35a6f92888035c2047ac0
4
+ data.tar.gz: 8deadf734dfdd8ddd91d0c3d5079c3f5f0457953
5
5
  SHA512:
6
- metadata.gz: b7a39d2a5a12c7584692498d33e57ba83bb3e836ddbeb76e4a710839fab652ecdf3280bcc9a3b65599d4209d82498c601b205ecc678ebc4734bfe4475491fcf8
7
- data.tar.gz: f706ae1c5c294990875e09b252a5b315d7cbdb7bf974ab0086a4a6f6885028e45610c324edfd46bcde3a4a2ea72345472557f02caa9a6e8de6cefe15cbb29912
6
+ metadata.gz: 6d12deddd45d28df443cf9b0f71505805f272f92bb6bbe4ce40fe4b83889dbca26c9bb7e4c23cd39530315b9971520f833e3424bcf6b771826631d1e97654b15
7
+ data.tar.gz: 67b02658dcd236efecc9b76cbc495b4d3db1dbd6439a6f27625355090f86e8ea38fdf984c6cfc87f603f62d6331c041168d20ac15712608f6ec266064c3a63b3
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  This is the ruby client for the pipe2me server package.
4
4
  The pipe2me client lets you publish local services to the public internet
5
5
  with the help and orchestration of a pipe2me server. For more details
6
- see [pipe2me](https://github.com/kinko/pipe2me)
6
+ see [pipe2me](https://github.com/kinkome/pipe2me)
7
7
 
8
8
  ## Installation
9
9
 
@@ -23,7 +23,7 @@ class Pipe2me::CLI < Thor
23
23
  end
24
24
 
25
25
  config = Pipe2me::Tunnel.send(:config)
26
- fqdn = config[:fqdn]
26
+ fqdn = config.fqdn
27
27
 
28
28
  Pipe2me::Tunnel.tunnels.each do |protocol, remote_port, local_port|
29
29
  UI.success "Tunneling #{protocol}://localhost:#{local_port} <=> #{protocol}://#{fqdn}:#{remote_port}"
@@ -1,4 +1,4 @@
1
1
  module Pipe2me
2
- VERSION = "0.2.11"
2
+ VERSION = "0.2.12"
3
3
  BANNER = "pipe2me command line client V#{Pipe2me::VERSION}; (c) The kinko team, 2013, 2014."
4
4
  end
metadata CHANGED
@@ -1,80 +1,82 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pipe2me-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.11
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - radiospiel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-06 00:00:00.000000000 Z
11
+ date: 2014-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: thor
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: foreman
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: simple-ui
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: pipe2me command line client V0.2.11; (c) The kinko team, 2013, 2014.
69
+ description: pipe2me command line client V0.2.12; (c) The kinko team, 2013, 2014.
70
70
  email: contact@kinko.me
71
71
  executables:
72
72
  - pipe2me
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - README.md
76
77
  - bin/pipe2me
77
78
  - bin/pipe2med
79
+ - lib/pipe2me.rb
78
80
  - lib/pipe2me/bin/natpmpc
79
81
  - lib/pipe2me/cli-foreman.rb
80
82
  - lib/pipe2me/cli-monit.rb
@@ -84,6 +86,7 @@ files:
84
86
  - lib/pipe2me/ext/http.rb
85
87
  - lib/pipe2me/ext/shell_format.rb
86
88
  - lib/pipe2me/ext/sys.rb
89
+ - lib/pipe2me/tunnel.rb
87
90
  - lib/pipe2me/tunnel/commands.rb
88
91
  - lib/pipe2me/tunnel/echo/http
89
92
  - lib/pipe2me/tunnel/echo/https
@@ -91,13 +94,10 @@ files:
91
94
  - lib/pipe2me/tunnel/openssl.rb
92
95
  - lib/pipe2me/tunnel/ssh.rb
93
96
  - lib/pipe2me/tunnel/ssh_config
94
- - lib/pipe2me/tunnel.rb
95
97
  - lib/pipe2me/version.rb
96
98
  - lib/pipe2me/which.rb
97
- - lib/pipe2me.rb
98
99
  - rakelib/gem.rake
99
100
  - rakelib/test.rake
100
- - README.md
101
101
  - test/000-roundup-test.sh
102
102
  - test/auth-token-test.sh
103
103
  - test/env-test.sh
@@ -121,18 +121,18 @@ require_paths:
121
121
  - lib
122
122
  required_ruby_version: !ruby/object:Gem::Requirement
123
123
  requirements:
124
- - - '>='
124
+ - - ">="
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  required_rubygems_version: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - '>='
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.0.3
134
+ rubygems_version: 2.2.2
135
135
  signing_key:
136
136
  specification_version: 4
137
- summary: pipe2me command line client V0.2.11; (c) The kinko team, 2013, 2014.
137
+ summary: pipe2me command line client V0.2.12; (c) The kinko team, 2013, 2014.
138
138
  test_files: []