homebrew-core/Formula/django-completion.rb
Igor Kapkov fad42fd0fc django-completion 2.1.4
Closes #34757.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2018-12-04 08:31:01 +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.4.tar.gz"
sha256 "b311afddad2e9c2fb85e6c299faf9627ad134309082a4590659f7e7f6aa0277d"
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