diff options
| author | Alan LaMielle | 2014-10-05 17:16:38 -0700 |
|---|---|---|
| committer | Mike McQuaid | 2014-10-06 11:23:44 +0100 |
| commit | 1a55c0ad2d71cc4148ef1f30b87a9c0f4a7cd29b (patch) | |
| tree | 41d948bc668961dffd9e27ed705ec4e482362950 /Library/Formula | |
| parent | 9218934ee9cbc65c4dc65f925281780407ecd483 (diff) | |
| download | homebrew-1a55c0ad2d71cc4148ef1f30b87a9c0f4a7cd29b.tar.bz2 | |
glide 0.2.0
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/glide.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/glide.rb b/Library/Formula/glide.rb index 8e29aacd3..122e6d90b 100644 --- a/Library/Formula/glide.rb +++ b/Library/Formula/glide.rb @@ -3,8 +3,8 @@ require "language/go" class Glide < Formula homepage "https://github.com/Masterminds/glide" - url "https://github.com/Masterminds/glide/archive/0.1.0.tar.gz" - sha1 "8323f0a9620d28fa1bc1b8514e2159ed0d27c135" + url "https://github.com/Masterminds/glide/archive/0.2.0.tar.gz" + sha1 "a01fc0a56cfcb9070af2e8bbca35da81310b0b21" bottle do sha1 "6f293dd28cd8648a468df50c47425ab9b44abd57" => :mavericks @@ -21,7 +21,7 @@ class Glide < Formula go_resource "github.com/Masterminds/cookoo" do url "https://github.com/Masterminds/cookoo.git", - :revision => "7020bd3519807e5e891fc73366551473dab38487" + :revision => "b85ae3d2668c9a4e99419bd98ea9803926a1e306" end go_resource "github.com/codegangsta/cli" do @@ -35,12 +35,12 @@ class Glide < Formula ENV["GOPATH"] = buildpath Language::Go.stage_deps resources, buildpath/"src" - system "go", "build", "-o", "glide", "-ldflags", "-X main.version 0.1.0", "#{buildpath}/src/github.com/Masterminds/glide/glide.go" + system "go", "build", "-o", "glide", "-ldflags", "-X main.version 0.2.0", "#{buildpath}/src/github.com/Masterminds/glide/glide.go" bin.install "glide" end test do - version = pipe_output("#{bin}/glide version") - assert_match /0.1.0/, version + version = pipe_output("#{bin}/glide --version") + assert_match /0.2.0/, version end end |
