Added a formula for knife bash completion.

Closes Homebrew/homebrew#10223.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jannis Leidel 2012-02-16 11:34:18 +01:00 committed by Adam Vandenberg
parent 3d44ac2d50
commit 5138124bb6
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
require 'formula'
class KnifeCompletion < GithubGistFormula
url 'https://raw.github.com/gist/1050685/b616645a4c9f56fb52d8fc65703e746f9e8ffd7c/knife'
homepage 'https://gist.github.com/1050685'
md5 '488e4ce424c37d2e4efcf7041fdacfd8'
def install
(prefix+'etc/bash_completion.d').install Dir['*']
end
end