homebrew-core/Formula/gimme.rb
Alexis Hildebrandt de6a2cc613 Remove indefinite article from description
The changes were made with the following shell command:
for formula in $(grep -l 'desc "[Aa]n\?\s' Library/Formula/*.rb); do
  echo $formula
  vim -c '/desc "/s/[Aa]n\? //|normal f"gU2lZZ' $formula
done

Closes Homebrew/homebrew#42333.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-08-02 16:41:10 +08:00

14 lines
357 B
Ruby

class Gimme < Formula
desc "Shell script to install any Go version"
homepage "https://github.com/travis-ci/gimme"
url "https://github.com/travis-ci/gimme/archive/v0.2.4.tar.gz"
sha256 "feb9c25d96cc6a4e735200a180070ec3458fea7d1795439abf8acad45edfc194"
def install
bin.install "gimme"
end
test do
system "#{bin}/gimme", "-l"
end
end