applicationsonline / librarian

Librarian - A Framework for Bundlers. Librarian-Chef is at: https://github.com/applicationsonline/librarian-chef.
http://applicationsonline.com/
MIT License
655 stars 71 forks source link

Feature: get one cookbook from a collection #94

Closed till closed 12 years ago

till commented 12 years ago

I am trying to do this:

cookbook "bprobe",
  :git => "https://github.com/boundary/boundary_cookbooks"

My expectation was that this downloads the boundary cookbook from the repository. Instead it dies with "no metadata.rb found", which I think means that it expects the boundary_cookbooks repo to be just the bprobe cookbook.

yfeldblum commented 12 years ago

That should be supported, but try this:

cookbook "bprobe",
  :git => "https://github.com/boundary/boundary_cookbooks",
  :path => "bprobe"
till commented 12 years ago

@yfeldblum Thanks for replying. I didn't see this earlier!