diff options
| author | Paul Horn | 2014-10-25 21:04:47 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-10-26 12:03:57 +0000 |
| commit | 94ecdba53de81715784463dca8a696ef04160ba1 (patch) | |
| tree | 43e68b8059714ac76412fe4899ed97067a6486df /Library/Formula | |
| parent | 522c9bbd672ee54d8d718f437a37c1557fe05b25 (diff) | |
| download | homebrew-94ecdba53de81715784463dca8a696ef04160ba1.tar.bz2 | |
Finatra 1.5.3 (new Formula)
A scala web framework inspired by Sinatra
and powered by Twitter-Server.
http://finatra.info/
Closes #33587.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/finatra.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/finatra.rb b/Library/Formula/finatra.rb new file mode 100644 index 000000000..c5b77469f --- /dev/null +++ b/Library/Formula/finatra.rb @@ -0,0 +1,16 @@ +require "formula" + +class Finatra < Formula + homepage "http://finatra.info/" + url "https://github.com/twitter/finatra/archive/1.5.3.tar.gz" + sha1 "bb9fe6a7175c1bff404f515731f071e9f8cca586" + + def install + libexec.install Dir["*"] + bin.install_symlink libexec/"finatra" + end + + test do + system "finatra" + end +end |
