Sha256: e177565411e61b6dec32796fe64b909f556a0c279bc7d5b1b546c5d4c313aa38
Contents?: true
Size: 498 Bytes
Versions: 1
Compression:
Stored size: 498 Bytes
Contents
#!/usr/bin/env ruby # # create a skeletal cocoa application in the current directory # # usage: rubyapp <name> # # Copyright (c) 2007 Tim Burks, Neon Design Technology, Inc. # For more information about this file, visit http://www.rubyobjc.com. appname = (ARGV.length > 0) ? ARGV[0] : "app" source = File.dirname(__FILE__) + '/../app' dest = `pwd`.chomp + '/' + appname puts "Creating skeleton app in #{dest}." `cp -r #{source} '#{dest}'` puts "Set the application name in #{dest}/Rakefile."
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
RubyObjC-0.4.0 | bin/rubyapp |