Merge branch 'master' of github.com:grevory/angular-local-storage into regex_clear

revert-117-master
Matthew Wickman 11 years ago
commit 697e340738

@ -0,0 +1,3 @@
{
"directory": "test/lib/bower_components"
}

1
.gitattributes vendored

@ -0,0 +1 @@
* text=auto

6
.gitignore vendored

@ -0,0 +1,6 @@
node_modules
bower_components
.tmp
.DS_Store
npm-debug.log

@ -0,0 +1,53 @@
module.exports = function(grunt) {
'use strict';
// Load the grunt tasks
require('load-grunt-tasks')(grunt);
// Time the grunt tasks
require('time-grunt')(grunt);
grunt.initConfig({
karma: {
options: {
autowatch: false,
browsers: [
'PhantomJS'
],
configFile: 'test/karma.conf.js',
reporters: [ 'dots' ],
singleRun: true
},
unit: {}
},
jshint: {
grunt: {
src: [ 'Gruntfile.js' ],
options: {
node: true
}
},
dev: {
src: [ 'localStorageModule.js' ],
options: {
jshintrc: '.jshintrc',
}
},
test: {
src: [ 'test/spec/**/*.js' ],
options: {
jshintrc: 'test/.jshintrc',
}
}
}
});
grunt.registerTask('test', [
'karma'
]);
grunt.registerTask('default', [
'jshint',
'test'
]);
};

@ -1,14 +1,8 @@
Angular Local Storage
Copyright 2013 Gregory Pike
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
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:
http://www.apache.org/licenses/LICENSE-2.0
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
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,0 +1,27 @@
{
"name": "angular-local-storage",
"version": "0.0.1",
"homepage": "http://gregpike.net/demos/angular-local-storage/demo.html",
"authors": [
"grevory <greg@gregpike.ca>"
],
"description": "An Angular module that gives you access to the browsers local storage",
"main": "angular-local-storage.js",
"keywords": [
"AngularJS",
"Local",
"Storage"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"devDependencies": {
"angularjs": "*",
"angular-mocks": "~1.0.8"
}
}

@ -131,7 +131,7 @@ var YourCtrl = function($scope, localStorageService, ...) {
<!-- JAVASCRIPT -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
<script src="http://google-code-prettify.googlecode.com/svn/trunk/src/prettify.js"></script>
<script src="localStorageModule.js"></script>
<script src="../localStorageModule.js"></script>
<script src="demo-app.js"></script>
</body>
</html>
</html>

@ -0,0 +1,33 @@
{
"name": "angular-local-storage",
"version": "0.0.1",
"description": "An Angular module that gives you access to the browsers local storage",
"main": "angular-local-storage.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/grevory/angular-local-storage.git"
},
"keywords": [
"AngularJS",
"local",
"storage"
],
"author": "grevory <greg@gregpike.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grevory/angular-local-storage/issues"
},
"dependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9"
},
"devDependencies": {
"time-grunt": "~0.1.1",
"load-grunt-tasks": "~0.1.0",
"grunt-karma": "~0.6.2",
"grunt-contrib-jshint": "~0.6.4"
}
}

@ -0,0 +1,35 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"after": false,
"afterEach": false,
"angular": false,
"before": false,
"beforeEach": false,
"browser": false,
"describe": false,
"expect": false,
"inject": false,
"it": false,
"spyOn": false
}
}

@ -0,0 +1,49 @@
// Karma configuration
// http://karma-runner.github.io/0.10/config/configuration-file.html
module.exports = function(config) {
'use strict';
var bower = 'test/lib/bower_components/';
config.set({
// enable / disable watching file and executing tests whenever any file changes
autoWatch: true,
// base path, that will be used to resolve files and exclude
basePath: '../',
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
browsers: ['Chrome'],
// list of files / patterns to load in the browser
files: [
bower + 'angular/angular.js',
bower + 'angular-mocks/angular-mocks.js',
'localStorageModule.js',
'test/spec/**/*.js'
],
// testing framework to use (jasmine/mocha/qunit/...)
frameworks: ['jasmine'],
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel: config.LOG_INFO,
// web server port
port: 8080,
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: false
});
};

@ -0,0 +1,12 @@
describe('Module: LocalStorageModule', function() {
'use strict';
// Load the Angular module
beforeEach(module('LocalStorageModule'));
describe('constants', function() {
it('reads the constants', function() {
expect(true).toBe(true);
});
});
});