Sha256: b17e9630872ed3f7b890cc36284c65b3247d045100bb66acc9e597c0544b72d5
Contents?: true
Size: 567 Bytes
Versions: 6
Compression:
Stored size: 567 Bytes
Contents
#!/usr/local/bin/ruby # TODO remove Signal.trap("INT") { puts; exit } # CTRL-C File.open(File.join(File.dirname(__FILE__), '../VERSION')) do |f| puts "Gosu Extensions #{f.read}" end application = ARGV.first puts "Usage: gogogosu <application_name>" and exit(1) unless application require File.dirname(__FILE__) + '/../generator/gogogosu' generator = Generator::Gogogosu.new generator.dir application do generator.dir 'lib' do end generator.dir 'media' do end end puts <<-START Great! Now proceed as follows: 1. cd #{application} 2. START
Version data entries
6 entries across 6 versions & 1 rubygems