aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2014-12-27 16:00:50 +0000
committerMike McQuaid2014-12-27 16:31:45 +0000
commit8a884af5e8098eea1be8a4fc233d53e5d0e0817a (patch)
tree33bf149dfa24966bbc02126739a7eb50ece1a1e6
parent3b92f27cb759ffd80953430a62d5efac905fc4b7 (diff)
downloadhomebrew-8a884af5e8098eea1be8a4fc233d53e5d0e0817a.tar.bz2
gh: fix strict audit failures.
-rw-r--r--Library/Formula/gh.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/gh.rb b/Library/Formula/gh.rb
index 24291aa97..4f3f6e92e 100644
--- a/Library/Formula/gh.rb
+++ b/Library/Formula/gh.rb
@@ -1,5 +1,3 @@
-require "formula"
-
class Gh < Formula
homepage "https://github.com/jingweno/gh"
url "https://github.com/jingweno/gh/archive/v2.1.0.tar.gz"
@@ -31,7 +29,7 @@ class Gh < Formula
test do
HOMEBREW_REPOSITORY.cd do
- assert_equal 'bin/brew', `#{bin}/gh ls-files -- bin`.strip
+ assert_equal "bin/brew", `#{bin}/gh ls-files -- bin`.strip
end
end
end