Sha256: 3e8d5657b308e1db0fa89014207dfe6d44d4ba67ebd7af0db731f2c7b543b8f1
Contents?: true
Size: 1.5 KB
Versions: 5
Compression:
Stored size: 1.5 KB
Contents
# General settings used by ruby scripts namespace: MyApp ## # Directory paths # Original from extmvc, used with javascript asset-manager in config/boot.js # pluginsDIr: /vendor/plugins libsDir: /lib configDir: /config overridesDir: /config/overrides appDir: /app vendor: - extjs-mvc mvcFilename: extjs-mvc-all-min # Use config/application for general framework configuration config: - application - routes ## # Begin standard xmvc vendor-spec # name: app javascripts: - config/application.js - config/routes.js - vendor/plugins/*/**.js - overrides/*.js - app/models/*.js - app/controllers/*.js - app/views/*/**.js ## # All stylesheets to be loaded. These are all taken to be relative to the public/stylesheets directory, # and the .css is automatically appended # stylesheets: [] # Overrides to include. These files should be located in the config/overrides directory overrides: [] # Plugins to include. Each will load vendor/plugins/SomePlugin/SomePlugin-all.js plugins: [] # All of the models in this application, found in the app/models folder models: [] # All of the controllers in this application, found in the app/controllers folder controllers: - application - home # All of the views in this application, as an object with the subfolder inside app/views as the key, # and an array of filenames as the value. e.g.: # views: # index: # - index # - edit # - new # - view # will load /app/views/index/index.js and app/views/index/my_view.js views: - layout: - menu - home: - index
Version data entries
5 entries across 5 versions & 1 rubygems