vagrant-phpstorm-tunnel 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/vagrant-phpstorm-tunnel/configurator.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: eac206ed02e2d8ec516e41858b8651d163b4cf65
|
4
|
+
data.tar.gz: c0a5d002eb4c2be70af9cd2f40a8f101c5dbb7b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 940a7522fb625bb77806f02f7822a43624429bfaaf5f4732432412740737f8a3389f738f36213c0cdc2e36cc8c67ccbc489ee8c44bc32d0eb1e1781261ab2836
|
7
|
+
data.tar.gz: 94e7347d121bfb79040ab8ed28f17a4613ddf5dbcde4ec1ed8afdaa7dfe6d0d3964ca71c11e1b5427f70ddef1b0a25a03518af9929410c5c37b31270c151a441
|
data/README.md
CHANGED
@@ -3,6 +3,8 @@ vagrant-phpstorm-tunnel
|
|
3
3
|
`vagrant-phpstorm-tunnel` installs a proxy php binary which can be configured as a php-interpreter in [PhpStorm](http://www.jetbrains.com/phpstorm/).
|
4
4
|
It will forward all php calls to `php` in the [Vagrant](http://www.vagrantup.com/) VM.
|
5
5
|
|
6
|
+
[![Gem Version](https://img.shields.io/gem/v/vagrant-phpstorm-tunnel.svg)](https://rubygems.org/gems/vagrant-phpstorm-tunnel)
|
7
|
+
|
6
8
|
This is a workaround for a missing feature in PhpStorm (see http://youtrack.jetbrains.com/issue/WI-19485).
|
7
9
|
|
8
10
|
Installation
|
@@ -19,7 +19,7 @@ module VagrantPhpstormTunnel
|
|
19
19
|
destination_path = File.join(@home_path, 'php')
|
20
20
|
source_path = File.expand_path('../../../data/php', __FILE__)
|
21
21
|
|
22
|
-
File.
|
22
|
+
File.symlink(source_path, destination_path)
|
23
23
|
File.chmod(0755, destination_path)
|
24
24
|
end
|
25
25
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-phpstorm-tunnel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cargo Media
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2016-02-19 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: rake
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
version: '0'
|
62
62
|
requirements: []
|
63
63
|
rubyforge_project:
|
64
|
-
rubygems_version: 2.
|
64
|
+
rubygems_version: 2.5.1
|
65
65
|
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: Proxy php-calls from PhpStorm to Vagrant
|