This repository has been archived by the owner on Dec 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to use new version of backbone babysitter
- Loading branch information
Showing
256 changed files
with
39,880 additions
and
43,664 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "backtree", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"homepage": "https://github.com/timc3/backtree", | ||
"authors": [ | ||
"Tim Child <[email protected]>" | ||
|
@@ -25,7 +25,7 @@ | |
"dependencies": { | ||
"jquery": ">=1.7.2", | ||
"backbone": ">=0.9.10", | ||
"backbone.babysitter": ">=0.0.4", | ||
"backbone.babysitter": ">=0.1.4", | ||
"lodash": ">=1.2.0" | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,36 @@ | ||
{ | ||
"name": "backbone.babysitter", | ||
"version": "0.1.4", | ||
"homepage": "https://github.com/marionettejs/backbone.babysitter", | ||
"version": "0.0.4", | ||
"_release": "0.0.4", | ||
"authors": [ | ||
"Derick Bailey <[email protected]>" | ||
], | ||
"description": "Manage child views in a Backbone.View", | ||
"main": "lib/backbone.babysitter.js", | ||
"keywords": [ | ||
"backbone", | ||
"plugin", | ||
"computed", | ||
"field", | ||
"model", | ||
"client", | ||
"browser" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"_release": "0.1.4", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v0.0.4", | ||
"commit": "ce579d6758e4dd831391385e237f313d6b9f65bb" | ||
"tag": "v0.1.4", | ||
"commit": "02a8cbfbb6fbdeca808be6e0c85f1b0f5f63d0f9" | ||
}, | ||
"_source": "git://github.com/marionettejs/backbone.babysitter.git", | ||
"_target": "0.0.4", | ||
"_target": ">=0.1.4", | ||
"_originalSource": "backbone.babysitter" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
/*global module:false*/ | ||
module.exports = function(grunt) { | ||
|
||
// Project configuration. | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
meta: { | ||
version: '<%= pkg.version %>', | ||
banner: | ||
'// Backbone.BabySitter\n' + | ||
'// -------------------\n' + | ||
'// v<%= pkg.version %>\n' + | ||
'//\n' + | ||
'// Copyright (c)<%= grunt.template.today("yyyy") %> Derick Bailey, Muted Solutions, LLC.\n' + | ||
'// Distributed under MIT license\n' + | ||
'//\n' + | ||
'// http://github.com/marionettejs/backbone.babysitter\n' + | ||
'\n' | ||
}, | ||
|
||
lint: { | ||
files: ['src/*.js'] | ||
}, | ||
|
||
preprocess: { | ||
umd: { | ||
src: 'src/build/backbone.babysitter.js', | ||
dest: 'lib/backbone.babysitter.js' | ||
} | ||
}, | ||
|
||
template: { | ||
options: { | ||
data: { | ||
version: '<%= meta.version %>' | ||
} | ||
}, | ||
umd: { | ||
src: '<%= preprocess.umd.dest %>', | ||
dest: '<%= preprocess.umd.dest %>' | ||
} | ||
}, | ||
|
||
concat: { | ||
options: { | ||
banner: "<%= meta.banner %>" | ||
}, | ||
umd: { | ||
src: '<%= preprocess.umd.dest %>', | ||
dest: '<%= preprocess.umd.dest %>' | ||
} | ||
}, | ||
|
||
uglify : { | ||
options: { | ||
banner: "<%= meta.banner %>" | ||
}, | ||
umd : { | ||
src : 'lib/backbone.babysitter.js', | ||
dest : 'lib/backbone.babysitter.min.js', | ||
options : { | ||
sourceMap : 'lib/backbone.babysitter.map', | ||
sourceMappingURL : 'backbone.babysitter.map', | ||
sourceMapPrefix : 2 | ||
} | ||
} | ||
}, | ||
|
||
jasmine : { | ||
options : { | ||
helpers : 'spec/javascripts/helpers/*.js', | ||
specs : 'spec/javascripts/**/*.spec.js', | ||
vendor : [ | ||
'public/javascripts/jquery.js', | ||
'public/javascripts/json2.js', | ||
'public/javascripts/underscore.js', | ||
'public/javascripts/backbone.js' | ||
], | ||
}, | ||
coverage : { | ||
src : '<%= jasmine.babysitter.src %>', | ||
options : { | ||
template : require('grunt-template-jasmine-istanbul'), | ||
templateOptions: { | ||
coverage: 'reports/coverage.json', | ||
report: 'reports/coverage' | ||
} | ||
} | ||
}, | ||
babysitter : { | ||
src : ['src/*.js'] | ||
} | ||
}, | ||
|
||
jshint: { | ||
options: { | ||
jshintrc : '.jshintrc' | ||
}, | ||
babysitter : [ 'src/*.js' ] | ||
}, | ||
plato: { | ||
babysitter : { | ||
src : 'src/*.js', | ||
dest : 'reports', | ||
options : { | ||
jshint : grunt.file.readJSON('.jshintrc') | ||
} | ||
} | ||
}, | ||
watch: { | ||
babysitter : { | ||
files : ['src/*.js', 'spec/**/*.js'], | ||
tasks : ['jshint', 'jasmine:babysitter'] | ||
}, | ||
server : { | ||
files : ['src/*.js', 'spec/**/*.js'], | ||
tasks : ['jasmine:babysitter:build'] | ||
} | ||
}, | ||
|
||
connect: { | ||
server: { | ||
options: { | ||
port: 8888 | ||
} | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-preprocess'); | ||
grunt.loadNpmTasks('grunt-template'); | ||
grunt.loadNpmTasks('grunt-contrib-jasmine'); | ||
grunt.loadNpmTasks('grunt-contrib-concat'); | ||
grunt.loadNpmTasks('grunt-contrib-jshint'); | ||
grunt.loadNpmTasks('grunt-contrib-uglify'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-contrib-connect'); | ||
grunt.loadNpmTasks('grunt-plato'); | ||
|
||
grunt.registerTask('test', ['jshint', 'jasmine:babysitter']); | ||
|
||
grunt.registerTask('dev', ['test', 'watch:babysitter']); | ||
|
||
grunt.registerTask('server', ['jasmine:babysitter:build', 'connect:server', 'watch:server']); | ||
|
||
// Default task. | ||
grunt.registerTask('default', ['jshint', 'jasmine:coverage', 'preprocess', 'template', 'concat', 'uglify']); | ||
|
||
}; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Backbone.BabySitter | ||
|
||
Copyright (C)2012 Derick Bailey, Muted Solutions, LLC | ||
Copyright (C)2013 Derick Bailey, Muted Solutions, LLC | ||
|
||
Distributed Under [MIT License](http://mutedsolutions.mit-license.org/) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "backbone.babysitter", | ||
"version": "0.1.4", | ||
"homepage": "https://github.com/marionettejs/backbone.babysitter", | ||
"authors": [ | ||
"Derick Bailey <[email protected]>" | ||
], | ||
"description": "Manage child views in a Backbone.View", | ||
"main": "lib/backbone.babysitter.js", | ||
"keywords": [ | ||
"backbone", | ||
"plugin", | ||
"computed", | ||
"field", | ||
"model", | ||
"client", | ||
"browser" | ||
], | ||
"license": "MIT", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "backbone.babysitter", | ||
"description": "Manage child views in a Backbone.View", | ||
"version": "0.1.4", | ||
"repo": "marionettejs/backbone.babysitter", | ||
"main": "lib/backbone.babysitter.js", | ||
"keywords": [ | ||
"backbone", | ||
"plugin", | ||
"computed", | ||
"field", | ||
"model", | ||
"client", | ||
"browser" | ||
], | ||
"license": "MIT", | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/marionettejs/backbone.babysitter/blob/master/LICENSE.md" | ||
} | ||
], | ||
|
||
"scripts": [ | ||
"lib/backbone.babysitter.js" | ||
], | ||
|
||
"author": { | ||
"name": "Derick Bailey", | ||
"email": "[email protected]", | ||
"web": "http://derickbailey.lostechies.com" | ||
}, | ||
|
||
"dependencies": { | ||
"jashkenas/backbone": "*", | ||
"jashkenas/underscore": "*" | ||
} | ||
} |
Oops, something went wrong.