Skip to content

Commit d8134de

Browse files
committed
first commit
0 parents  commit d8134de

16 files changed

+1049
-0
lines changed

.editorconfig

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

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# package managers #
2+
####################
3+
node_modules/
4+
npm-debug.log
5+
bower_components/
6+
7+
# generated files #
8+
######################
9+
coverage/
10+
.idea/
11+
.DS_Store
12+
.DS_Store?
13+
._*
14+
.Trashes
15+
Icon?
16+
ehthumbs.db
17+
Thumbs.db
18+
.tmp

.jshintrc

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"node": true,
3+
"browser": true,
4+
"esnext": true,
5+
"bitwise": false,
6+
"camelcase": true,
7+
"curly": true,
8+
"eqeqeq": true,
9+
"immed": true,
10+
"indent": 2,
11+
"latedef": true,
12+
"newcap": true,
13+
"noarg": true,
14+
"quotmark": "single",
15+
"regexp": true,
16+
"undef": true,
17+
"strict": false,
18+
"trailing": true,
19+
"smarttabs": true,
20+
"validthis": true,
21+
"white": true,
22+
"globals":{
23+
"describe": false,
24+
"xdescribe": false,
25+
"it": false,
26+
"xit": false,
27+
"beforeEach": false,
28+
"afterEach": false,
29+
"expect": false,
30+
"spyOn": false,
31+
"define": false,
32+
33+
"angular": false/*,
34+
"Tour": false*/
35+
}
36+
}

.npmignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
node_modules/
2+
npm-debug.log
3+
bower_components/
4+
coverage/
5+
.idea/
6+
.DS_Store
7+
.DS_Store?
8+
._*
9+
.Trashes
10+
Icon?
11+
ehthumbs.db
12+
Thumbs.db
13+
.tmp

.travis.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
language: node_js
2+
3+
node_js:
4+
- '0.10'
5+
6+
before_script:
7+
#- npm install -g codeclimate-test-reporter
8+
9+
after_script:
10+
#TODO: enable publishing code coverage reports
11+
#- codeclimate < test/coverage/**/lcov.info
12+
13+
notifications:
14+
# publish build status to IRC channel: #angular-bootstrap-tour
15+
irc:
16+
channels:
17+
- chat.freenode.net#angular-bootstrap-tour
18+
on_success: always
19+
on_failure: always
20+
template:
21+
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}'
22+
- 'Change view : %{compare_url}'
23+
- 'Build details : %{build_url}'
24+
#TODO: enable publishing build status to gitter.im
25+
# publish build status to gitter chat room: https://gitter.im/benmarch/angular-bootstrap-tour
26+
#webhooks:
27+
# urls:
28+
# - [REPLACE WITH YOUR WEBHOOK URL; https://webhooks.gitter.im/e/XXXXXXXXXXXXXXXX]
29+
# on_success: always
30+
# on_failure: always
31+
# on_start: false
32+
33+
env:
34+
#- CODECLIMATE_REPO_TOKEN=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

.umd

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
(function (window, factory) {
2+
'use strict';
3+
if (typeof define === 'function' && define.amd) {
4+
// AMD
5+
define([], factory);
6+
} else if (typeof exports === 'object') {
7+
// Node.js
8+
module.exports = factory();
9+
} else {
10+
// Browser
11+
window.angularBootstrapTour = factory();
12+
}
13+
}(this, function factory() {
14+
// public API
15+
return $1;
16+
}));

