Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Dec 10, 2014
0 parents commit 206f5e3
Show file tree
Hide file tree
Showing 9 changed files with 187 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitattributes
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
10 changes: 10 additions & 0 deletions .gitignore
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
18 changes: 18 additions & 0 deletions .jshintrc
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
}
35 changes: 35 additions & 0 deletions .verb.md
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") %}
1 change: 1 addition & 0 deletions CONTRIBUTING.md
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.
21 changes: 21 additions & 0 deletions LICENSE-MIT
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.
43 changes: 43 additions & 0 deletions README.md
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._
12 changes: 12 additions & 0 deletions index.js
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
};
33 changes: 33 additions & 0 deletions package.json
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": []
}

0 comments on commit 206f5e3

Please sign in to comment.