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-11-06 16:05:11 +00:00
|
|
|
url 'https://github.com/downloads/SpringSource/rest-shell/rest-shell-1.2.0.RELEASE.tar.gz'
|
|
|
|
version '1.2.0.RELEASE'
|
|
|
|
sha1 '747f43454e91a5c25d1342f499b57326b0d17d9a'
|
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
|