Skip to content

Commit

Permalink
httpry: fix dead url
Browse files Browse the repository at this point in the history
  • Loading branch information
DomT4 committed Jun 15, 2015
1 parent 5ba25d7 commit f52e04e
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Formula/httpry.rb
@@ -1,16 +1,20 @@
require "formula"

class Httpry < Formula
desc "Packet sniffer for displaying and logging HTTP traffic"
homepage "http://dumpsterventures.com/jason/httpry/"
url "http://dumpsterventures.com/jason/httpry/httpry-0.1.8.tar.gz"
sha1 "163dcd1ab8cb2e8cef3cda2d7f0dea1b04deb338"
homepage "https://github.com/jbittel/httpry"
url "https://github.com/jbittel/httpry/archive/httpry-0.1.8.tar.gz"
sha256 "b3bcbec3fc6b72342022e940de184729d9cdecb30aa754a2c994073447468cf0"
head "https://github.com/jbittel/httpry.git"

depends_on "bsdmake" => :build

def install
system "bsdmake"
bin.install "httpry"
man1.install "httpry.1"
doc.install Dir["doc/*"]
end

test do
system bin/"httpry", "-h"
end
end

0 comments on commit f52e04e

Please sign in to comment.