-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 206f5e3
Showing
9 changed files
with
187 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Enforce Unix newlines | ||
*.* text eol=lf | ||
*.css text eol=lf | ||
*.html text eol=lf | ||
*.js text eol=lf | ||
*.json text eol=lf | ||
*.less text eol=lf | ||
*.md text eol=lf | ||
*.yml text eol=lf | ||
|
||
*.jpg binary | ||
*.gif binary | ||
*.png binary | ||
*.jpeg binary |
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,10 @@ | ||
*.sublime-* | ||
_gh_pages | ||
bower_components | ||
node_modules | ||
npm-debug.log | ||
temp | ||
test/actual | ||
tmp | ||
TODO.md | ||
vendor |
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,18 @@ | ||
{ | ||
"asi": false, | ||
"boss": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"eqnull": true, | ||
"esnext": true, | ||
"immed": true, | ||
"latedef": true, | ||
"laxcomma": false, | ||
"newcap": true, | ||
"noarg": true, | ||
"node": true, | ||
"sub": true, | ||
"undef": true, | ||
"unused": true, | ||
"mocha": true | ||
} |
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,35 @@ | ||
# {%= name %} {%= badge("fury") %} | ||
|
||
> {%= description %} | ||
## Install | ||
{%= include("install-npm", {save: true}) %} | ||
|
||
## Run tests | ||
|
||
```bash | ||
npm test | ||
``` | ||
|
||
## Usage | ||
|
||
```js | ||
var gulpRoutes = require('{%= name %}'); | ||
``` | ||
|
||
## API | ||
{%= comments("index.js") %} | ||
|
||
## Contributing | ||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue]({%= bugs.url %}) | ||
|
||
## Author | ||
{%= include("author") %} | ||
|
||
## License | ||
{%= copyright() %} | ||
{%= license() %} | ||
|
||
*** | ||
|
||
{%= include("footer") %} |
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 @@ | ||
Please see the [Contributing to Assemble](http://assemble.io/contributing) guide for information on contributing to this project. |
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,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Brian Woodward | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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,43 @@ | ||
# gulp-routes [![NPM version](https://badge.fury.io/js/gulp-routes.svg)](http://badge.fury.io/js/gulp-routes) | ||
|
||
> Add middleware to run for specified routes in your gulp pipeline. | ||
## Install | ||
## Install with [npm](npmjs.org) | ||
|
||
```bash | ||
npm i gulp-routes --save | ||
``` | ||
|
||
## Run tests | ||
|
||
```bash | ||
npm test | ||
``` | ||
|
||
## Usage | ||
|
||
```js | ||
var gulpRoutes = require('gulp-routes'); | ||
``` | ||
|
||
## API | ||
|
||
|
||
## Contributing | ||
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/assemble/gulp-routes/issues) | ||
|
||
## Author | ||
|
||
**Brian Woodward** | ||
|
||
+ [github/assemble](https://github.com/assemble) | ||
+ [twitter/assemble](http://twitter.com/assemble) | ||
|
||
## License | ||
Copyright (c) 2014 Brian Woodward | ||
Released under the MIT license | ||
|
||
*** | ||
|
||
_This file was generated by [verb](https://github.com/assemble/verb) on December 09, 2014._ |
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,12 @@ | ||
/*! | ||
* gulp-routes <https://github.com/assemble/gulp-routes> | ||
* | ||
* Copyright (c) 2014 Brian Woodward, contributors. | ||
* Licensed under the MIT license. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
module.exports = function () { | ||
// do stuff | ||
}; |
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,33 @@ | ||
{ | ||
"name": "gulp-routes", | ||
"description": "Add middleware to run for specified routes in your gulp pipeline.", | ||
"version": "0.1.0", | ||
"homepage": "https://github.com/assemble/gulp-routes", | ||
"author": { | ||
"name": "Brian Woodward", | ||
"url": "https://github.com/doowb" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/assemble/gulp-routes.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/assemble/gulp-routes/issues" | ||
}, | ||
"license": { | ||
"type": "MIT", | ||
"url": "https://github.com/assemble/gulp-routes/blob/master/LICENSE-MIT" | ||
}, | ||
"main": "index.js", | ||
"engines": { | ||
"node": ">=0.10.0" | ||
}, | ||
"scripts": { | ||
"test": "mocha -R spec" | ||
}, | ||
"devDependencies": { | ||
"mocha": "*", | ||
"should": "*" | ||
}, | ||
"keywords": [] | ||
} |