2414f22573
Runcocoa allows you to run Cocoa snippets from the command line. It will even work with iOS lines.
13 lines
354 B
Ruby
13 lines
354 B
Ruby
require 'formula'
|
|
|
|
class Runcocoa < Formula
|
|
homepage 'https://github.com/michaeltyson/Commandline-Cocoa'
|
|
url 'https://github.com/michaeltyson/Commandline-Cocoa/tarball/e64b3666bca94c501c88'
|
|
md5 'bc396ac6ccab09e2f978b81771f13e3b'
|
|
version 'a'
|
|
|
|
def install
|
|
bin.install 'runcocoa.sh' => 'runcocoa'
|
|
bin.install 'runc.sh' => 'runc'
|
|
end
|
|
end
|