Sha256: 7421ab8832faccb9918ca0d5527babd7fe9a916dfc53203145e06c6b1d668b48
Contents?: true
Size: 904 Bytes
Versions: 51
Compression:
Stored size: 904 Bytes
Contents
// ========================================================================== // Project: <%= namespace %> // Copyright: ©<%= Time.now.year %> My Company, Inc. // ========================================================================== /*globals <%= namespace %> */ /** @namespace My cool new app. Describe your application. @extends SC.Object */ <%= namespace %> = SC.Application.create( /** @scope <%= namespace %>.prototype */ { NAMESPACE: '<%= namespace %>', VERSION: '0.1.0', // This is your application store. You will use this store to access all // of your model data. You can also set a data source on this store to // connect to a backend server. The default setup below connects the store // to any fixtures you define. store: SC.Store.create().from(SC.Record.fixtures) // TODO: Add global constants or singleton objects needed by your app here. }) ;
Version data entries
51 entries across 51 versions & 1 rubygems