homebrew-core/Formula/rest-shell.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

17 lines
420 B
Ruby

require 'formula'
class RestShell < Formula
homepage 'https://github.com/spring-projects/rest-shell'
url 'http://download.gopivotal.com/rest-shell/1.2.1/rest-shell-1.2.1.RELEASE.tar.gz'
version '1.2.1.RELEASE'
sha1 'f1e31f4d3901b001cd958f339240ef04d0b97114'
def install
libexec.install Dir['*']
bin.write_exec_script libexec/'bin/rest-shell'
end
test do
system "#{bin}/rest-shell"
end
end