aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wp-cli.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/wp-cli.rb')
-rw-r--r--Library/Formula/wp-cli.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/Library/Formula/wp-cli.rb b/Library/Formula/wp-cli.rb
deleted file mode 100644
index 960661ccf..000000000
--- a/Library/Formula/wp-cli.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-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.9.1'
- version '0.9.1'
-
- 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