vagrant-gatling-rsync 0.9.0 → 1.0

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
- SHA1:
3
- metadata.gz: 5efa02572fb29f90b58dab6e9e30316510de6e5f
4
- data.tar.gz: a666035292ee9f25dd6183b4a250551d52e43b61
2
+ SHA256:
3
+ metadata.gz: 5368b19e16b2b8df288dc7642548fe58edb2fc87e1a2271dc18cfeaec73d8c87
4
+ data.tar.gz: b127ae31cc1008cc08d7dd4a0b11389eb6868eadd9698b0b042cb7fdc4be9168
5
5
  SHA512:
6
- metadata.gz: bae64c5eab5aab245c2fc27d7771227944e1129565462c4df34698da5b50696d9905149cc88a2de16403130a9558552aebf0d4263e203c48d99ef93715694035
7
- data.tar.gz: dcb41db757d7a03ee9350758d167103d0152feda01356e88b46b98294c1a6f46c53fd21c83b26256584af3415af43755b5bfc6e57e870fd064a8c09362831947
6
+ metadata.gz: 45078bf2419e1a16b43a36e8ca3390a783d3883ce59d24c014d9a04b5b30447bf3ae5b06a8c9c0f7ae509346da555b6ace9319bb174c3d21a8e72be4148bb047
7
+ data.tar.gz: 9fa69af2debff371a39a7eca2a9c47925ea42b1cf09349548cdb828ca99eff6f23d043e08cccfcb358411be74074e1a404d6a3dcd4faba09e30631931d00f6ec
@@ -1 +1 @@
1
- 2.0.0-p353
1
+ 2.6.2
@@ -1,3 +1,13 @@
1
+ ## 1.0 (June 02, 2020)
2
+
3
+ This release adds compatibility with Vagrant 2.2.5+.
4
+
5
+ Small parts of the example Vagrantfile and the Gemfile and Gemspec have also been cleaned up.
6
+
7
+ FEATURES:
8
+
9
+ - Add compatibility with Vagrant 2.2.5+. Thanks to @leejo for the PR. [GH-37]
10
+
1
11
  ## 0.9.0 (June 28, 2015)
2
12
 
3
13
  This release adds two big features: Windows support and automatic sync on startup.
data/Gemfile CHANGED
@@ -4,10 +4,10 @@ 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 => 'v1.7.2'
7
+ gem "vagrant", :git => "https://github.com/mitchellh/vagrant.git", :tag => 'v2.2.9'
8
8
  end
9
9
 
10
10
  group :plugins do
11
- gem "vagrant-gatling-rsync", path: "."
11
+ gemspec
12
12
  end
13
13
 
@@ -13,10 +13,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
13
13
 
14
14
  # This is needed if you have non-Docker provisioners in the Vagrantfile.
15
15
  override.vm.box = nil
16
-
17
- # Ensure Vagrant knows the SSH port. See
18
- # https://github.com/mitchellh/vagrant/issues/3772.
19
- override.ssh.port = 22
20
16
  end
21
17
 
22
18
  config.vm.provider "lxc" do |d, override|
@@ -67,7 +67,11 @@ module VagrantPlugins
67
67
 
68
68
  if folder_opts[:exclude]
69
69
  Array(folder_opts[:exclude]).each do |pattern|
70
- ignores << VagrantPlugins::SyncedFolderRSync::RsyncHelper.exclude_to_regexp(hostpath, pattern.to_s)
70
+ if Vagrant::VERSION < "2.2.5"
71
+ ignores << VagrantPlugins::SyncedFolderRSync::RsyncHelper.exclude_to_regexp(hostpath, pattern.to_s)
72
+ else
73
+ ignores << VagrantPlugins::SyncedFolderRSync::RsyncHelper.exclude_to_regexp(pattern.to_s)
74
+ end
71
75
  end
72
76
  end
73
77
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GatlingRsync
3
- VERSION = "0.9.0"
3
+ VERSION = "1.0"
4
4
  end
5
5
  end
@@ -18,9 +18,6 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_development_dependency "bundler", "~> 1.5"
22
21
  spec.add_development_dependency "rake"
23
22
  spec.add_development_dependency "pry"
24
- # Make Vagrant work on Linux for development.
25
- spec.add_development_dependency "json", "~> 1.8.1"
26
23
  end
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-gatling-rsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: '1.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Merrill
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-28 00:00:00.000000000 Z
11
+ date: 2020-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.5'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.5'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: rake
29
15
  requirement: !ruby/object:Gem::Requirement
@@ -52,20 +38,6 @@ dependencies:
52
38
  - - ">="
53
39
  - !ruby/object:Gem::Version
54
40
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: json
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 1.8.1
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 1.8.1
69
41
  description: The gatling-rsync plugin runs on Mac and Linux and is far less CPU-intensive
70
42
  than the built-in rsync-auto.
71
43
  email:
@@ -113,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
85
  - !ruby/object:Gem::Version
114
86
  version: '0'
115
87
  requirements: []
116
- rubyforge_project:
117
- rubygems_version: 2.4.5
88
+ rubygems_version: 3.0.3
118
89
  signing_key:
119
90
  specification_version: 4
120
91
  summary: A lighter-weight Vagrant plugin for watching and rsyncing directories.