| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | 
							- module.exports = function (grunt) {
 
-     var amberc = require('../lib/amberc');
 
-     /**
 
-      A full example entry for a Gruntfile.js is available below.
 
-      Please note that the verbose level is either specified globally
 
-      or on a target specific level.
 
-      However, it can additionally be triggered on the commandline by
 
-      adding the '-v' or '--verbose' flag.
 
-      Example Gruntfile.js entry:
 
-      amberc: {
 
-        options: {
 
-          amber_dir: process.cwd(),                // REQUIRED
 
-          library_dirs: ['dir1', '/usr/local/js'], // optional
 
-          verbose: true                            // optional
 
-        },
 
-        helloWorld: {
 
-          // this 'options' object is optional as well as all parameters inside it
 
-          // they can be used to override the global 'options'
 
-          options: {
 
-            library_dirs: ['dir1', '/usr/local/js'], // optional
 
-            verbose: true
 
-          },
 
-          src: ['projects/HelloWorld/src/HelloWorld.st'], // REQUIRED
 
-          outputDir: 'projects/HelloWorld/src',  // optional
 
-          libraries: 'Web',                       // optional
 
-          jsGlobals: ['global1', 'global2'],     // optional
 
-          amdNamespace: 'MyNamespace',          // optional (default: 'amber')
 
-        },
 
-      },
 
-      */
 
-     grunt.registerMultiTask('amberc', 'Compile Smalltalk files with the amberc compiler', function () {
 
-         // mark task as async task
 
-         var done = this.async();
 
-         var options = this.options({
 
-             amber_dir: undefined,
 
-             library_dirs: [],
 
-             verbose: grunt.option('verbose') || false
 
-         });
 
-         this.data.verbose = options.verbose;
 
-         this.data.library_dirs = options.library_dirs;
 
-         // mark required properties
 
-         this.requiresConfig('amberc.options.amber_dir');
 
-         // raise error on missing source files
 
-         if (this.filesSrc.length === 0) {
 
-             grunt.fail.fatal('No source files to compile or link.');
 
-         }
 
-         // create and initialize amberc
 
-         var compiler = new amberc.Compiler(grunt.config('amberc.options.amber_dir'));
 
-         // generate the amberc configuration out of the given target properties
 
-         var configuration = generateCompilerConfiguration(this.data, this.filesSrc);
 
-         // run the compiler and call the async callback once finished
 
-         var self = this;
 
-         compiler.main(configuration, function () {
 
-             // signal that task has finished
 
-             done();
 
-         });
 
-     });
 
-     function generateCompilerConfiguration(data, sourceFiles) {
 
-         var configuration = amberc.createDefaultConfiguration();
 
-         if (data.libraries != null) {
 
-             configuration.load = data.libraries;
 
-         }
 
-         if (data.library_dirs != null) {
 
-             configuration.jsLibraryDirs = data.library_dirs;
 
-         }
 
-         if (sourceFiles != null) {
 
-             configuration.stFiles = sourceFiles;
 
-         }
 
-         if (data.amd_namespace != null) {
 
-             configuration.amdNamespace = data.amd_namespace;
 
-         }
 
-         if (data.output_dir != null) {
 
-             configuration.outputDir = data.output_dir;
 
-         }
 
-         if (data.jsGlobals != null) {
 
-             configuration.jsGlobals.push.apply(configuration.jsGlobals, data.jsGlobals);
 
-         }
 
-         if (data.verbose != null) {
 
-             configuration.verbose = data.verbose;
 
-         }
 
-         return configuration;
 
-     }
 
- };
 
 
  |