aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rest-shell.rb
blob: 98b08a0076a736fb5400041c1b728f824efc6cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class RestShell < Formula
  homepage 'https://github.com/jbrisbin/rest-shell'
  url 'https://github.com/downloads/jbrisbin/rest-shell/rest-shell-1.1.3.RELEASE.tar.gz'
  version '1.1.3.RELEASE'
  sha1 '0d43e99fabae72b068a09955053793ae4164c099'

  def install
    libexec.install Dir['*']
    (bin/'rest-shell').write <<-EOS.undent
      #!/bin/bash
      exec "#{libexec}/bin/rest-shell" "$@"
    EOS
  end

  def test
    system "#{bin}/rest-shell"
  end
end