require_relative 'config/configuration' require_relative 'app/controllers/some_controller' module <%= object.name_as_class %> class Application # Change this to be the controller you would like to start the # application from. # def self.entry_point <%= object.name_as_class %>::SomeController.new end Vedeu::Bootstrap.start(ARGV, entry_point) end end