Skip to content

Commit e7b9106

Browse files
committed
Merge pull request #7 from Mixpo/release/0.2.0
Release 0.2.1 - Mixpo re-integration
2 parents d656753 + 5cc3947 commit e7b9106

26 files changed

+1061
-2608
lines changed

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = tab
12+
# indent_size = 4
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false
22+

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@
44
# package managers
55
bower_components/
66
node_modules/
7+
8+
# build elements
9+
.tmp/
10+
dist/
11+
build/

.jshintrc

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

Gruntfile.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*jshint camelcase: false */
2+
3+
'use strict';
4+
5+
module.exports = function (grunt) {
6+
7+
// load all grunt tasks
8+
require('load-grunt-tasks')(grunt);
9+
10+
// load all grunt configuration
11+
require('load-grunt-config')(grunt);
12+
13+
// Register Tasks
14+
grunt.registerTask('default', 'Start working on this project.', [
15+
'jshint'
16+
]);
17+
18+
// Bower
19+
grunt.registerTask('bower', 'Build production ready assets and views.', [
20+
'clean',
21+
'copy:bower'
22+
]);
23+
24+
// Build
25+
grunt.registerTask('build', 'Build production ready assets and views.', [
26+
'clean',
27+
'copy:dist',
28+
'uglify'
29+
]);
30+
};

LICENSE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Internet Systems Consortium license
2+
===================================
3+
4+
Copyright (c) 2015, Mixpo, LLC.
5+
6+
Permission to use, copy, modify, and/or distribute this software for any purpose
7+
with or without fee is hereby granted, provided that the above copyright notice
8+
and this permission notice appear in all copies.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
11+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
12+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
13+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
14+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
16+
THIS SOFTWARE.

assets/bower/LICENSE

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Internet Systems Consortium license
2+
===================================
3+
4+
Copyright (c) 2015, Mixpo, LLC.
5+
6+
Permission to use, copy, modify, and/or distribute this software for any purpose
7+
with or without fee is hereby granted, provided that the above copyright notice
8+
and this permission notice appear in all copies.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
11+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
12+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
13+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
14+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
16+
THIS SOFTWARE.

assets/bower/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Bower packaged angular-feature-toggle
2+
=====================================
3+
4+
This repo is for distribution `bower`. The source for this module is in the
5+
[mixpo angular-feature-toggle repo](https://github.com/Mixpo/angular-feature-toggle).
6+
Please file issues and pull requests against that repo.
7+
8+
Install
9+
-------
10+
11+
You can install this package with `bower`.
12+
13+
### bower
14+
15+
```shell
16+
bower install angular-feature-toggle
17+
```

bower.json renamed to assets/bower/bower.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-feature-toggle",
3-
"version": "0.1.6",
3+
"version": "0.2.1",
44
"description": "feature toggling capabilities for angular",
55
"license": "ISC",
66
"main": "./src/angular-feature-toggle.js",
@@ -17,7 +17,8 @@
1717
"config",
1818
"example",
1919
"test",
20-
"Gruntfile.js"
20+
"Gruntfile.js",
21+
"grunt"
2122
],
2223
"repository": {
2324
"type": "git",

assets/bower/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.2.1

0 commit comments

Comments
 (0)