Skip to content

Commit 53ba751

Browse files
committed
Initial Commit
0 parents  commit 53ba751

22 files changed

+714
-0
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.eslintrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"parser": "babel-eslint",
3+
"rules": {
4+
"strict": 0,
5+
"quotes": [2, "single"],
6+
"no-underscore-dangle": false
7+
},
8+
"env": {
9+
"browser": true,
10+
"node": true
11+
}
12+
}

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
.DS_Store
2+
# Logs
3+
logs
4+
*.log
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
12+
lib-cov
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18+
.grunt
19+
20+
# Compiled binary addons (http://nodejs.org/api/addons.html)
21+
build/Release
22+
23+
# Dependency directory
24+
# Commenting this out is preferred by some people, see
25+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
26+
node_modules
27+
bower_components
28+
coverage
29+
tmp
30+
31+
# Users Environment Variables
32+
.lock-wscript

.jscsrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"esnext": true,
3+
"validateQuoteMarks": "'",
4+
"requireDotNotation": true,
5+
"requireCurlyBraces": true,
6+
"requireCommaBeforeLineBreak": true,
7+
"requireOperatorBeforeLineBreak": true,
8+
"disallowTrailingWhitespace": true,
9+
"disallowMultipleLineStrings": true,
10+
"disallowMixedSpacesAndTabs": true,
11+
"disallowEmptyBlocks": true
12+
}

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
- "0.12"
5+
- "io.js"
6+
sudo: false
7+
script: "gulp coverage"
8+
after_success:
9+
- npm install -g codeclimate-test-reporter
10+
- codeclimate < coverage/lcov.info

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#### v0.1.0
2+
3+
* Initial Commit

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 RoundingWell
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
22+

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Backbone.EventRouter
2+
====================
3+
4+
[![Travis Status](http://img.shields.io/travis/RoundingWellOS/backbone.eventrouter/master.svg?style=flat&amp;label=travis)](https://travis-ci.org/RoundingWellOS/backbone.eventrouter) [![Code Climate Score](http://img.shields.io/codeclimate/github/RoundingWellOS/backbone.eventrouter.svg?style=flat)](https://codeclimate.com/github/RoundingWellOS/backbone.eventrouter) [![Coverage](http://img.shields.io/codeclimate/coverage/github/RoundingWellOS/backbone.eventrouter.svg?style=flat)](https://codeclimate.com/github/RoundingWellOS/backbone.eventrouter) [![Dependency Status](http://img.shields.io/david/RoundingWellOS/backbone.eventrouter.svg?style=flat)](https://david-dm.org/RoundingWellOS/backbone.eventrouter)
5+
6+
7+
## About Backbone.EventRouter

dist/backbone.eventrouter.js

Lines changed: 111 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/backbone.eventrouter.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)