├── .gitignore ├── .travis.yml ├── README.md ├── bower.json ├── dist ├── angular-google-gapi.js └── angular-google-gapi.min.js ├── gulpfile.js ├── package.json └── src ├── angular-google-gapi.module.js └── factories ├── GApi.factory.js ├── GAuth.factory.js ├── GClient.factory.js └── GData.factory.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-google-gapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/dist/angular-google-gapi.js -------------------------------------------------------------------------------- /dist/angular-google-gapi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/dist/angular-google-gapi.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-google-gapi.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/src/angular-google-gapi.module.js -------------------------------------------------------------------------------- /src/factories/GApi.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/src/factories/GApi.factory.js -------------------------------------------------------------------------------- /src/factories/GAuth.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/src/factories/GAuth.factory.js -------------------------------------------------------------------------------- /src/factories/GClient.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/src/factories/GClient.factory.js -------------------------------------------------------------------------------- /src/factories/GData.factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maximepvrt/angular-google-gapi/HEAD/src/factories/GData.factory.js --------------------------------------------------------------------------------