module Nitro module Scaffold # Automatically creates a scaffold controller to handle the # given models. def self.controller(*models) for m in models scaffold_controller(m) end end def self.enchant_controller(model) eval %{ } end end class Controller end end