This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_sync = Backbone.sync | |
methodMap = | |
'create': 'POST' | |
'update': 'PUT' | |
'patch': 'PATCH' | |
'delete': 'DELETE' | |
'read': 'GET' | |
Backbone.sync = -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ## Globals | |
var argv = require('minimist')(process.argv.slice(2)); | |
var browserify = require('browserify'); | |
var buffer = require('vinyl-buffer'); | |
var changed = require('gulp-changed'); | |
var coffeeify = require('coffeeify'); | |
var concat = require('gulp-concat'); | |
var gulp = require('gulp'); | |
var gulpif = require('gulp-if'); | |
var jshint = require('gulp-jshint'); |