blob: d11083d51b0afe4868f16e580a9e56992cab96b7 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require "formula"
class Logentries < Formula
  homepage "https://logentries.com/doc/agent/"
  url "https://github.com/logentries/le/archive/v1.3.2.tar.gz"
  sha1 "5085a64e4f3c0119e213e53fa750e7b895f786e5"
  conflicts_with "le", :because => "both install a le binary"
  def install
    bin.install "le"
  end
end
 |