vagrant-box-gcs 1.0.0 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1dbf043b2e318db44996f1a9eee12b665146813bb018b16194e70442641d41cc
4
- data.tar.gz: 264bfe9d4b815c36329ef47b4a50d2f15aaad30b0a9e79c3c709ab56a9d4fc16
3
+ metadata.gz: 6a44b3dbe183134f2616f5ec4a30b678cc3897f2018d5ba629251fe6667bc39b
4
+ data.tar.gz: 56bbfb1f8ae10c5a2241fa904782ac03fe31ee5df269b1591eaee722cc00f0ee
5
5
  SHA512:
6
- metadata.gz: c4dd42d502b8628cc68d2436529548c2d814b121291b08c29bb1c511273c724d689769e9030e1c71fdd34ecd2d1e5cb56a6791550f50eba541ac23794d6e30ea
7
- data.tar.gz: 34d9909d9dd46b39b63503485d5c4ec3031089cad4977ffd544f569b44af63ebf8a346a54bfec8ebe396fc8f2f7c773c57fe2245e97ae8e668f53ffe3889911d
6
+ metadata.gz: 571a9482f482bedfd7795f390db1d18832e3e3b2ec9510e078dddbee045cbd39db6d0cb23c6cfa5835732ac3b8f8555a59f227c56b61610403ac2e7fab6155c4
7
+ data.tar.gz: 351b3604b46603edcfa03078ca26c5d86f66750a3ea09cbb23e5bb64281871d486ef08433808a28a9d6375b14b463e32ecdc129c1385dd0a0d201e8353d7feb6
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.2'
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.2
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: digest-crc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.1
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.