vagrant-gatling-rsync 1.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5368b19e16b2b8df288dc7642548fe58edb2fc87e1a2271dc18cfeaec73d8c87
4
- data.tar.gz: b127ae31cc1008cc08d7dd4a0b11389eb6868eadd9698b0b042cb7fdc4be9168
3
+ metadata.gz: 2c450f1e3f93ee70f51a9a7d6e690bedfeb9c3d2747643a62293e05738201439
4
+ data.tar.gz: e31847e72bb85082c301639890f6c108e902320a9309abdabb0770479912a1e9
5
5
  SHA512:
6
- metadata.gz: 45078bf2419e1a16b43a36e8ca3390a783d3883ce59d24c014d9a04b5b30447bf3ae5b06a8c9c0f7ae509346da555b6ace9319bb174c3d21a8e72be4148bb047
7
- data.tar.gz: 9fa69af2debff371a39a7eca2a9c47925ea42b1cf09349548cdb828ca99eff6f23d043e08cccfcb358411be74074e1a404d6a3dcd4faba09e30631931d00f6ec
6
+ metadata.gz: 68dcf265bc0e451852768cda9d1007f9155707c4a1839d6a90cc15b4c66438c14bfd3baa80085607ee8fd01bf1413c55afe331d481b49b5565de310214982f51
7
+ data.tar.gz: bf9290204b050458c14d44950fc6022ff91ae363e55e11ebbbe404dea0ae867a6196f76ae0454c1827494bb981cf2f3a11dacf7344d7ec46210905bb94fba701
data/Gemfile CHANGED
@@ -4,7 +4,7 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :development do
7
- gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :tag => 'v2.2.9'
7
+ gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :tag => 'v2.2.16'
8
8
  end
9
9
 
10
10
  group :plugins do
@@ -8,7 +8,7 @@ module VagrantPlugins
8
8
  class GatlingRsyncAuto < Vagrant.plugin(2, :command)
9
9
  # This is a sanity check to make sure no one is attempting to install
10
10
  # this into an early Vagrant version.
11
- if Vagrant::VERSION < "1.5.1"
11
+ if Gem::Version.new(Vagrant::VERSION) < Gem::Version.new("1.5.1")
12
12
  raise Errors::Vagrant15RequiredError
13
13
  end
14
14
 
@@ -67,7 +67,7 @@ module VagrantPlugins
67
67
 
68
68
  if folder_opts[:exclude]
69
69
  Array(folder_opts[:exclude]).each do |pattern|
70
- if Vagrant::VERSION < "2.2.5"
70
+ if Gem::Version.new(Vagrant::VERSION) < Gem::Version.new("2.2.5")
71
71
  ignores << VagrantPlugins::SyncedFolderRSync::RsyncHelper.exclude_to_regexp(hostpath, pattern.to_s)
72
72
  else
73
73
  ignores << VagrantPlugins::SyncedFolderRSync::RsyncHelper.exclude_to_regexp(pattern.to_s)
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GatlingRsync
3
- VERSION = "1.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-gatling-rsync
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Merrill
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 00:00:00.000000000 Z
11
+ date: 2021-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  - !ruby/object:Gem::Version
86
86
  version: '0'
87
87
  requirements: []
88
- rubygems_version: 3.0.3
88
+ rubygems_version: 3.1.2
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: A lighter-weight Vagrant plugin for watching and rsyncing directories.