README.md

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# angular-bootstrap-tour
2+
[![Build Status][build-image]][build-url]
3+
[![Code GPA][gpa-image]][gpa-url]
4+
[![Test Coverage][coverage-image]][coverage-url]
5+
[![Dependency Status][depstat-image]][depstat-url]
6+
[![Bower Version][bower-image]][bower-url]
7+
[![NPM version][npm-image]][npm-url]
8+
[![IRC Channel][irc-image]][irc-url]
9+
[![Gitter][gitter-image]][gitter-url]
10+
[![GitTip][tip-image]][tip-url]
11+
12+
## About
13+
14+
All about how amazing the angular-bootstrap-tour micro-library is.
15+
16+
This repository was scaffolded with [generator-microjs](https://github.com/daniellmb/generator-microjs).
17+
18+
## Examples
19+
20+
### JavaScript
21+
22+
```JavaScript
23+
// TODO
24+
```
25+
26+
## Install Choices
27+
- `bower install angular-bootstrap-tour`
28+
- [download the zip](https://github.com/benmarch/angular-bootstrap-tour/archive/master.zip)
29+
30+
## Tasks
31+
32+
All tasks can be run by simply running `grunt` or with the `npm test` command, or individually:
33+
34+
* `grunt lint` will lint source code for syntax errors and anti-patterns.
35+
* `grunt gpa` will analyze source code against complexity thresholds.
36+
* `grunt test` will run the jasmine unit tests against the source code.
37+
* `grunt test-min` will run the jasmine unit tests against the minified code.
38+
39+
## License
40+
41+
(The MIT License)
42+
43+
Copyright (c) 2014
44+
45+
Permission is hereby granted, free of charge, to any person obtaining
46+
a copy of this software and associated documentation files (the
47+
'Software'), to deal in the Software without restriction, including
48+
without limitation the rights to use, copy, modify, merge, publish,
49+
distribute, sublicense, and/or sell copies of the Software, and to
50+
permit persons to whom the Software is furnished to do so, subject to
51+
the following conditions:
52+
53+
The above copyright notice and this permission notice shall be
54+
included in all copies or substantial portions of the Software.
55+
56+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
57+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
58+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
59+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
60+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
61+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
62+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
63+
64+
65+
66+
[build-url]: https://travis-ci.org/benmarch/angular-bootstrap-tour
67+
[build-image]: http://img.shields.io/travis/benmarch/angular-bootstrap-tour.png
68+
69+
[gpa-url]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour
70+
[gpa-image]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour.png
71+
72+
[coverage-url]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour/code?sort=covered_percent&sort_direction=desc
73+
[coverage-image]: https://codeclimate.com/github/benmarch/angular-bootstrap-tour/coverage.png
74+
75+
[depstat-url]: https://david-dm.org/benmarch/angular-bootstrap-tour
76+
[depstat-image]: https://david-dm.org/benmarch/angular-bootstrap-tour.png?theme=shields.io
77+
78+
[issues-url]: https://github.com/benmarch/angular-bootstrap-tour/issues
79+
[issues-image]: http://img.shields.io/github/issues/benmarch/angular-bootstrap-tour.png
80+
81+
[bower-url]: http://bower.io/search/?q=angular-bootstrap-tour
82+
[bower-image]: https://badge.fury.io/bo/angular-bootstrap-tour.png
83+
84+
[downloads-url]: https://www.npmjs.org/package/angular-bootstrap-tour
85+
[downloads-image]: http://img.shields.io/npm/dm/angular-bootstrap-tour.png
86+
87+
[npm-url]: https://www.npmjs.org/package/angular-bootstrap-tour
88+
[npm-image]: https://badge.fury.io/js/angular-bootstrap-tour.png
89+
90+
[irc-url]: http://webchat.freenode.net/?channels=angular-bootstrap-tour
91+
[irc-image]: http://img.shields.io/badge/irc-%23angular-bootstrap-tour-brightgreen.png
92+
93+
[gitter-url]: https://gitter.im/benmarch/angular-bootstrap-tour
94+
[gitter-image]: http://img.shields.io/badge/gitter-benmarch/angular-bootstrap-tour-brightgreen.png
95+
96+
[tip-url]: https://www.gittip.com/benmarch
97+
[tip-image]: http://img.shields.io/gittip/benmarch.png

0 commit comments

Comments
 (0)