homebrew-core/Formula/imessage-ruby.rb
Jun Lin d286050307 imessage-ruby 0.2.0 (new formula)
Closes Homebrew/homebrew#42596.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-08-11 17:57:44 +01:00

17 lines
477 B
Ruby

class ImessageRuby < Formula
desc "Command-line tool to send iMessage"
homepage "https://github.com/linjunpop/imessage"
url "https://github.com/linjunpop/imessage/archive/v0.2.0.tar.gz"
sha256 "5d67df55a53d0fa657ea439c240a3b322dd0b83a102fa881915569f44431eb00"
head "https://github.com/linjunpop/imessage.git"
depends_on :macos => :mavericks
def install
rake "install", "prefix=#{prefix}"
end
test do
system "#{bin}/imessage", "--version"
end
end