Sha256: 24b91e9263c4292e2f4041b8bfac634547f80500092263d5fb163295f0d5eb07
Contents?: true
Size: 1.4 KB
Versions: 5
Compression:
Stored size: 1.4 KB
Contents
# General settings used by ruby scripts namespace: MyApp ## # Directory paths pluginsDIr: /vendor/plugins libsDir: /lib configDir: /config overridesDir: /config/overrides appDir: /app vendor: - extjs-mvc mvcFilename: extjs-mvc-all-min name: app javascripts: - config/application.js - config/routes.js - vendor/plugins/*/**.js - overrides/*.js - app/models/*.js - app/controllers/*.js - app/views/*/**.js # Use config/application for general framework configuration config: - application - routes ## # All stylesheets to be loaded. These are all taken to be relative to the public/stylesheets directory, # and the .css is automatically appended # stylesheets: - extjs-mvc-all.css # 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