tenderloin 0.4.0 → 0.4.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.
- data/README.md +8 -1
- data/lib/tenderloin/env.rb +3 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -7,6 +7,13 @@ the simplest, and provided a good starting point
|
|
7
7
|
|
8
8
|
It is designed to use VMWare Fusion as the underlying provider. You will need Fusion 5.
|
9
9
|
|
10
|
+
Features:
|
11
|
+
|
12
|
+
* Shared folders
|
13
|
+
* Provisioning via command or script
|
14
|
+
* Imports Vagrant boxes
|
15
|
+
* Sync data via rsync (Allows target VMs to not have tools)
|
16
|
+
|
10
17
|
## Quick Start
|
11
18
|
|
12
19
|
gem install tenderloin
|
@@ -20,7 +27,7 @@ To build your first virtual environment:
|
|
20
27
|
The file describing your VM is called 'Tenderfile', but you can optionally change this with
|
21
28
|
the -f flag, to allow multiple VM descriptions in the same place.
|
22
29
|
|
23
|
-
##
|
30
|
+
## Building base boxes
|
24
31
|
|
25
32
|
Currently base boxes are built manually. The process:
|
26
33
|
|
data/lib/tenderloin/env.rb
CHANGED
@@ -18,7 +18,9 @@ module Tenderloin
|
|
18
18
|
def persisted_vm; @@persisted_vm; end
|
19
19
|
def root_path; @@root_path; end
|
20
20
|
def dotfile_path
|
21
|
-
File.
|
21
|
+
loinsplit = File.split($ROOTFILE_NAME)
|
22
|
+
loinsplit[-1] = "." + loinsplit[-1] + ".loinstate"
|
23
|
+
File.join(root_path, *loinsplit)
|
22
24
|
end
|
23
25
|
def home_path; File.expand_path(Tenderloin.config.tenderloin.home); end
|
24
26
|
def tmp_path; File.join(home_path, "tmp"); end
|