vagrant-hostmanager 1.8.8 → 1.8.9
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fce5ec859549e9cef8fddd359dcbe92fb78f6f07
|
4
|
+
data.tar.gz: 5e07f95e4b8d63078516c700d3f0ce0549c2d4bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd3633a5d72fa50e497d494838561eb9017f54b20c14d64a8e3458eaaeb759d0dcf2d3789762fa2373926cf3a9be53028b3e4396a5a143afc7e8069b209d02f5
|
7
|
+
data.tar.gz: a331fa0f83557c27f79bfd434366c4f5de14783f03b0e023b5d5d792f8df86fc5468b2d16d177cbcf6a371ca05e7e85805b39744545d69f23b24f0237e5c5795
|
@@ -88,8 +88,8 @@ module VagrantPlugins
|
|
88
88
|
|
89
89
|
def update_content(file_content, resolving_machine, include_id, line_endings)
|
90
90
|
id = include_id ? " id: #{read_or_create_id}" : ""
|
91
|
-
header = "## vagrant-hostmanager-start#{id}
|
92
|
-
footer = "## vagrant-hostmanager-end
|
91
|
+
header = "## vagrant-hostmanager-start#{id}"
|
92
|
+
footer = "## vagrant-hostmanager-end"
|
93
93
|
body = get_machines
|
94
94
|
.map { |machine| get_hosts_file_entry(machine, resolving_machine) }
|
95
95
|
.join
|
@@ -146,12 +146,12 @@ module VagrantPlugins
|
|
146
146
|
if body.empty?
|
147
147
|
block = "\n"
|
148
148
|
else
|
149
|
-
block = "\n\n" + header + body + footer + "\n"
|
149
|
+
block = "\n\n" + header + "\n" + body + footer + "\n\n"
|
150
150
|
end
|
151
151
|
# Pattern for finding existing block
|
152
152
|
header_pattern = Regexp.quote(header)
|
153
153
|
footer_pattern = Regexp.quote(footer)
|
154
|
-
pattern = Regexp.new("\n*#{header_pattern}.*?#{footer_pattern}\n*", Regexp::MULTILINE)
|
154
|
+
pattern = Regexp.new("[\r\n]*#{header_pattern}.*?#{footer_pattern}[\r\n]*", Regexp::MULTILINE)
|
155
155
|
# Replace existing block or append
|
156
156
|
content = old_content.match(pattern) ? old_content.sub(pattern, block) : old_content.rstrip + block
|
157
157
|
if line_endings == "crlf"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-hostmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shawn Dahlen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-
|
12
|
+
date: 2018-05-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|