vagrant-docker-compose 1.2.0 → 1.4.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 +5 -5
- data/Gemfile +2 -2
- data/lib/vagrant-docker-compose/config.rb +1 -1
- data/lib/vagrant-docker-compose/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f3e5d58d541465149e8fb373443011d2d1463d55fea729cb72a392f5733b59b2
|
|
4
|
+
data.tar.gz: dbab6628e49ddcdf9457e44aa410f541a913b77a7b3eb249786b449c8164184c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c68389a3fd34d089e3d1d8060c02b33599ccabb5374ba592becb192078260c6bd55140cd496a4f4e12c189ee0d8b028c729e298714a9e75c594c76cd7ed7255
|
|
7
|
+
data.tar.gz: 2da064848a49afb2fc599b5ecff62702145c318256bbf923c1afcb009102bf93860fcd1a1bca6609678b88fd6569b007e510c34e730f7d765baca5265750ec7e
|
data/Gemfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
source "https://rubygems.org"
|
|
2
|
-
gemspec
|
|
3
2
|
|
|
4
3
|
group :development do
|
|
5
|
-
|
|
4
|
+
# Note: v2.2.5 of Vagrant has a bug detailed here: https://github.com/hashicorp/vagrant/pull/10945
|
|
5
|
+
gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", tag: "v2.2.4"
|
|
6
6
|
gem "rake"
|
|
7
7
|
end
|
|
8
8
|
|
|
@@ -28,7 +28,7 @@ module VagrantPlugins
|
|
|
28
28
|
|
|
29
29
|
def finalize!
|
|
30
30
|
@project_name = nil if @project_name == UNSET_VALUE
|
|
31
|
-
@compose_version = "1.
|
|
31
|
+
@compose_version = "1.24.1" if @compose_version == UNSET_VALUE
|
|
32
32
|
@env = {} if @env == UNSET_VALUE
|
|
33
33
|
@executable_symlink_path = "/usr/local/bin/docker-compose" if @executable_symlink_path == UNSET_VALUE
|
|
34
34
|
@executable_install_path = "#{@executable_symlink_path}-#{@compose_version}" if @executable_install_path == UNSET_VALUE
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-docker-compose
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Leigh McCulloch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: A Vagrant provisioner for docker compose.
|
|
14
14
|
email:
|
|
@@ -59,8 +59,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: '0'
|
|
61
61
|
requirements: []
|
|
62
|
-
|
|
63
|
-
rubygems_version: 2.5.1
|
|
62
|
+
rubygems_version: 3.0.6
|
|
64
63
|
signing_key:
|
|
65
64
|
specification_version: 4
|
|
66
65
|
summary: A Vagrant provisioner for docker compose.
|