vagrant-blockwart 0.1.3 → 0.1.4
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 +2 -0
- data/README.markdown +3 -0
- data/README.md +1 -1
- data/lib/vagrant-blockwart/bwmanage.rb +1 -1
- data/lib/vagrant-blockwart/version.rb +1 -1
- data/vagrant-blockwart.gemspec +5 -0
- metadata +8 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffd534b628149bc5137afa425cb96a3b702e30af
|
|
4
|
+
data.tar.gz: 384cce08db46dd44819ca0cc2ae784e314214c60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82dfc494adf20c2cb1894881ef0b33faa4e3f84a70d791c5126e971758cd95f8aa45dd9785c574c7bec0357f793ae497a8802924a8884d0d832f74587ed9b19d
|
|
7
|
+
data.tar.gz: e3bb383f91eaa7e15abcc3987784a2d01be9fd8ccd6906f097abfd2aab104d3cc001408cd726e9402a8ede40b908903a7631a00912958e9f882915ed0597bcef
|
data/Gemfile
CHANGED
data/README.markdown
ADDED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Vagrant Blockwart Provisioner
|
|
2
2
|
|
|
3
|
-
This is a [Vagrant](http://www.vagrantup.com) plugin that adds
|
|
3
|
+
This is a [Vagrant](http://www.vagrantup.com) plugin that adds a [Blockwart](http://blockwart.org) provisioner to Vagrant, supporting provisioning of your virtual machines with a local Blockwart repository.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
data/vagrant-blockwart.gemspec
CHANGED
|
@@ -12,6 +12,11 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Enables Vagrant to provision machines with Blockwart."
|
|
13
13
|
spec.homepage = "https://github.com/bkendinibilir/vagrant-blockwart"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
+
spec.post_install_message = <<-MESSAGE
|
|
16
|
+
! The 'vagrant-blockwart' gem has been deprecated and has been replaced by 'vagrant-bundlewrap'.
|
|
17
|
+
! See: https://rubygems.org/gems/vagrant-bundlewrap
|
|
18
|
+
! And: https://github.com/bkendinibilir/vagrant-bundlewrap
|
|
19
|
+
MESSAGE
|
|
15
20
|
|
|
16
21
|
spec.files = `git ls-files -z`.split("\x0")
|
|
17
22
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-blockwart
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Benjamin Kendinibilir
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -61,6 +61,7 @@ files:
|
|
|
61
61
|
- .gitignore
|
|
62
62
|
- Gemfile
|
|
63
63
|
- LICENSE.txt
|
|
64
|
+
- README.markdown
|
|
64
65
|
- README.md
|
|
65
66
|
- Rakefile
|
|
66
67
|
- lib/vagrant-blockwart.rb
|
|
@@ -75,7 +76,10 @@ homepage: https://github.com/bkendinibilir/vagrant-blockwart
|
|
|
75
76
|
licenses:
|
|
76
77
|
- MIT
|
|
77
78
|
metadata: {}
|
|
78
|
-
post_install_message:
|
|
79
|
+
post_install_message: |2
|
|
80
|
+
! The 'vagrant-blockwart' gem has been deprecated and has been replaced by 'vagrant-bundlewrap'.
|
|
81
|
+
! See: https://rubygems.org/gems/vagrant-bundlewrap
|
|
82
|
+
! And: https://github.com/bkendinibilir/vagrant-bundlewrap
|
|
79
83
|
rdoc_options: []
|
|
80
84
|
require_paths:
|
|
81
85
|
- lib
|
|
@@ -91,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
95
|
version: '0'
|
|
92
96
|
requirements: []
|
|
93
97
|
rubyforge_project:
|
|
94
|
-
rubygems_version: 2.0.
|
|
98
|
+
rubygems_version: 2.0.14
|
|
95
99
|
signing_key:
|
|
96
100
|
specification_version: 4
|
|
97
101
|
summary: Vagrant Blockwart provisioner.
|