homebrew-core/Formula/django-completion.rb
Igor Kapkov b51637524f django-completion 2.2
Closes #38674.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-04-05 12:28:52 +02:00

18 lines
559 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.tar.gz"
sha256 "5d20b40362704c2bd0ec90e7c6a2d6457441e4bfc83794c2930d030af6c31f61"
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