homebrew-core/Formula/wp-cli.rb
Hugo Ferreira 814266e853 wp-cli 0.6.0
Closes Homebrew/homebrew#14984.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-09-18 13:43:36 -05:00

20 lines
452 B
Ruby

require 'formula'
class WpCli < Formula
homepage 'https://github.com/wp-cli/wp-cli/'
# Use the tag instead of the tarball to get submodules
url 'https://github.com/wp-cli/wp-cli.git', :tag => 'v0.6.0'
version '0.6.0'
head 'https://github.com/wp-cli/wp-cli.git'
def install
prefix.install Dir['src/*']
(prefix+'etc/bash_completion.d').install 'utils/wp-completion.bash' => 'wp'
end
def test
system "#{bin}/wp"
end
end