10993c22010d1a5a0a5b2a8574368f9cb1dba3cf.svn-base
1017 Bytes
/*
* {%= full_name %}
* {%= homepage %}
*
* Copyright (c) {%= grunt.template.today('yyyy') %} {%= author_name %}
* Licensed under the {%= licenses.join(', ') %} license{%= licenses.length === 1 ? '' : 's' %}.
*/
module.exports = function(grunt) {
// Please see the grunt documentation for more information regarding task and
// helper creation: https://github.com/gruntjs/grunt/blob/master/docs/toc.md
// ==========================================================================
// TASKS
// ==========================================================================
grunt.registerTask('{%= short_name %}', 'Your task description goes here.', function() {
grunt.log.write(grunt.helper('{%= short_name %}'));
});
// ==========================================================================
// HELPERS
// ==========================================================================
grunt.registerHelper('{%= short_name %}', function() {
return '{%= short_name %}!!!';
});
};