omnibus 1.0.0 → 1.0.1
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 +8 -8
- data/CHANGELOG.md +10 -1
- data/lib/omnibus/templates/README.md.erb +3 -3
- data/lib/omnibus/templates/Vagrantfile.erb +2 -2
- data/lib/omnibus/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MGQ1NWQyMTRmYTExYjZiNTg1OGMzYWZjNDlkOWIzNjlhN2E3NmM1Nw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OWRkMzNiOTI5YWMxZGFmNjU1OGI2Y2U2YzlkMDI2ZTE4NWE0Mzc0NA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NDZlNjA3N2MyMjViOTVhMGM2OGNlZWE3YTRhYmVhNDk5MWMxY2IxOTgzNjli
|
|
10
|
+
NWE0OTZkYjNlOThjYjhkNWVlYjhkOWIzOWZmYzAxNzU0MzAxYWMxY2ZhZGRk
|
|
11
|
+
MGQwOWQ3NWI3Yjc3NzUzNDM2Nzk0MmU5MDE4ZjhkYjliNTU3OTc=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZmYyOWVkZDljYTkzMDIwNWQ1NmFjNTA4MGZmMDc4NzkxNjAxYjUzM2RlMmFj
|
|
14
|
+
NTcwYjExZDc0ZmEzZTQwOTkwOWRlZjdjZjdhYjVlYTczMThlMGJjMGJjODJj
|
|
15
|
+
NWVhZjFlZjg2ZTVmNjgyZmZmZjQ3ZjlmZjRlNTBmYmQ2ODg5Yzg=
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
## 1.0.
|
|
1
|
+
## 1.0.1 (April 21, 2013)
|
|
2
|
+
|
|
3
|
+
BUG FIXES:
|
|
4
|
+
|
|
5
|
+
* Vagrant and Berkshelf Vagrant plugin version updates in generated project's
|
|
6
|
+
README.md. Current requirements for the virtualized build lab are:
|
|
7
|
+
* Vagrant 1.2.1+
|
|
8
|
+
* `vagrant-berkshelf` plugin (this was renamed from `berkshelf-vagrant`)
|
|
9
|
+
|
|
10
|
+
## 1.0.0 (April 21, 2013)
|
|
2
11
|
|
|
3
12
|
* The initial release.
|
|
@@ -73,15 +73,15 @@ The only requirements for standing up this virtualized build lab are:
|
|
|
73
73
|
|
|
74
74
|
* VirtualBox - native packages exist for most platforms and can be downloaded
|
|
75
75
|
from the [VirtualBox downloads page](https://www.virtualbox.org/wiki/Downloads).
|
|
76
|
-
* Vagrant 1.1+ - native packages exist for most platforms and can be downloaded
|
|
76
|
+
* Vagrant 1.2.1+ - native packages exist for most platforms and can be downloaded
|
|
77
77
|
from the [Vagrant downloads page](http://downloads.vagrantup.com/).
|
|
78
78
|
|
|
79
|
-
The [berkshelf
|
|
79
|
+
The [vagrant-berkshelf](https://github.com/RiotGames/vagrant-berkshelf) and
|
|
80
80
|
[vagrant-omnibus](https://github.com/schisamo/vagrant-omnibus) Vagrant plugins
|
|
81
81
|
are also required and can be installed easily with the following commands:
|
|
82
82
|
|
|
83
83
|
```shell
|
|
84
|
-
$ vagrant plugin install berkshelf
|
|
84
|
+
$ vagrant plugin install vagrant-berkshelf
|
|
85
85
|
$ vagrant plugin install vagrant-omnibus
|
|
86
86
|
```
|
|
87
87
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
require "vagrant"
|
|
5
5
|
|
|
6
|
-
if Vagrant::VERSION < "1.2.
|
|
7
|
-
raise "The Omnibus Build Lab is only compatible with Vagrant 1.2+"
|
|
6
|
+
if Vagrant::VERSION < "1.2.1"
|
|
7
|
+
raise "The Omnibus Build Lab is only compatible with Vagrant 1.2.1+"
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
host_project_path = File.expand_path("..", __FILE__)
|
data/lib/omnibus/version.rb
CHANGED