blob: bd6493bd020badd10b4ec66c77ae20ea0e4e5a69 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | require 'formula'
class TmuxCssh < Formula
  homepage 'https://github.com/dennishafemann/tmux-cssh'
  url 'https://github.com/dennishafemann/tmux-cssh/archive/0.1.tar.gz'
  sha1 '477a9079775ce48afe0c90699fa69f368e69cdfd'
  depends_on 'tmux'
  def install
    bin.install 'tmux-cssh'
  end
  test do
    system "#{bin}/tmux-cssh", "--help"
  end
end
 |