homebrew-core/Formula/django-completion.rb
Igor Kapkov 9d3fdb8fdb django-completion 2.1.3
Closes #33631.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-11-02 11:38:25 +01: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.1.3.tar.gz"
sha256 "c6f47e87426c324e206b7083bcdf99e0b91a992ba14cb91ded8f3a57cff8f4f1"
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