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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ccdf79c4420cdb644162f13c84101718d8fe37c7
4
- data.tar.gz: 25c207398d09c632180cf0a90ccb4f5b397ac607
2
+ SHA256:
3
+ metadata.gz: f3e5d58d541465149e8fb373443011d2d1463d55fea729cb72a392f5733b59b2
4
+ data.tar.gz: dbab6628e49ddcdf9457e44aa410f541a913b77a7b3eb249786b449c8164184c
5
5
  SHA512:
6
- metadata.gz: e16c8877373addf1adcd5cb91039b871f1c6b39c42f48f16f73ec1539a00a0e39f63c7dfaa01cdb7bfccdecc63f5c7226ab50b762c26587cad414c58f6c7d4a0
7
- data.tar.gz: 46ddb49a16982196f9e06324300e5552564f3d296b0d58dc369c87d1aecf972f507a633d619caf1b9db9a09bb5f9bec086b13b132187df3e19a64aebc6be6d6b
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
- gem "vagrant", git: "https://github.com/mitchellh/vagrant.git", tag: "v1.7.4"
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.8.0" if @compose_version == UNSET_VALUE
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module DockerComposeProvisioner
3
- VERSION = "1.2.0"
3
+ VERSION = "1.4.0"
4
4
  end
5
5
  end
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.2.0
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: 2016-09-22 00:00:00.000000000 Z
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
- rubyforge_project:
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.