vagrant-foodshow 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -3
- data/README.md +5 -1
- data/lib/vagrant-foodshow/config.rb +1 -1
- data/lib/vagrant-foodshow/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: cf5c4f943a2b884e12cfd85da7218e0b9217e3f7
|
4
|
+
data.tar.gz: 0a0ebd7b8a5bc21cd2b274b48418a665afadff2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dfeec9abd54db5496c01e4b84f739d54f2e7f60ac3a9ce9189accc49db946f6d9160882dcb73f85a85b377ffe963f3bcd1c1a114ede805bcff31881e502dbea
|
7
|
+
data.tar.gz: 8e2638ec982c58260bb65d5fc7fa384f8bcfa33f7ef767d63577a904153f2828d5e3f3cadf732a816a38be76ded55e4b05debac761583baa3634f91f71347291
|
data/Gemfile
CHANGED
@@ -3,10 +3,10 @@ source 'https://rubygems.org'
|
|
3
3
|
gem 'rake'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'vagrant', git: 'git://github.com/mitchellh/vagrant.git', tag: 'v1.7.2'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :plugins do
|
10
|
-
gem
|
11
|
-
|
10
|
+
gem 'vagrant-parallels', git: 'https://github.com/Parallels/vagrant-parallels'
|
11
|
+
gem 'vagrant-foodshow', path: '.'
|
12
12
|
end
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Foodshow: Share your [Vagrant](http://vagrantup.com) virtual machine
|
2
2
|
|
3
|
-
[![Code Climate](https://codeclimate.com/github/express42/vagrant-foodshow.png)](https://codeclimate.com/github/express42/vagrant-foodshow)
|
3
|
+
[![Code Climate](https://codeclimate.com/github/express42/vagrant-foodshow.png)](https://codeclimate.com/github/express42/vagrant-foodshow) [![express42/vagrant-foodshow API Documentation](https://www.omniref.com/github/express42/vagrant-foodshow.png)](https://www.omniref.com/github/express42/vagrant-foodshow)
|
4
4
|
|
5
5
|
Vagrant-Foodshow plugin allows you to share tcp ports of your virtual machine via the Internet.
|
6
6
|
|
@@ -9,6 +9,10 @@ With this plugin you may show your web application to your colleague, present ne
|
|
9
9
|
All tunneling job performed by [Ngrok](http://ngrok.com) backend.
|
10
10
|
Ngrok tunnel can operate in TCP and HTTP modes. In HTTP tunnel mode `ngrok` provides access to HTTP requests and response from server to help you analyze the traffic. In TCP mode you can tunnel any binary protocol like `ssh`, `postgresql` or whatever you want, but there is no introspection in TCP tunnel.
|
11
11
|
|
12
|
+
## Vagrant-foodshow and vagrant-share
|
13
|
+
|
14
|
+
Vagrant-foodshow unlike vagrnat-share an opensource product. Ngrok client and server part is also opensource. Ngrok server and server-side part of vagrant-share both available as SAAS solutions, but you can setup your own ngrok server for free. This is a good solution if you don't want send tunneled traffic through third-party servers.
|
15
|
+
|
12
16
|
## Installation
|
13
17
|
|
14
18
|
### Ngrok installation
|
@@ -68,7 +68,7 @@ module VagrantPlugins
|
|
68
68
|
" You can read docs at http://github.com/express42/vagrant-foodshow"
|
69
69
|
end
|
70
70
|
|
71
|
-
unless @authtoken
|
71
|
+
unless @authtoken || @server_addr
|
72
72
|
if @subdomain || @forward_ssh || @hostname
|
73
73
|
errors << "You should set authtoken if you use subdomain/forward_ssh/hostname options"
|
74
74
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-foodshow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikita Borzykh
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
65
|
version: '0'
|
66
66
|
requirements: []
|
67
67
|
rubyforge_project: vagrant-foodshow
|
68
|
-
rubygems_version: 2.
|
68
|
+
rubygems_version: 2.2.2
|
69
69
|
signing_key:
|
70
70
|
specification_version: 4
|
71
71
|
summary: You can share your vagrant vm with your colleagues easily by using vagrant-foodshow
|