devtunnel 1.0.3 → 1.1.0

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: 5979e382da8fa894cb98e4516c8c1c10b97da95f
4
- data.tar.gz: e132aa569bf31a29b41381707e48a454852ed0e9
3
+ metadata.gz: 4562e3dd4936ace84680b845d85257234b1eee15
4
+ data.tar.gz: c484d4a73681048eccaacccc159af793fa9cfb32
5
5
  SHA512:
6
- metadata.gz: b4ecd423f8729cd5938d58f0fbacdacb8441478ffe374c22aa7510b7ef89b938431f60e14ed203b008c5f664ac96669ceeb45d37239a065f1d78614be5215b0a
7
- data.tar.gz: 8feb8cd8f22f7e12db00df0f4ca62f739a1eb6757790ad365616b2cbb56f0fa448287be1635435609c238e8b38b83c5491831718ef4045f2887ce51a46ebea83
6
+ metadata.gz: c6883fce96a98a7441148b1c37d60597148e0352d85cda48bb318a9f5130444a6ce90e610904ede6b7793f1e0d47b53272e7b999218aec22074122855ccff70b
7
+ data.tar.gz: 12c47223285de3c1cb7da20ea2324dfee9bc9cd8f9eb5f08c6f3fcb79aeedbeb62b5379f85180ad3ce31ff8f80603fbfb2188dcd3f1d6de00a684045e1b201ed
data/bin/devtunnel CHANGED
@@ -5,7 +5,7 @@ require 'commander/import'
5
5
  require 'io/console'
6
6
 
7
7
  program :version, '0.0.1'
8
- program :description, 'Command-line interface for https://devtunnel.madebymarket.com.'
8
+ program :description, 'Command-line interface for http://devtunnel.link'
9
9
 
10
10
  default_command :upload
11
11
 
@@ -63,9 +63,9 @@ 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.madebymarket.com:#{fwd.port}"
66
+ puts "forwarding local port #{options.port} to http://devtunnel.link:#{fwd.port}"
67
67
  puts "hit ctrl+c or close your terminal session to end forwarding."
68
- `ssh -g -R #{fwd.port}:localhost:#{options.port} #{fwd.user}@devtunnel.madebymarket.com -p 2222 -N`
68
+ `ssh -g -R #{fwd.port}:localhost:#{options.port} #{fwd.user}@devtunnel.link -p 2222 -N`
69
69
 
70
70
  end
71
71
  end
data/devtunnel.gemspec CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
7
7
  spec.name = "devtunnel"
8
8
  spec.version = Devtunnel::VERSION
9
9
  spec.authors = ["Bryan Thompson"]
10
- spec.email = ["bryan@madebymarket.com"]
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.labs.madebymarket.com"
13
+ spec.homepage = "http://devtunnel.link"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
data/lib/devtunnel.rb CHANGED
@@ -8,7 +8,7 @@ require "json"
8
8
 
9
9
  module Devtunnel
10
10
  @api_key = nil
11
- @api_url = "https://devtunnel.madebymarket.com/api/v1"
11
+ @api_url = "http://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.0.3"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,82 +1,82 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devtunnel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-20 00:00:00.000000000 Z
11
+ date: 2016-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
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: rest-client
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: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.3'
48
48
  type: :development
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: '1.3'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
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: :development
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
69
  description: Uses your DevTunnel account to quickly and easily tunnel a local dev
70
70
  port to the world. Useful for pairing and sharing a local unicorn when behind a
71
71
  random NAT
72
72
  email:
73
- - bryan@madebymarket.com
73
+ - bryan@37chairs.com
74
74
  executables:
75
75
  - devtunnel
76
76
  extensions: []
77
77
  extra_rdoc_files: []
78
78
  files:
79
- - .gitignore
79
+ - ".gitignore"
80
80
  - Gemfile
81
81
  - LICENSE.txt
82
82
  - README.md
@@ -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.labs.madebymarket.com
95
+ homepage: http://devtunnel.link
96
96
  licenses:
97
97
  - MIT
98
98
  metadata: {}
@@ -102,17 +102,17 @@ require_paths:
102
102
  - lib
103
103
  required_ruby_version: !ruby/object:Gem::Requirement
104
104
  requirements:
105
- - - '>='
105
+ - - ">="
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  requirements:
110
- - - '>='
110
+ - - ">="
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
114
  rubyforge_project:
115
- rubygems_version: 2.2.2
115
+ rubygems_version: 2.4.8
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: How is this not the same as description?