vagrant-phpstorm-tunnel 0.1.10 → 0.1.11

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: 141962f8f869d39239c1883854f389f6ac0ea5e7
4
- data.tar.gz: 5652cf12b661ef472e7daed94bc594bb7eff0d44
3
+ metadata.gz: eac206ed02e2d8ec516e41858b8651d163b4cf65
4
+ data.tar.gz: c0a5d002eb4c2be70af9cd2f40a8f101c5dbb7b5
5
5
  SHA512:
6
- metadata.gz: f0f87968e19c58ac92f6a0b07c054c63f2eeae1f8a18607f77d23eb1728923e6b118b55ca18489a146444bc28d42b2968b9dca9247be31a2dba2bd411b5a6c97
7
- data.tar.gz: b242b72c7de5205cb35603d0a67bf7264a24137f89edba0d4172e4900d7074c84738d462f43dfc19720c28b8910e40753f0b37eb40e7288b7c072f7346ae20af
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.link(source_path, destination_path)
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.10
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: 2014-07-31 00:00:00.000000000 Z
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.4.1
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