App - rimunroe/pipeline GitHub Wiki
Create a basic app
pipeline = require 'pipeline'
PipeCleaner = pipeline.createApp()
Enable debug mode on certain objects on the app
PipeCleaner = require 'pipeline'
PipeCleaner = pipeline.createApp
debug:
actions: ['actionKey']
stores: ['storeKey']
adaptors: ['adaptorKey']
views: true
App Object
The App object now has some methods available:
PipeCleaner.createAction()
PipeCleaner.createStore()
PipeCleaner.createAdaptor()
and if you enabled views:
PipeCleaner.createView()