devtunnel 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4562e3dd4936ace84680b845d85257234b1eee15
4
- data.tar.gz: c484d4a73681048eccaacccc159af793fa9cfb32
3
+ metadata.gz: 748b226b6541d5d7316dd2a48f24bc774efb016a
4
+ data.tar.gz: 7ff72b6b3159ac4140979d011b0d76b7b5b003ec
5
5
  SHA512:
6
- metadata.gz: c6883fce96a98a7441148b1c37d60597148e0352d85cda48bb318a9f5130444a6ce90e610904ede6b7793f1e0d47b53272e7b999218aec22074122855ccff70b
7
- data.tar.gz: 12c47223285de3c1cb7da20ea2324dfee9bc9cd8f9eb5f08c6f3fcb79aeedbeb62b5379f85180ad3ce31ff8f80603fbfb2188dcd3f1d6de00a684045e1b201ed
6
+ metadata.gz: d678b2d38a7c76c163f051a6487b534a836ca6ea67a42f2078a3d974fb51dc00ea5871ff03f8623f6b63c68472d50273b36bda587a3e50fb6abc9a03970cbf39
7
+ data.tar.gz: 02330f6cfa1efd058dbfb390383b072279fb77190c7e226d5efb72cfb34684ef46ea79d253df6fa4c53b694e31f64622d41d45e058d62ffe72a2301ad3fe9eeb
@@ -4,8 +4,8 @@ require 'devtunnel'
4
4
  require 'commander/import'
5
5
  require 'io/console'
6
6
 
7
- program :version, '0.0.1'
8
- program :description, 'Command-line interface for http://devtunnel.link'
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 http://devtunnel.link:#{fwd.port}"
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
 
@@ -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 = "http://devtunnel.link"
13
+ spec.homepage = "https://devtunnel.link"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
@@ -8,7 +8,7 @@ require "json"
8
8
 
9
9
  module Devtunnel
10
10
  @api_key = nil
11
- @api_url = "http://devtunnel.link/api/v1"
11
+ @api_url = "https://devtunnel.link/api/v1"
12
12
 
13
13
  def self.api_key=(api_key)
14
14
  @api_key = api_key
@@ -1,3 +1,3 @@
1
1
  module Devtunnel
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
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.0
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-14 00:00:00.000000000 Z
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: http://devtunnel.link
95
+ homepage: https://devtunnel.link
96
96
  licenses:
97
97
  - MIT
98
98
  metadata: {}