Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am evanbarter on github.
  • I am evanbarter (https://keybase.io/evanbarter) on keybase.
  • I have a public key ASB0yVyC0h0Xag6XBsaquI6GfuBeKzwsLdQck3jhNq8uUQo

To claim this, I am signing this object:

@evanbarter
evanbarter / phonegap-build.rb
Created May 20, 2011 22:06
Appnovation build script for SproutCore->PhoneGap apps
# ruby phonegap-sc.rb -a alfresco -o ../output/path
require 'fileutils'
require 'pathname'
require 'optparse'
config = {}
argparser = OptionParser.new {|opts|
opts.on('-a', '--application-name [name]', "The application name (required)"){|name|
config[:app_name] = name
}