homebrew-core/Formula/django-completion.rb
Rui Chen 4d94f73784 django-completion 2.2.6
Closes #44768.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-10-01 17:07:04 +02: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.6.tar.gz"
sha256 "1713e1712447e78c4599d182886a532fdffb11649d02273171dea925528fbf6b"
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