Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benmarch committed Sep 7, 2014
0 parents commit d8134de
Show file tree
Hide file tree
Showing 16 changed files with 1,049 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
* text=auto
18 changes: 18 additions & 0 deletions .gitignore
@@ -0,0 +1,18 @@
# package managers #
####################
node_modules/
npm-debug.log
bower_components/

# generated files #
######################
coverage/
.idea/
.DS_Store
.DS_Store?
._*
.Trashes
Icon?
ehthumbs.db
Thumbs.db
.tmp
36 changes: 36 additions & 0 deletions .jshintrc
@@ -0,0 +1,36 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": false,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"strict": false,
"trailing": true,
"smarttabs": true,
"validthis": true,
"white": true,
"globals":{
"describe": false,
"xdescribe": false,
"it": false,
"xit": false,
"beforeEach": false,
"afterEach": false,
"expect": false,
"spyOn": false,
"define": false,

"angular": false/*,
"Tour": false*/
}
}
13 changes: 13 additions & 0 deletions .npmignore
@@ -0,0 +1,13 @@
node_modules/
npm-debug.log
bower_components/
coverage/
.idea/
.DS_Store
.DS_Store?
._*
.Trashes
Icon?
ehthumbs.db
Thumbs.db
.tmp
34 changes: 34 additions & 0 deletions .travis.yml
@@ -0,0 +1,34 @@
language: node_js

node_js:
- '0.10'

before_script:
#- npm install -g codeclimate-test-reporter

after_script:
#TODO: enable publishing code coverage reports
#- codeclimate < test/coverage/**/lcov.info

notifications:
# publish build status to IRC channel: #angular-bootstrap-tour
irc:
channels:
- chat.freenode.net#angular-bootstrap-tour
on_success: always
on_failure: always
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
- 'Change view : %{compare_url}'
- 'Build details : %{build_url}'
#TODO: enable publishing build status to gitter.im
# publish build status to gitter chat room: https://gitter.im/benmarch/angular-bootstrap-tour
#webhooks:
# urls:
# - [REPLACE WITH YOUR WEBHOOK URL; https://webhooks.gitter.im/e/XXXXXXXXXXXXXXXX]
# on_success: always
# on_failure: always
# on_start: false

env:
#- CODECLIMATE_REPO_TOKEN=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
16 changes: 16 additions & 0 deletions .umd
@@ -0,0 +1,16 @@
(function (window, factory) {
'use strict';
if (typeof define === 'function' && define.amd) {
// AMD
define([], factory);
} else if (typeof exports === 'object') {
// Node.js
module.exports = factory();
} else {
// Browser
window.angularBootstrapTour = factory();
}
}(this, function factory() {
// public API
return $1;
}));
97 changes: 97 additions & 0 deletions README.md
@@ -0,0 +1,97 @@
# angular-bootstrap-tour
[![Build Status][build-image]][build-url]
[![Code GPA][gpa-image]][gpa-url]
[![Test Coverage][coverage-image]][coverage-url]
[![Dependency Status][depstat-image]][depstat-url]
[![Bower Version][bower-image]][bower-url]
[![NPM version][npm-image]][npm-url]
[![IRC Channel][irc-image]][irc-url]
[![Gitter][gitter-image]][gitter-url]
[![GitTip][tip-image]][tip-url]

## About

All about how amazing the angular-bootstrap-tour micro-library is.

This repository was scaffolded with [generator-microjs](https://github.com/daniellmb/generator-microjs).

## Examples

### JavaScript

```JavaScript
// TODO
```

## Install Choices
- `bower install angular-bootstrap-tour`
- [download the zip](https://github.com/benmarch/angular-bootstrap-tour/archive/master.zip)

## Tasks

All tasks can be run by simply running `grunt` or with the `npm test` command, or individually:

* `grunt lint` will lint source code for syntax errors and anti-patterns.
* `grunt gpa` will analyze source code against complexity thresholds.
* `grunt test` will run the jasmine unit tests against the source code.
* `grunt test-min` will run the jasmine unit tests against the minified code.

## License

(The MIT License)

Copyright (c) 2014

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.



[build-url]: https://travis-ci.org/benmarch/angular-bootstrap-tour
[build-image]: http://img.shields.io/travis/benmarch/angular-bootstrap-tour.png

[gpa-url]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour
[gpa-image]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour.png

[coverage-url]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour/code?sort=covered_percent&sort_direction=desc
[coverage-image]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour/coverage.png

[depstat-url]: https://david-dm.org/benmarch/angular-bootstrap-tour
[depstat-image]: https://david-dm.org/benmarch/angular-bootstrap-tour.png?theme=shields.io

[issues-url]: https://github.com/benmarch/angular-bootstrap-tour/issues
[issues-image]: http://img.shields.io/github/issues/benmarch/angular-bootstrap-tour.png

[bower-url]: http://bower.io/search/?q=angular-bootstrap-tour
[bower-image]: https://badge.fury.io/bo/angular-bootstrap-tour.png

[downloads-url]: https://www.npmjs.org/package/angular-bootstrap-tour
[downloads-image]: http://img.shields.io/npm/dm/angular-bootstrap-tour.png

[npm-url]: https://www.npmjs.org/package/angular-bootstrap-tour
[npm-image]: https://badge.fury.io/js/angular-bootstrap-tour.png

[irc-url]: http://webchat.freenode.net/?channels=angular-bootstrap-tour
[irc-image]: http://img.shields.io/badge/irc-%23angular-bootstrap-tour-brightgreen.png

[gitter-url]: https://gitter.im/benmarch/angular-bootstrap-tour
[gitter-image]: http://img.shields.io/badge/gitter-benmarch/angular-bootstrap-tour-brightgreen.png

[tip-url]: https://www.gittip.com/benmarch
[tip-image]: http://img.shields.io/gittip/benmarch.png

0 comments on commit d8134de

Please sign in to comment.