2012-10-22 17:25:58 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class RestShell < Formula
|
2012-10-25 16:12:59 +00:00
|
|
|
homepage 'https://github.com/SpringSource/rest-shell'
|
2012-12-05 19:55:18 +00:00
|
|
|
url 'https://github.com/downloads/SpringSource/rest-shell/rest-shell-1.2.1.RELEASE.tar.gz'
|
|
|
|
version '1.2.1.RELEASE'
|
|
|
|
sha1 'f1e31f4d3901b001cd958f339240ef04d0b97114'
|
2012-10-22 17:25:58 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir['*']
|
2012-08-07 18:20:52 +00:00
|
|
|
bin.write_exec_script libexec/'bin/rest-shell'
|
2012-10-22 17:25:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/rest-shell"
|
|
|
|
end
|
|
|
|
end
|