blob: 960661ccf18311a6a886ba833b4854d1ccad4dbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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
|