grunt-docco-multi https://abovethewater.github.io/grunt-docc-multi
Copyright (©) 2013 Joe Mathews (abovethewater) Licensed under the MIT licence
module.exports = (grunt) ->
grunt.initConfig
docco:
options:
layout : "parallel"
output : "docs/"
timeout : 500
all:
files:
src: ['test/fixtures/*.coffee']
single:
files:
src: ['test/fixtures/valid.litcoffee']
gruntfile:
options:
layout: "linear"
files:
src: 'Gruntfile.coffee'
mulitplelinear:
options:
layout: "classic"
files:
src: ['test/fixtures/multiple//*.coffee']
empty: '404.coffee'
grunt.loadTasks 'tasks'
grunt.registerTask 'default', 'docco'
grunt.registerTask 'test', 'docco'