vagrant-box-gcs 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of vagrant-box-gcs might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1dbf043b2e318db44996f1a9eee12b665146813bb018b16194e70442641d41cc
4
- data.tar.gz: 264bfe9d4b815c36329ef47b4a50d2f15aaad30b0a9e79c3c709ab56a9d4fc16
3
+ metadata.gz: 1fe103d6a8fa5384f1214169e0bd2a41eb85f2b2faaf22cf9a806d3c629cbaf8
4
+ data.tar.gz: 520b130b2c64dbb1f6c5dda0de8bc5ecaa40dfae74564a2a3bc90a28aad161fe
5
5
  SHA512:
6
- metadata.gz: c4dd42d502b8628cc68d2436529548c2d814b121291b08c29bb1c511273c724d689769e9030e1c71fdd34ecd2d1e5cb56a6791550f50eba541ac23794d6e30ea
7
- data.tar.gz: 34d9909d9dd46b39b63503485d5c4ec3031089cad4977ffd544f569b44af63ebf8a346a54bfec8ebe396fc8f2f7c773c57fe2245e97ae8e668f53ffe3889911d
6
+ metadata.gz: 23cfe17824b596a816fe76b1b8c1c3e5431a9c061a95887669881c930b55c40d51f9fbc5c2618144c3e0226a052e4a5901db2f04166c605ef78686228abf720f
7
+ data.tar.gz: 0feda480afe3cddaca8b73f2dec017f9db4680a580b1fe46d0119784244d77ff92c403befc64e6f48cebcb3bd818997aef2ee57eb4fa1d3db332fda2af401658
data/README.md CHANGED
@@ -14,15 +14,15 @@ $ vagrant plugin install vagrant-box-gcs
14
14
 
15
15
  Only the `gs://` protocol shorthand is supported
16
16
 
17
- The plugin supports fetching compatible metadata file of structured boxes repository
17
+ The plugin supports fetching compatible manifest file of versioned boxes repository. See [packer-vagrant-box-gcs](https://github.com/arnaud-dezandee/packer-vagrant-box-gcs) to create one.
18
18
 
19
- #### From metadata box:
19
+ #### From versioned box:
20
20
 
21
21
  ```bash
22
- $ vagrant box add gs://my-bucket/my-org/my-box-metadata.json
22
+ $ vagrant box add gs://my-bucket/my-org/my-box-manifest.json
23
23
  ```
24
24
 
25
- The `box update` command line is available when using metadata
25
+ The `box update` command line is available when using manifest
26
26
  ```bash
27
27
  $ vagrant box update --box my-org/my-box
28
28
  ```
@@ -31,7 +31,7 @@ $ vagrant box update --box my-org/my-box
31
31
  # Vagrantfile
32
32
  Vagrant.configure('2') do |config|
33
33
  config.vm.box = 'my-org/my-box'
34
- config.vm.box_url = 'gs://my-bucket/my-org/my-box-metadata.json'
34
+ config.vm.box_url = 'gs://my-bucket/my-org/my-box-manifest.json'
35
35
  end
36
36
  ```
37
37
 
@@ -88,3 +88,7 @@ Vagrant.configure('2') do |config|
88
88
  # ...
89
89
  end
90
90
  ```
91
+
92
+ ## Related
93
+
94
+ - [packer-vagrant-box-gcs](https://github.com/arnaud-dezandee/packer-vagrant-box-gcs) - Packer plugin to upload Vagrant boxes to Google GCS.
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module BoxGCS
3
- VERSION = '1.0.0'
3
+ VERSION = '1.0.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-box-gcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arnaud Dezandee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-26 00:00:00.000000000 Z
11
+ date: 2020-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '13.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '13.0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: google-cloud-storage
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -61,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
75
  - !ruby/object:Gem::Version
62
76
  version: '0'
63
77
  requirements: []
64
- rubygems_version: 3.1.3
78
+ rubygems_version: 3.0.3
65
79
  signing_key:
66
80
  specification_version: 4
67
81
  summary: Vagrant plugin to download boxes from Google GCS.