0.1.5 • Published 11 years ago

grunt-bb-generate v0.1.5

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

grunt-bb-generate

Grunt plugin that scaffold backbone generators. It follows the DFGIMW mantra (don't fucking get in my way). It aims at be easily modifiable to fit any architecture being backbone or others.

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-bb-generate --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-bb-generate');

The "bc_scaffold" task

Overview

In your project's Gruntfile, add a section named bb_generate to the data object passed into grunt.initConfig().

grunt.initConfig({
  bb_generate: {
    options: {

    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

Possible options include what is below, the path shown are the defaults app included in the plugin.

appname : "Your app", appsrc : "app/scripts/" routersrc : "routers/", modelsrc : "models/", viewsrc : "views/", collectionsrc : "collections/", templatesrc : "templates/"

Usage Examples

The typical command would be:

grunt bb_generate:router:name

With the detault options that would generate a router (name.js) in the folder "app/scripts/routers"

Because apps do not always folder standars you can overwrite the path on the fly like this:

grunt bb_generate:router:name:mypath/to/router

Bending it to your will

Just go into the templates folder and add/change the generators to fit your style.

After that go into tasks to bb_generate.js and add your new generators.

There is a very easy pattern to follow, you should get the gist pretty easily.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

0.1.5

11 years ago

0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago