vagrant-save 0.2.2 → 0.2.3
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 +4 -4
- data/Gemfile +1 -1
- data/README.md +8 -1
- data/lib/vagrant-save/version.rb +1 -1
- data/vagrant-save.gemspec +2 -2
- metadata +6 -7
- data/Vagrantfile +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb5deb7e7045a8da9526da68ef7d15a66087eea1
|
|
4
|
+
data.tar.gz: e1e125e5b72aa9b815fa6ac26cee21f2be72bdf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 040210ef5034e33ce1ae6f13ce92a6802919a034ac1ef4931fbacf31bf8307d4017c4dc4a46d2693c0d146aea7fd2843e7094b111560100b924140e1ccacb117
|
|
7
|
+
data.tar.gz: 573a91eccd2282843dc729e01f538912736aab00651d30d62b477cae9c276c2f1d12837f7a49e1c24a99ce7667dc7f918cc62e22e20592f68937299bfb670dac
|
data/Gemfile
CHANGED
|
@@ -4,7 +4,7 @@ group :development do
|
|
|
4
4
|
gem 'vagrant', git: 'https://github.com/mitchellh/vagrant.git'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
|
-
gem 'vagrant-export', '
|
|
7
|
+
gem 'vagrant-export', '>= 0.2.3', git: 'https://github.com/trenker/vagrant-export.git'
|
|
8
8
|
|
|
9
9
|
group :plugins do
|
|
10
10
|
gem 'vagrant-save', path: '.'
|
data/README.md
CHANGED
|
@@ -12,7 +12,14 @@ vagrant plugin install vagrant-save
|
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
|
-
Have a [boxserver](https://github.com/trenker/boxserver) instance running and set the property `config.vm.box_server_url` to its address in your vagrant file.
|
|
15
|
+
Have a [boxserver](https://github.com/trenker/boxserver) instance running and set the property `config.vm.box_server_url` to its address in your vagrant file. So your `Vagrantfile` contains the following statements:
|
|
16
|
+
|
|
17
|
+
```ruby
|
|
18
|
+
Vagrant.configure("2") do |config|
|
|
19
|
+
# This must be set
|
|
20
|
+
config.vm.box_server_url = "http://localhost:8001"
|
|
21
|
+
end
|
|
22
|
+
```
|
|
16
23
|
|
|
17
24
|
Then just run
|
|
18
25
|
|
data/lib/vagrant-save/version.rb
CHANGED
data/vagrant-save.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |g|
|
|
|
7
7
|
g.version = VagrantPlugins::Save::VERSION
|
|
8
8
|
g.platform = Gem::Platform::RUBY
|
|
9
9
|
g.license = 'MIT'
|
|
10
|
-
g.authors = 'Georg
|
|
10
|
+
g.authors = 'Georg Grossberger'
|
|
11
11
|
g.email = 'contact@grossberger-ge.org'
|
|
12
12
|
g.homepage = 'https://github.com/trenker/vagrant-save.git'
|
|
13
13
|
g.summary = 'Export boxes to a boxserver'
|
|
@@ -46,5 +46,5 @@ Gem::Specification.new do |g|
|
|
|
46
46
|
|
|
47
47
|
g.files = unignored_files
|
|
48
48
|
g.require_path = 'lib'
|
|
49
|
-
g.add_dependency 'vagrant-export', '
|
|
49
|
+
g.add_dependency 'vagrant-export', '>= 0.2.3'
|
|
50
50
|
end
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-save
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Georg
|
|
7
|
+
- Georg Grossberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: vagrant-export
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 0.2.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.2.3
|
|
27
27
|
description: Export boxes to a boxserver on a remote machine using HTTP/PUT
|
|
@@ -33,7 +33,6 @@ files:
|
|
|
33
33
|
- ".gitignore"
|
|
34
34
|
- Gemfile
|
|
35
35
|
- README.md
|
|
36
|
-
- Vagrantfile
|
|
37
36
|
- lib/vagrant-save.rb
|
|
38
37
|
- lib/vagrant-save/command.rb
|
|
39
38
|
- lib/vagrant-save/errors.rb
|
|
@@ -61,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
60
|
version: '0'
|
|
62
61
|
requirements: []
|
|
63
62
|
rubyforge_project:
|
|
64
|
-
rubygems_version: 2.4.
|
|
63
|
+
rubygems_version: 2.4.6
|
|
65
64
|
signing_key:
|
|
66
65
|
specification_version: 4
|
|
67
66
|
summary: Export boxes to a boxserver
|