homebrew-core/Formula/django-completion.rb
Rui Chen 8c38c84f1a
django-completion 2.2.4
Closes #42664.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-08-02 02:16:58 +08:00

18 lines
561 B
Ruby

class DjangoCompletion < Formula
desc "Bash completion for Django"
homepage "https://github.com/django/django"
url "https://github.com/django/django/archive/2.2.4.tar.gz"
sha256 "9298474f3157cfc576d97c532df459451ac3982a72c6e098dfe836778a29a91b"
head "https://github.com/django/django.git"
bottle :unneeded
def install
bash_completion.install "extras/django_bash_completion" => "django"
end
test do
assert_match "-F _django_completion",
shell_output("source #{bash_completion}/django && complete -p django-admin.py")
end
end