vagrant-cookbook-fetcher 0.0.7 → 0.0.8
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/ChangeLog +12 -3
- data/lib/vagrant_cookbook_fetcher.rb +1 -1
- metadata +1 -1
data/ChangeLog
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
|
2
|
-
|
2
|
+
2013-04-08 0.0.8 Clinton Wolfe <clintoncwolfe at gmail dot com>
|
3
|
+
* Correct rspec directory name specs => spec
|
4
|
+
* Update changelog with changes for 0.0.7
|
5
|
+
|
6
|
+
2013-04-07 0.0.7 Clinton Wolfe <clintoncwolfe at gmail dot com>
|
7
|
+
* Ensure that checkout always occurs relative to Vagrant project root,
|
8
|
+
not current working directory
|
9
|
+
* Link 'specs' directories for rspec testing
|
10
|
+
* Add hook to run as command (vagrant checkout)
|
11
|
+
* Constrain to be vagrant 1.0.x plugin
|
12
|
+
|
13
|
+
2012-09-25 0.0.6 Clinton Wolfe <clintoncwolfe at gmail dot com>
|
3
14
|
|
4
15
|
* Add changelog
|
5
16
|
|
@@ -8,6 +19,4 @@
|
|
8
19
|
2012-09-21 0.0.5 Clinton Wolfe <clintoncwolfe at gmail dot com>
|
9
20
|
|
10
21
|
* Add ability to specify a commit, not just a branch, in checkout lists (Graham Knop)
|
11
|
-
|
12
22
|
* Make databag combined symlinks properly descend one directory down (Clinton Wolfe)
|
13
|
-
|
@@ -142,7 +142,7 @@ module CookbookFetcher
|
|
142
142
|
# already been performed, creates the combined/ directory in the current directory,
|
143
143
|
# and symlinks in the roles, nodes, etc.
|
144
144
|
def update_links (checkouts,logger)
|
145
|
-
things_to_link = ["roles", "nodes", "handlers", "data_bags", "
|
145
|
+
things_to_link = ["roles", "nodes", "handlers", "data_bags", "spec"]
|
146
146
|
logger.info "Updating links to #{things_to_link.join(', ')}"
|
147
147
|
|
148
148
|
if !Dir.exists?("combined") then Dir.mkdir("combined") end
|