diff options
| author | Brett Koonce | 2014-07-25 21:21:07 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-07-25 22:01:36 -0700 |
| commit | 95bba85c1a54a48837d5f9cb1fcc0d94c52d11cc (patch) | |
| tree | e00e4109331d2f57c3f39faa084d287a3916f74f /Library | |
| parent | 1bdb3ab98eabb6d566f7e3cc56c0a8cf08b97303 (diff) | |
| download | homebrew-95bba85c1a54a48837d5f9cb1fcc0d94c52d11cc.tar.bz2 | |
git-cola 2.0.4
Closes #31142.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/git-cola.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/git-cola.rb b/Library/Formula/git-cola.rb index 0a9985a56..4fb8c196e 100644 --- a/Library/Formula/git-cola.rb +++ b/Library/Formula/git-cola.rb @@ -1,20 +1,20 @@ -require 'formula' +require "formula" class GitCola < Formula - homepage 'http://git-cola.github.io/' - url 'https://github.com/git-cola/git-cola/archive/v2.0.2.tar.gz' - sha1 'e3357ca8dc6bce1e92f5195bbefc0a82edbff262' + homepage "http://git-cola.github.io/" + url "https://github.com/git-cola/git-cola/archive/v2.0.4.tar.gz" + sha1 "c4d05ec81a41dfb1ee67cb2e658bdb3fe52b82a3" - head 'https://github.com/git-cola/git-cola.git' + head "https://github.com/git-cola/git-cola.git" - option 'with-docs', "Build man pages using asciidoc and xmlto" + option "with-docs", "Build man pages using asciidoc and xmlto" - depends_on 'pyqt' + depends_on "pyqt" if build.with? "docs" # these are needed to build man pages - depends_on 'asciidoc' - depends_on 'xmlto' + depends_on "asciidoc" + depends_on "xmlto" end def install |
