Skip to content

Instantly share code, notes, and snippets.

@diogofriggo
diogofriggo / gist:4553315
Created January 17, 2013 03:25
Registering ExtJS controllers automatically with Embedded Ruby
//Whenever I start a new story there comes the excessive boilerplating that tags along, a series of mini steps
//to get you going, one such step is registering your ExtJs controller on App.js, it looks like this:
Ext.application
name: 'Fidget'
autoCreateViewport: true
controllers: [
'YourController',
'HundredsOfOtherControllers'
]