blob: 2d3896e4d8ad45ae1dbe5703fa88eff7c1d991a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class RestShell < Formula
homepage 'https://github.com/spring-projects/rest-shell'
url 'https://github.com/downloads/spring-projects/rest-shell/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
def test
system "#{bin}/rest-shell"
end
end
|