aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrett Koonce2014-07-20 11:48:51 -0700
committerBrett Koonce2014-07-20 21:59:12 -0700
commit47825b6752d0627621f6f5e55215de1dca43444d (patch)
treec8fbfd5b36d7a1c33f8175d53bc1b38c80bcaad1 /Library/Formula
parentcdb5a443262c1aab9822807fcccc840616be3199 (diff)
downloadhomebrew-47825b6752d0627621f6f5e55215de1dca43444d.tar.bz2
fleetctl 0.5.4
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fleetctl.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/fleetctl.rb b/Library/Formula/fleetctl.rb
index 4d232d74c..50946f476 100644
--- a/Library/Formula/fleetctl.rb
+++ b/Library/Formula/fleetctl.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Fleetctl < Formula
- homepage 'https://github.com/coreos/fleet'
- url 'https://github.com/coreos/fleet/archive/v0.5.0.tar.gz'
- sha1 '90fbbba15a595e707d43f74294b82217bab57b07'
- head 'https://github.com/coreos/fleet.git'
+ homepage "https://github.com/coreos/fleet"
+ url "https://github.com/coreos/fleet/archive/v0.5.4.tar.gz"
+ sha1 "1fec5e4d23627446bce52eae691cb233ef03e17b"
+ head "https://github.com/coreos/fleet.git"
bottle do
sha1 "8abefa5ff7b326a0e607857ed9138ea67105f66f" => :mavericks
@@ -12,11 +12,11 @@ class Fleetctl < Formula
sha1 "8046e086e35a8beb49fab62deb4841687623cc04" => :lion
end
- depends_on 'go' => :build
+ depends_on "go" => :build
def install
- ENV['GOPATH'] = buildpath
+ ENV["GOPATH"] = buildpath
system "./build"
- bin.install 'bin/fleetctl'
+ bin.install "bin/fleetctl"
end
end