devtunnel 1.1.0 → 1.1.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/bin/devtunnel +3 -3
- data/devtunnel.gemspec +1 -1
- data/lib/devtunnel.rb +1 -1
- data/lib/devtunnel/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: 748b226b6541d5d7316dd2a48f24bc774efb016a
|
|
4
|
+
data.tar.gz: 7ff72b6b3159ac4140979d011b0d76b7b5b003ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d678b2d38a7c76c163f051a6487b534a836ca6ea67a42f2078a3d974fb51dc00ea5871ff03f8623f6b63c68472d50273b36bda587a3e50fb6abc9a03970cbf39
|
|
7
|
+
data.tar.gz: 02330f6cfa1efd058dbfb390383b072279fb77190c7e226d5efb72cfb34684ef46ea79d253df6fa4c53b694e31f64622d41d45e058d62ffe72a2301ad3fe9eeb
|
data/bin/devtunnel
CHANGED
|
@@ -4,8 +4,8 @@ require 'devtunnel'
|
|
|
4
4
|
require 'commander/import'
|
|
5
5
|
require 'io/console'
|
|
6
6
|
|
|
7
|
-
program :version, '
|
|
8
|
-
program :description, 'Command-line interface for
|
|
7
|
+
program :version, '1.1.1'
|
|
8
|
+
program :description, 'Command-line interface for https://devtunnel.link'
|
|
9
9
|
|
|
10
10
|
default_command :upload
|
|
11
11
|
|
|
@@ -63,7 +63,7 @@ command :forward do |c|
|
|
|
63
63
|
|
|
64
64
|
fwd = Devtunnel::Account.forward options.port
|
|
65
65
|
|
|
66
|
-
puts "forwarding local port #{options.port} to
|
|
66
|
+
puts "forwarding local port #{options.port} to https://devtunnel.link:#{fwd.port}"
|
|
67
67
|
puts "hit ctrl+c or close your terminal session to end forwarding."
|
|
68
68
|
`ssh -g -R #{fwd.port}:localhost:#{options.port} #{fwd.user}@devtunnel.link -p 2222 -N`
|
|
69
69
|
|
data/devtunnel.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["bryan@37chairs.com"]
|
|
11
11
|
spec.description = %q{Uses your DevTunnel account to quickly and easily tunnel a local dev port to the world. Useful for pairing and sharing a local unicorn when behind a random NAT}
|
|
12
12
|
spec.summary = %q{How is this not the same as description?}
|
|
13
|
-
spec.homepage = "
|
|
13
|
+
spec.homepage = "https://devtunnel.link"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files`.split($/)
|
data/lib/devtunnel.rb
CHANGED
data/lib/devtunnel/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devtunnel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bryan Thompson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|
|
@@ -92,7 +92,7 @@ files:
|
|
|
92
92
|
- lib/devtunnel/entity.rb
|
|
93
93
|
- lib/devtunnel/success_response.rb
|
|
94
94
|
- lib/devtunnel/version.rb
|
|
95
|
-
homepage:
|
|
95
|
+
homepage: https://devtunnel.link
|
|
96
96
|
licenses:
|
|
97
97
|
- MIT
|
|
98
98
|
metadata: {}
|