diff options
| author | Brett Koonce | 2014-10-31 17:35:51 -0700 | 
|---|---|---|
| committer | Brett Koonce | 2014-11-01 20:56:11 -0700 | 
| commit | 443fc54e3bb13b362f18b9117034524382a6f6e1 (patch) | |
| tree | 50664930f329d36a92699b7f324363b9b4f1bb1d | |
| parent | 0e2b7a08ae298355a497beaa1613260c4033a285 (diff) | |
| download | homebrew-443fc54e3bb13b362f18b9117034524382a6f6e1.tar.bz2 | |
logentries 1.3.2
| -rw-r--r-- | Library/Formula/logentries.rb | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/Library/Formula/logentries.rb b/Library/Formula/logentries.rb index 5124f1284..d11083d51 100644 --- a/Library/Formula/logentries.rb +++ b/Library/Formula/logentries.rb @@ -1,13 +1,13 @@ -require 'formula' +require "formula"  class Logentries < Formula -  homepage 'https://logentries.com/doc/agent/' -  url 'https://github.com/logentries/le/archive/v1.3.0.tar.gz' -  sha1 '3d32c8c6a8faf9346558974310787c0dd9c3f468' +  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' +  conflicts_with "le", :because => "both install a le binary"    def install -    bin.install 'le' +    bin.install "le"    end  end | 
