Skip to content

Instantly share code, notes, and snippets.

@jschilli
Created August 26, 2011 15:20
Show Gist options
  • Save jschilli/1173644 to your computer and use it in GitHub Desktop.
Save jschilli/1173644 to your computer and use it in GitHub Desktop.
spade.register("sproutcore/main", function(require, exports, __module, ARGV, ENV, __filename){
// ==========================================================================
// Project: SproutCore
// Copyright: ©2011 Strobe Inc. and contributors.
// License: Licensed under MIT license (see license.js)
// ==========================================================================
require('sproutcore-metal');
require('sproutcore-views');
require('sproutcore-handlebars');
});spade.register("myApp", {"name":"myApp","dependencies":{"sproutcore":">= 0","spade":">= 0","spade-qunit":">= 0"}});
spade.register("myApp/main", function(require, exports, __module, ARGV, ENV, __filename){
// ==========================================================================
// Project: myApp
// Copyright: ©2011 My Company Inc. All rights reserved.
// ==========================================================================
// TODO: Your app code goes here
require("sproutcore");
var x = 2;
var y = 3;
});
spade.register("myApp", {"name":"myApp","dependencies":{"sproutcore":">= 0","spade":">= 0","spade-qunit":">= 0"}});
spade.register("myApp/main", "(function(require, exports, __module, ARGV, ENV, __filename){// ==========================================================================\n// Project: myApp\n// Copyright: ©2011 My Company Inc. All rights reserved.\n// ==========================================================================\n\n// TODO: Your app code goes here\n\nrequire(\"sproutcore\");\nvar x = 2;\nvar y = 3; \n\n\n});");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment