berkshelf 3.0.0.beta5 → 3.0.0.beta6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/berkshelf/berksfile.rb +1 -1
- data/lib/berkshelf/resolver/graph.rb +4 -0
- data/lib/berkshelf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d964b87b02a233afac80f3028e97c532255f39db
|
4
|
+
data.tar.gz: ef1dbe7bd58bde0cd23cdac93f02f9eb5df97085
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d99b5c0192551e43144b9f2a53496413141d2ba42f9c6a1ed21094970bf55a81e311f929a1b5d66ff8b2e3c400439f2e79f9b0fea27307e86cb81307a8b3ade0
|
7
|
+
data.tar.gz: bf9bfb6ffcb4c018d963a3e032a65f1e7c89c62b7c129b390512e9436b34c758559fa7ad11e560440e8c67a5b5e2249c1fa046ff08504fe78971b3eee958a5b7
|
data/README.md
CHANGED
@@ -40,7 +40,7 @@ There is a [berkshelf bash completion script](https://raw.github.com/berkshelf/b
|
|
40
40
|
|
41
41
|
Download the latest script
|
42
42
|
|
43
|
-
cd `brew --prefix`/etc/bash_completion.d &&
|
43
|
+
(cd `brew --prefix`/etc/bash_completion.d && curl https://raw.github.com/berkshelf/berkshelf/master/berkshelf-complete.sh > berkshelf-complete.sh)
|
44
44
|
|
45
45
|
And make sure you have this in your bash/zsh profile:
|
46
46
|
|
data/lib/berkshelf/berksfile.rb
CHANGED
@@ -159,7 +159,7 @@ module Berkshelf
|
|
159
159
|
if args.first == :opscode
|
160
160
|
Berkshelf.formatter.deprecation "Your Berksfile contains a site location pointing to the Opscode Community " +
|
161
161
|
"Site (site :opscode). Site locations have been replaced by the source location. Change this to: " +
|
162
|
-
"'source \"http://api.berkshelf.com\" to remove this warning. For more information visit " +
|
162
|
+
"'source \"http://api.berkshelf.com\"' to remove this warning. For more information visit " +
|
163
163
|
"https://github.com/berkshelf/berkshelf/wiki/deprecated-locations"
|
164
164
|
source(DEFAULT_API_URL)
|
165
165
|
return
|
@@ -7,6 +7,10 @@ module Berkshelf
|
|
7
7
|
|
8
8
|
store.cookbooks.each do |cookbook|
|
9
9
|
artifacts(cookbook.cookbook_name, cookbook.version)
|
10
|
+
|
11
|
+
cookbook.dependencies.each do |dependency, constraint|
|
12
|
+
artifacts(cookbook.cookbook_name, cookbook.version).depends(dependency, constraint)
|
13
|
+
end
|
10
14
|
end
|
11
15
|
end
|
12
16
|
|
data/lib/berkshelf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: berkshelf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.beta6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamie Winsor
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2014-
|
15
|
+
date: 2014-02-07 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: addressable
|