ngrok-tunnel 1.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ca6bf750325cd01425d06a581329da3c50e3f4a7
4
+ data.tar.gz: c3d1f8a5acc781598882792e5b99896295a485c4
5
+ SHA512:
6
+ metadata.gz: 911ba4c6d25a317b580eba31971b3c732782aad259d88778956f21cfed4dc6375c323dfe1b20473e2629a799e449725162e003bd0f3a4c828fa2ea400fc401bd
7
+ data.tar.gz: 13df49c97439971b80f307a101ef9da302c5bd31d3b369be7a64c69e7ab13763116c3287fbc743d30382ce57c89d0cf8aecb2dbfe6e71bec1f4aefca021dbe8b
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ngrok-tunnel.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Anton Bogdanovich
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,56 @@
1
+ # Ngrok::Tunnel
2
+
3
+ ngrok-tunnel provides ruby wrapper for ngrok
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'ngrok-tunnel'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install ngrok-tunnel
20
+
21
+ ## Usage
22
+
23
+ ```ruby
24
+ require 'ngrok/tunnel'
25
+
26
+ # spawn ngrok
27
+ Ngrok::Tunnel.start(3001)
28
+
29
+ # ngrok local_port
30
+ Ngrok::Tunnel.local_port
31
+
32
+ # ngrok external url
33
+ Ngrok::Tunnel.ngrok_url
34
+ Ngrok::Tunnel.ngrok_url_https
35
+
36
+ Ngrok::Tunnel.running?
37
+ Ngrok::Tunnel.stopped?
38
+
39
+ # ngrok process id
40
+ Ngrok::Tunnel.pid
41
+
42
+ # ngrok log file descriptor
43
+ Ngrok::Tunnel.log_file
44
+
45
+ # kill ngrok
46
+ Ngrok::Tunnel.stop
47
+
48
+ ```
49
+
50
+ ## Contributing
51
+
52
+ 1. Fork it ( https://github.com/[my-github-username]/ngrok-tunnel/fork )
53
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
54
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
55
+ 4. Push to the branch (`git push origin my-new-feature`)
56
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,76 @@
1
+ require "ngrok/tunnel/version"
2
+ require "tempfile"
3
+
4
+ module Ngrok
5
+
6
+ class NotFound < StandardError; end
7
+ class FetchUrlError < StandardError; end
8
+
9
+ class Tunnel
10
+
11
+ class << self
12
+ attr_reader :pid, :local_port, :ngrok_url, :ngrok_url_https, :log_file, :status
13
+
14
+ def init
15
+ @status = :stopped
16
+ end
17
+
18
+ def start(port, options = {})
19
+ options[:timeout] ||= 10
20
+ @options = options
21
+
22
+ ensure_binary
23
+
24
+ @local_port = port.to_i
25
+ @log_file = Tempfile.new('ngrok')
26
+
27
+ @pid = spawn("exec ngrok -log=stdout #{@local_port} > #{@log_file.path}")
28
+ at_exit { Ngrok::Tunnel.stop }
29
+ @status = :running
30
+ fetch_urls
31
+ end
32
+
33
+ def stop
34
+ if running?
35
+ Process.kill(9, @pid)
36
+ @ngrok_url = @ngrok_url_https = @pid = nil
37
+ @status = :stopped
38
+ end
39
+ end
40
+
41
+ def running?
42
+ @status == :running
43
+ end
44
+
45
+ def stopped?
46
+ @status == :stopped
47
+ end
48
+
49
+ def inherited(subclass)
50
+ init
51
+ end
52
+
53
+ private
54
+
55
+ def fetch_urls
56
+ @options[:timeout].times do
57
+ @ngrok_url, @ngrok_url_https = @log_file.read.scan(/"Url":"([^"]+)"/).flatten
58
+ return @ngrok_url if @ngrok_url
59
+ sleep 1
60
+ @log_file.rewind
61
+ end
62
+ raise FetchUrlError, "Unable to fetch external url"
63
+ @ngrok_url
64
+ end
65
+
66
+ def ensure_binary
67
+ `ngrok version`
68
+ rescue Errno::ENOENT
69
+ raise Ngrok::NotFound, "Ngrok binary not found"
70
+ end
71
+ end
72
+
73
+ init
74
+
75
+ end
76
+ end
@@ -0,0 +1,5 @@
1
+ module Ngrok
2
+ class Tunnel
3
+ VERSION = "1.0.1"
4
+ end
5
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ngrok/tunnel/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ngrok-tunnel"
8
+ spec.version = Ngrok::Tunnel::VERSION
9
+ spec.authors = ["Anton Bogdanovich"]
10
+ spec.email = ["27bogdanovich@gmail.com"]
11
+ spec.summary = %q{Ngrok-tunnel gem is a ruby wrapper for ngrok}
12
+ spec.description = %q{Ngrok-tunnel gem is a ruby wrapper for ngrok}
13
+ spec.homepage = "https://github.com/bogdanovich/ngrok-tunnel"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency("pry", "~> 0.10")
22
+ spec.add_development_dependency("pry-byebug", "~> 2.0")
23
+ spec.add_development_dependency("rspec", "~> 3.1")
24
+ spec.add_development_dependency "bundler", "~> 1.7"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ end
@@ -0,0 +1,12 @@
1
+ require 'ngrok/tunnel'
2
+ require 'pry'
3
+
4
+ RSpec.configure do |config|
5
+ config.expect_with :rspec do |expectations|
6
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
7
+ end
8
+
9
+ config.mock_with :rspec do |mocks|
10
+ mocks.verify_partial_doubles = true
11
+ end
12
+ end
@@ -0,0 +1,63 @@
1
+
2
+ describe Ngrok::Tunnel do
3
+
4
+ describe "Before start" do
5
+
6
+ it "should not be running" do
7
+ expect(Ngrok::Tunnel.running?).to be false
8
+ end
9
+
10
+ it "should be stopped" do
11
+ expect(Ngrok::Tunnel.stopped?).to be true
12
+ end
13
+
14
+ it "should have status = :stopped" do
15
+ expect(Ngrok::Tunnel.status).to eq :stopped
16
+ end
17
+
18
+ end
19
+
20
+ describe "Run process" do
21
+
22
+ before(:all) do
23
+ @local_port = 3001
24
+ Ngrok::Tunnel.start(3001)
25
+ end
26
+
27
+ after(:all) { Ngrok::Tunnel.stop }
28
+
29
+ it "should be running" do
30
+ expect(Ngrok::Tunnel.running?).to be true
31
+ end
32
+
33
+ it "should not be stopped" do
34
+ expect(Ngrok::Tunnel.stopped?).to be false
35
+ end
36
+
37
+ it "should have status = :running" do
38
+ expect(Ngrok::Tunnel.status).to eq :running
39
+ end
40
+
41
+ it "should match local_port" do
42
+ expect(Ngrok::Tunnel.local_port).to eq(@local_port)
43
+ end
44
+
45
+ it "should have valid ngrok_url" do
46
+ expect(Ngrok::Tunnel.ngrok_url).to be =~ /http:\/\/.*ngrok.com$/
47
+ end
48
+
49
+ it "should have valid ngrok_url_https" do
50
+ expect(Ngrok::Tunnel.ngrok_url_https).to be =~ /https:\/\/.*ngrok.com$/
51
+ end
52
+
53
+ it "should have pid > 0" do
54
+ expect(Ngrok::Tunnel.pid).to be > 0
55
+ end
56
+
57
+ it "should present in process list" do
58
+ expect(Ngrok::Tunnel.pid.to_s).to eq `pidof ngrok`.strip
59
+ end
60
+
61
+ end
62
+
63
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ngrok-tunnel
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Anton Bogdanovich
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry-byebug
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.1'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ description: Ngrok-tunnel gem is a ruby wrapper for ngrok
84
+ email:
85
+ - 27bogdanovich@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - Gemfile
93
+ - LICENSE.txt
94
+ - README.md
95
+ - Rakefile
96
+ - lib/ngrok/tunnel.rb
97
+ - lib/ngrok/tunnel/version.rb
98
+ - ngrok-tunnel.gemspec
99
+ - spec/spec_helper.rb
100
+ - spec/tunnel/tunnel_spec.rb
101
+ homepage: https://github.com/bogdanovich/ngrok-tunnel
102
+ licenses:
103
+ - MIT
104
+ metadata: {}
105
+ post_install_message:
106
+ rdoc_options: []
107
+ require_paths:
108
+ - lib
109
+ required_ruby_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ required_rubygems_version: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - ">="
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ requirements: []
120
+ rubyforge_project:
121
+ rubygems_version: 2.2.2
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: Ngrok-tunnel gem is a ruby wrapper for ngrok
125
+ test_files:
126
+ - spec/spec_helper.rb
127
+ - spec/tunnel/tunnel_spec.rb