Skip to content

Commit

Permalink
Merge pull request #4 from Cfeusier/CF_v_1_0_0_launch
Browse files Browse the repository at this point in the history
Cf v1.0.0 launch - removes all deps [CLOSES #1 CLOSES #2 CLOSES #3]
  • Loading branch information
Cfeusier committed Jun 22, 2015
2 parents 792fc91 + c556624 commit 82befb7
Show file tree
Hide file tree
Showing 11 changed files with 641 additions and 300 deletions.
22 changes: 2 additions & 20 deletions .gitignore
Expand Up @@ -9,27 +9,9 @@ pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
# Coverage libraries
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Compiled Dirs (http://nodejs.org/api/addons.html)
build/
dist/

# Dependency directorys
# Deployed apps should consider commenting these lines out:
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
# Dependency directories
node_modules/
bower_components/

# Floobits
.floo
.floobit
.floo
.flooignore
89 changes: 0 additions & 89 deletions .jshintrc

This file was deleted.

32 changes: 32 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,32 @@
# Contributing to _iswear_

## General Workflow

1. Fork the repo
1. Cut namespaced feature branch with initials from master
- FL_bug/...
- FL_feat/...
- FL_test/...
- FL_doc/...
- FL_refactor/...
1. Make commits to your feature branch (only make changes that are relevant to this branch)
- commit messages should start with a capital letter
- commit messages should be in the present tense
- commit messages should not end with a '.'
1. When you've finished with your fix or feature:
- `git fetch upstream master`
- `git rebase upstream/master`
- submit a pull request directly to master. Include a description of your changes.
1. Your pull request will be reviewed by another maintainer. The point of code reviews is to help keep the codebase clean and of high quality.
1. Fix any issues raised by your code reviewer, and push your fixes as a single new commit.
1. Once the pull request has been reviewed, it will be merged by another member of the team. Do not merge your own pull requests.

### Guidelines

1. Uphold the current code standard:
- Keep your code DRY.
- Follow [STYLE_GUIDE.md](STYLE_GUIDE.md)
1. Run the tests before submitting a pull request.
1. Submit tests if your pull request contains new, testable behavior.

**Thanks for contributing!**
11 changes: 11 additions & 0 deletions LICENSE.md
@@ -0,0 +1,11 @@
***The MIT License (MIT)***

iswear - light-weight Promise library for performant asynchronous programming

Copyright (C) 2015 Clark Feusier <cfeusier@gmail.com> - All Rights Reserved

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

0 comments on commit 82befb7

Please sign in to comment.