vagrant-persistent-storage 0.0.25 → 0.0.26

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: 21405e2eb2912b0642f94759643201d622d115ab
4
- data.tar.gz: c04c8ddbcd85e6559930896b7ab9e9fcfb33b765
3
+ metadata.gz: '09e3185b33a92af6417f243a9a97a9700454d6ec'
4
+ data.tar.gz: af58114b16a94ef9cc42a31c4c5e722f19089bad
5
5
  SHA512:
6
- metadata.gz: 979f73c50dcd96e9494e91f25a583f06828d411deb74ddc7a9bd8042fe1839b0c17c815cc8f136d6a54207efb4e11ef33fccd180fa3ee7c6b3f9dc3a055fdd28
7
- data.tar.gz: 300deb039566490ec45e874a9b902f6f39f7b739665fd127b294033ed24ac61c89166af400be7663784578993e3b489b171bbaf4bb6bc00aaf4d6ce2a8f12a80
6
+ metadata.gz: 8c9c5b44a06a81f037fd6ddfee6ecdf38a1537b195c8d114429fd79fc012d148b51f6976e235f27633fb277c2e27256e6f1a6f459d0d445e9340a74e964bfe91
7
+ data.tar.gz: 15f09d640c8226735addf1be3d2cb91538755b5da577957ebef05297b966a21a54a631369c005e6f07cb793fad24046215fe0ebeb6445d24a39669f6aaac7d43
@@ -65,7 +65,7 @@ module VagrantPlugins
65
65
  end
66
66
 
67
67
  def identical_files(file1, file2)
68
- return File.identical?(Pathname.new(file1).realpath, Pathname.new(file2).realpath)
68
+ return (File.exist?(file1) and File.exist?(file2) and File.identical?(Pathname.new(file1).realpath, Pathname.new(file2).realpath))
69
69
  end
70
70
 
71
71
  def get_controller_name
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module PersistentStorage
3
- VERSION = "0.0.25"
3
+ VERSION = "0.0.26"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-persistent-storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.25
4
+ version: 0.0.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Kusnier