homebrew-core/Formula/django-completion.rb
ilovezfs a6a262e43d django-completion 1.11
Closes #12081.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-04-05 10:20:55 +02:00

18 lines
560 B
Ruby

class DjangoCompletion < Formula
desc "Bash completion for Django"
homepage "https://github.com/django/django"
url "https://github.com/django/django/archive/1.11.tar.gz"
sha256 "9df049409289682e21f57629ddb5f847aa4cb8acd42c3974a81dcc64644b63f5"
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